mirror of
https://github.com/motioneye-project/motioneyeos.git
synced 2025-07-28 05:36:32 +00:00
skalibs: bump version to 2.6.4.0
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
a16f46148e
commit
7aee067092
@ -1,6 +1,6 @@
|
|||||||
From df3a3e708653ca1cdb0eda77bbda5cb8de177571 Mon Sep 17 00:00:00 2001
|
From f411b502222c8fe442d7b3beb00b530c9e16b7a2 Mon Sep 17 00:00:00 2001
|
||||||
From: "Van Bemten, Lionel (Nokia - BE/Antwerp)" <lionel.van_bemten@nokia.com>
|
From: "Van Bemten, Lionel (Nokia - BE/Antwerp)" <lionel.van_bemten@nokia.com>
|
||||||
Date: Tue, 10 Oct 2017 19:51:18 +0200
|
Date: Sun, 29 Apr 2018 19:53:40 +0200
|
||||||
Subject: [PATCH] No runtime tests for type sizes
|
Subject: [PATCH] No runtime tests for type sizes
|
||||||
|
|
||||||
Replace build and execution of runtime test programs for determining
|
Replace build and execution of runtime test programs for determining
|
||||||
@ -11,14 +11,14 @@ This improves support for cross-compilation.
|
|||||||
Signed-off-by: "Van Bemten, Lionel (Nokia - BE/Antwerp)" <lionel.van_bemten@nokia.com>
|
Signed-off-by: "Van Bemten, Lionel (Nokia - BE/Antwerp)" <lionel.van_bemten@nokia.com>
|
||||||
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
Signed-off-by: Eric Le Bihan <eric.le.bihan.dev@free.fr>
|
||||||
---
|
---
|
||||||
configure | 77 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------
|
configure | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++-------------
|
||||||
1 file changed, 61 insertions(+), 16 deletions(-)
|
1 file changed, 60 insertions(+), 15 deletions(-)
|
||||||
|
|
||||||
diff --git a/configure b/configure
|
diff --git a/configure b/configure
|
||||||
index f2a77f3..8348b1f 100755
|
index 434eec8..c09e9c8 100755
|
||||||
--- a/configure
|
--- a/configure
|
||||||
+++ b/configure
|
+++ b/configure
|
||||||
@@ -154,25 +154,70 @@ choose () {
|
@@ -155,23 +155,69 @@ choose () {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -65,12 +65,12 @@ index f2a77f3..8348b1f 100755
|
|||||||
+}
|
+}
|
||||||
+EOF
|
+EOF
|
||||||
+ if $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST $LDFLAGS_AUTO $LDFLAGS $LDFLAGS_POST -o trysignof${abbr} trysignof${abbr}.c 2>/dev/null; then
|
+ if $CC_AUTO $CPPFLAGS_AUTO $CPPFLAGS $CPPFLAGS_POST $CFLAGS_AUTO $CFLAGS $CFLAGS_POST $LDFLAGS_AUTO $LDFLAGS $LDFLAGS_POST -o trysignof${abbr} trysignof${abbr}.c 2>/dev/null; then
|
||||||
+ echo "#define ${package_macro_name}_HASSIGNED${caps}" >> $sysdeps/sysdeps.h
|
+ echo "#define ${package_macro_name}_HAS${caps}" >> $sysdeps/sysdeps.h
|
||||||
+ echo "#undef ${package_macro_name}_HASUNSIGNED${caps}" >> $sysdeps/sysdeps.h
|
+ echo "#undef ${package_macro_name}_HASUN${caps}" >> $sysdeps/sysdeps.h
|
||||||
+ echo "signed${abbr}: yes" >> $sysdeps/sysdeps
|
+ echo "signed${abbr}: yes" >> $sysdeps/sysdeps
|
||||||
+ else
|
+ else
|
||||||
+ echo "#undef ${package_macro_name}_HASSIGNED${caps}" >> $sysdeps/sysdeps.h
|
+ echo "#undef ${package_macro_name}_HAS${caps}" >> $sysdeps/sysdeps.h
|
||||||
+ echo "#define ${package_macro_name}_HASUNSIGNED${caps}" >> $sysdeps/sysdeps.h
|
+ echo "#define ${package_macro_name}_HASUN${caps}" >> $sysdeps/sysdeps.h
|
||||||
+ echo "signed${abbr}: no" >> $sysdeps/sysdeps
|
+ echo "signed${abbr}: no" >> $sysdeps/sysdeps
|
||||||
+ fi
|
+ fi
|
||||||
+ rm -f trysignof${abbr} trysignof${abbr}.c
|
+ rm -f trysignof${abbr} trysignof${abbr}.c
|
||||||
@ -90,20 +90,26 @@ index f2a77f3..8348b1f 100755
|
|||||||
- ./output-types | grep -F signed | while read key value ; do
|
- ./output-types | grep -F signed | while read key value ; do
|
||||||
- caps=$(echo $key | sed s/:\$// | tr a-z A-Z)
|
- caps=$(echo $key | sed s/:\$// | tr a-z A-Z)
|
||||||
- if test $value = yes ; then
|
- if test $value = yes ; then
|
||||||
- echo "#define ${package_macro_name}_HASSIGNED${caps}"
|
- echo "#define ${package_macro_name}_HAS${caps}"
|
||||||
- echo "#undef ${package_macro_name}_HASUNSIGNED${caps}"
|
- echo "#undef ${package_macro_name}_HASUN${caps}"
|
||||||
- else
|
- else
|
||||||
- echo "#undef ${package_macro_name}_HASSIGNED${caps}"
|
- echo "#undef ${package_macro_name}_HAS${caps}"
|
||||||
- echo "#define ${package_macro_name}_HASUNSIGNED${caps}"
|
- echo "#define ${package_macro_name}_HASUN${caps}"
|
||||||
- fi >> $sysdeps/sysdeps.h
|
- fi >> $sysdeps/sysdeps.h
|
||||||
+ for t in size uid gid pid time dev ino; do
|
+ for t in size uid gid pid time dev ino; do
|
||||||
+ findtypesize "${t}_t" "$t"
|
+ findtypesize "${t}_t" "$t"
|
||||||
+ findtypesign "${t}_t" "$t"
|
+ findtypesign "${t}_t" "$t"
|
||||||
done
|
done
|
||||||
- rm -f output-types
|
rm -f output-types
|
||||||
echo " ... done"
|
echo " ... done"
|
||||||
}
|
@@ -548,7 +594,6 @@ EOF
|
||||||
|
choose cl itimer ITIMER 'setitimer()'
|
||||||
|
choose cl namespaces NAMESPACES 'namespaces'
|
||||||
|
choose cl nsgetparent NSGETPARENT 'NS_GET_PARENT'
|
||||||
|
- choose cl explicit_bzero EXPLICIT_BZERO 'explicit_bzero()'
|
||||||
|
|
||||||
|
echo '#endif' >> $sysdeps/sysdeps.h
|
||||||
|
fi
|
||||||
--
|
--
|
||||||
2.13.6
|
2.14.3
|
||||||
|
|
||||||
|
@ -1,3 +1,3 @@
|
|||||||
# Locally generated
|
# Locally generated
|
||||||
sha256 8508ca00d4e2355e9ec0ec7f4808e98b349999d6732d2f123ac53b4df5260c81 skalibs-2.6.3.1.tar.gz
|
sha256 30ac73f1e8da6387fcfa19cfe1e326a143b4d811aaf532988b280daefa56dcc7 skalibs-2.6.4.0.tar.gz
|
||||||
sha256 3eadcf980c40da0f257b8292d805ff41e5e5a908c1942315d9a627732e1aa012 COPYING
|
sha256 3eadcf980c40da0f257b8292d805ff41e5e5a908c1942315d9a627732e1aa012 COPYING
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
SKALIBS_VERSION = 2.6.3.1
|
SKALIBS_VERSION = 2.6.4.0
|
||||||
SKALIBS_SITE = http://skarnet.org/software/skalibs
|
SKALIBS_SITE = http://skarnet.org/software/skalibs
|
||||||
SKALIBS_LICENSE = ISC
|
SKALIBS_LICENSE = ISC
|
||||||
SKALIBS_LICENSE_FILES = COPYING
|
SKALIBS_LICENSE_FILES = COPYING
|
||||||
|
Loading…
x
Reference in New Issue
Block a user