mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-07-15 16:07:26 +00:00
ee24b4ce36
* add negative DEFAULT_PREFERRENCE for now Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
39 lines
1.6 KiB
Diff
39 lines
1.6 KiB
Diff
# Poky renames libtool to $host_alias-libtool.
|
|
# ./$host_alias-libtool isn't created until after configure runs with libtool >= 2.2.2
|
|
# so we can't call # it at this point. We can safely assume a version is available
|
|
# from PATH though
|
|
# Rebased to glib-2.27.3 by Dongxiao Xu <dongxiao.xu@intel.com>
|
|
|
|
Upstream-Status: Inappropriate [configuration]
|
|
|
|
diff -ruN glib-2.27.3-orig/configure.ac glib-2.27.3/configure.ac
|
|
--- glib-2.27.3-orig/configure.ac 2010-11-03 11:02:05.000000000 +0800
|
|
+++ glib-2.27.3/configure.ac 2010-11-16 12:38:12.610485990 +0800
|
|
@@ -1385,7 +1385,7 @@
|
|
G_MODULE_LDFLAGS=
|
|
else
|
|
export SED
|
|
- G_MODULE_LDFLAGS=`(./libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
|
|
+ G_MODULE_LDFLAGS=`(./$host_alias-libtool --config; echo eval echo \\$export_dynamic_flag_spec) | sh`
|
|
fi
|
|
dnl G_MODULE_IMPL= don't reset, so cmd-line can override
|
|
G_MODULE_NEED_USCORE=0
|
|
@@ -1450,7 +1450,7 @@
|
|
LDFLAGS="$LDFLAGS $G_MODULE_LDFLAGS"
|
|
dnl *** check for OSF1/5.0 RTLD_GLOBAL brokenness
|
|
echo "void glib_plugin_test(void) { }" > plugin.c
|
|
- ${SHELL} ./libtool --mode=compile ${CC} -shared \
|
|
+ ${SHELL} ./$host_alias-libtool --mode=compile ${CC} -shared \
|
|
-export-dynamic -o plugin.o plugin.c 2>&1 >/dev/null
|
|
AC_CACHE_CHECK([for RTLD_GLOBAL brokenness],
|
|
glib_cv_rtldglobal_broken,[
|
|
@@ -1524,7 +1524,7 @@
|
|
|
|
AC_MSG_CHECKING(for the suffix of module shared libraries)
|
|
export SED
|
|
-shrext_cmds=`./libtool --config | grep '^shrext_cmds='`
|
|
+shrext_cmds=`./$host_alias-libtool --config | grep '^shrext_cmds='`
|
|
eval $shrext_cmds
|
|
module=yes eval std_shrext=$shrext_cmds
|
|
# chop the initial dot
|