Check-in Number:
|
5404 | |
Date: |
2006-Jun-08 19:48:23 (local)
2006-Jun-08 17:48:23 (UTC) |
User: | rse |
Branch: | |
Comment: |
Let AC_CHECK_PTH use "pth-config --libs --all" instead of just
"pth-config --libs" to allow it to work under platforms like
Solaris where additional libraries are required. |
Tickets: |
|
Inspections: |
|
Files: |
|
ossp-pkg/pth/ChangeLog 1.642 -> 1.643
--- ChangeLog 2005/11/22 07:33:45 1.642
+++ ChangeLog 2006/06/08 17:48:23 1.643
@@ -19,6 +19,13 @@
/ __/ | |_| |
__|_____(_)___/_________________________________________________________
+ Changes between 2.0.6 and 2.0.7 (22-Nov-2005 to 08-Jun-2006)
+
+ *) Let AC_CHECK_PTH use "pth-config --libs --all" instead of just
+ "pth-config --libs" to allow it to work under platforms like
+ Solaris where additional libraries are required.
+ [Ralf S. Engelschall]
+
Changes between 2.0.5 and 2.0.6 (05-Oct-2005 to 22-Nov-2005)
*) Add a missing "break" in pth_attr.c:pth_attr_ctrl().
|
|
ossp-pkg/pth/pth.m4 1.16 -> 1.17
--- pth.m4 2005/02/18 20:36:48 1.16
+++ pth.m4 2006/06/08 17:48:23 1.17
@@ -120,7 +120,7 @@
_pth_cppflags=`pth-config --cflags`
_pth_cflags=`pth-config --cflags`
_pth_ldflags=`pth-config --ldflags`
- _pth_libs=`pth-config --libs`
+ _pth_libs=`pth-config --libs --all`
fi
elif test -d "$with_pth"; then
with_pth=`echo $with_pth | sed -e 's;/*$;;'`
@@ -161,7 +161,7 @@
_pth_cppflags=`$_dir/pth-config --cflags`
_pth_cflags=`$_dir/pth-config --cflags`
_pth_ldflags=`$_dir/pth-config --ldflags`
- _pth_libs=`$_dir/pth-config --libs`
+ _pth_libs=`$_dir/pth-config --libs --all`
_pth_found=yes
break
fi
|
|