diff options
author | Marcus Brinkmann <[email protected]> | 2006-06-08 22:07:27 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2006-06-08 22:07:27 +0000 |
commit | c3b1fb4377b48cd0b5d0d2f3e647b9a56c4f74a1 (patch) | |
tree | 8320c97cb4e3e71bd899809ac0de24f2d580de47 | |
parent | 2006-03-06 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-c3b1fb4377b48cd0b5d0d2f3e647b9a56c4f74a1.tar.gz gpgme-c3b1fb4377b48cd0b5d0d2f3e647b9a56c4f74a1.zip |
2006-06-08 Marcus Brinkmann <[email protected]>
* pth.m4: Add --all to pth-config invocation.
-rw-r--r-- | trunk/m4/ChangeLog | 4 | ||||
-rw-r--r-- | trunk/m4/pth.m4 | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/trunk/m4/ChangeLog b/trunk/m4/ChangeLog index 862751af..fadd952f 100644 --- a/trunk/m4/ChangeLog +++ b/trunk/m4/ChangeLog @@ -1,3 +1,7 @@ +2006-06-08 Marcus Brinkmann <[email protected]> + + * pth.m4: Add --all to pth-config invocation. + 2006-02-22 Marcus Brinkmann <[email protected]> * pth.m4: Fix code generation (required for Max OS X). diff --git a/trunk/m4/pth.m4 b/trunk/m4/pth.m4 index 10f64e15..b558f282 100644 --- a/trunk/m4/pth.m4 +++ b/trunk/m4/pth.m4 @@ -121,7 +121,7 @@ if test ".$with_pth" != .no; then _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;/*$;;'` @@ -162,7 +162,7 @@ if test ".$with_pth" != .no; then _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 |