diff options
| -rw-r--r-- | meta-oe/recipes-extended/libqb/libqb/0001-Remove-runtime-check-for-CLOCK_MONOTONIC.patch | 43 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/libqb/libqb/0001-build-fix-configure-script-neglecting-re-enable-out-.patch | 56 | ||||
| -rw-r--r-- | meta-oe/recipes-extended/libqb/libqb_1.0.3.bb (renamed from meta-oe/recipes-extended/libqb/libqb_1.0.2.bb) | 6 |
3 files changed, 60 insertions, 45 deletions
diff --git a/meta-oe/recipes-extended/libqb/libqb/0001-Remove-runtime-check-for-CLOCK_MONOTONIC.patch b/meta-oe/recipes-extended/libqb/libqb/0001-Remove-runtime-check-for-CLOCK_MONOTONIC.patch deleted file mode 100644 index 28bc5c07df..0000000000 --- a/meta-oe/recipes-extended/libqb/libqb/0001-Remove-runtime-check-for-CLOCK_MONOTONIC.patch +++ /dev/null | |||
| @@ -1,43 +0,0 @@ | |||
| 1 | From e6fbad0c122ba8e87b67a9e2447505adcaafe204 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Khem Raj <raj.khem@gmail.com> | ||
| 3 | Date: Wed, 29 Mar 2017 16:31:38 -0700 | ||
| 4 | Subject: [PATCH] Remove runtime check for CLOCK_MONOTONIC | ||
| 5 | |||
| 6 | Does not work during cross compile | ||
| 7 | |||
| 8 | use a compile-time check to detect whether the | ||
| 9 | monotonic clock is available. This check can run just fine when we are | ||
| 10 | cross-compiling. | ||
| 11 | |||
| 12 | Signed-off-by: Khem Raj <raj.khem@gmail.com> | ||
| 13 | --- | ||
| 14 | configure.ac | 12 ++++++++++-- | ||
| 15 | 1 file changed, 10 insertions(+), 2 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/configure.ac b/configure.ac | ||
| 18 | index fa13ae6..f4f0f46 100644 | ||
| 19 | --- a/configure.ac | ||
| 20 | +++ b/configure.ac | ||
| 21 | @@ -175,9 +175,17 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM( | ||
| 22 | ) | ||
| 23 | |||
| 24 | AC_MSG_CHECKING(for a working clock_getres(CLOCK_MONOTONIC, &ts)) | ||
| 25 | -AC_RUN_IFELSE([AC_LANG_PROGRAM( | ||
| 26 | +AC_COMPILE_IFELSE([AC_LANG_PROGRAM( | ||
| 27 | [[#include <time.h>]], | ||
| 28 | -[[struct timespec ts; if(clock_getres(CLOCK_MONOTONIC, &ts)) return -1;]])], | ||
| 29 | +[[ | ||
| 30 | +#include <unistd.h> | ||
| 31 | +int main() { | ||
| 32 | +#if !(defined(_POSIX_MONOTONIC_CLOCK) && _POSIX_MONOTONIC_CLOCK >= 0 && defined(CLOCK_MONOTONIC)) | ||
| 33 | + #error No monotonic clock | ||
| 34 | +#endif | ||
| 35 | + return 0; | ||
| 36 | + | ||
| 37 | +]])], | ||
| 38 | [ | ||
| 39 | AC_MSG_RESULT([yes]) | ||
| 40 | AC_DEFINE_UNQUOTED([HAVE_CLOCK_GETRES_MONOTONIC], 1, [Define to 1 if clock_getres(CLOCK_MONOTONIC, &ts) works]) | ||
| 41 | -- | ||
| 42 | 2.12.1 | ||
| 43 | |||
diff --git a/meta-oe/recipes-extended/libqb/libqb/0001-build-fix-configure-script-neglecting-re-enable-out-.patch b/meta-oe/recipes-extended/libqb/libqb/0001-build-fix-configure-script-neglecting-re-enable-out-.patch new file mode 100644 index 0000000000..c82f3bf017 --- /dev/null +++ b/meta-oe/recipes-extended/libqb/libqb/0001-build-fix-configure-script-neglecting-re-enable-out-.patch | |||
| @@ -0,0 +1,56 @@ | |||
| 1 | From 73d2aea33e32272bac693550e8a3b0e3ad89707f Mon Sep 17 00:00:00 2001 | ||
| 2 | From: =?UTF-8?q?Jan=20Pokorn=C3=BD?= <jpokorny@redhat.com> | ||
| 3 | Date: Tue, 26 Dec 2017 00:02:26 +0100 | ||
| 4 | Subject: [PATCH] build: fix configure script neglecting, re-enable out-of-tree | ||
| 5 | builds | ||
| 6 | MIME-Version: 1.0 | ||
| 7 | Content-Type: text/plain; charset=UTF-8 | ||
| 8 | Content-Transfer-Encoding: 8bit | ||
| 9 | |||
| 10 | For the former, a prototype and the final code got (hm, mysteriously) | ||
| 11 | intertwisted. For the latter, I am clearly guilty of (rare, anyway) | ||
| 12 | testing of the out-of-tree builds only with libqb-already-system-wide | ||
| 13 | scenario, which is rather shortsighted. | ||
| 14 | |||
| 15 | Thanks Fabio and his ci.kronosnet.org project for spotting that. | ||
| 16 | |||
| 17 | X-mas-present-for: Fabio M. Di Nitto <fdinitto@redhat.com> | ||
| 18 | Signed-off-by: Jan Pokorný <jpokorny@redhat.com> | ||
| 19 | --- | ||
| 20 | Upstream-Status: Backport | ||
| 21 | |||
| 22 | configure.ac | 2 +- | ||
| 23 | lib/Makefile.am | 4 +++- | ||
| 24 | 2 files changed, 4 insertions(+), 2 deletions(-) | ||
| 25 | |||
| 26 | diff --git a/configure.ac b/configure.ac | ||
| 27 | index 9900310..f9761cc 100644 | ||
| 28 | --- a/configure.ac | ||
| 29 | +++ b/configure.ac | ||
| 30 | @@ -710,7 +710,7 @@ if test "x${GCC}" = xyes; then | ||
| 31 | | grep __stop___verbose | cut -d" " -f 3) | ||
| 32 | test "${verbose_start_addr}" = "${verbose_stop_addr}" \ | ||
| 33 | && gcc_has_attribute_section_visible=no \ | ||
| 34 | - || { verbose_start_type=$(${READELF} -s backup \ | ||
| 35 | + || { verbose_start_type=$(${READELF} -s "conftest${shrext_cmds}" \ | ||
| 36 | | sed -n '/__start___verbose/{s/^\s*//p;q}' \ | ||
| 37 | | tr -s ' ' \ | ||
| 38 | | cut -d" " -f6) | ||
| 39 | diff --git a/lib/Makefile.am b/lib/Makefile.am | ||
| 40 | index 6ca6b15..b035f0b 100644 | ||
| 41 | --- a/lib/Makefile.am | ||
| 42 | +++ b/lib/Makefile.am | ||
| 43 | @@ -101,7 +101,9 @@ endif | ||
| 44 | endif | ||
| 45 | |||
| 46 | qblog_script.ld: %.ld: %.ld.in | ||
| 47 | - $(AM_V_GEN)$(CPP) -xc -I$(top_srcdir)/include -D_GNU_SOURCE -C -P $< \ | ||
| 48 | + $(AM_V_GEN)$(CPP) -C -D_GNU_SOURCE -P \ | ||
| 49 | + -I$(top_srcdir)/include -I$(top_builddir)/include \ | ||
| 50 | + -xc $< \ | ||
| 51 | | sed -n "/$$(sed -n '/^[^#]/{s/[*\/]/\\&/g;p;q;}' $<)/,$$ p" \ | ||
| 52 | > $@ | ||
| 53 | |||
| 54 | -- | ||
| 55 | 2.16.2 | ||
| 56 | |||
diff --git a/meta-oe/recipes-extended/libqb/libqb_1.0.2.bb b/meta-oe/recipes-extended/libqb/libqb_1.0.3.bb index 574f6601ca..73cea5e398 100644 --- a/meta-oe/recipes-extended/libqb/libqb_1.0.2.bb +++ b/meta-oe/recipes-extended/libqb/libqb_1.0.3.bb | |||
| @@ -11,12 +11,14 @@ inherit autotools pkgconfig | |||
| 11 | 11 | ||
| 12 | PV .= "+git${SRCPV}" | 12 | PV .= "+git${SRCPV}" |
| 13 | 13 | ||
| 14 | SRCREV = "608de6d59a3de0eef0fbcbd8f284acbc018daa9a" | 14 | # v1.0.3 |
| 15 | SRCREV = "28dff090c74b6ba8609c4797294a5afe3fe73987" | ||
| 15 | SRC_URI = "git://github.com/ClusterLabs/${BPN}.git \ | 16 | SRC_URI = "git://github.com/ClusterLabs/${BPN}.git \ |
| 16 | file://0001-Remove-runtime-check-for-CLOCK_MONOTONIC.patch \ | 17 | file://0001-build-fix-configure-script-neglecting-re-enable-out-.patch \ |
| 17 | " | 18 | " |
| 18 | S = "${WORKDIR}/git" | 19 | S = "${WORKDIR}/git" |
| 19 | 20 | ||
| 21 | CFLAGS += "-pthread -D_REENTRANT" | ||
| 20 | do_configure_prepend() { | 22 | do_configure_prepend() { |
| 21 | ( cd ${S} | 23 | ( cd ${S} |
| 22 | ${S}/autogen.sh ) | 24 | ${S}/autogen.sh ) |
