diff options
author | David Shaw <[email protected]> | 2003-03-04 16:12:53 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-03-04 16:12:53 +0000 |
commit | e84c4ca606f9ac1f954fb0f65b6f09ec8ec51e98 (patch) | |
tree | de9a3c2c3eaa3336afda3348a8746cb1540038a8 | |
parent | * trustdb.c (validate_keys): Mask the ownertrust when building the list of (diff) | |
download | gnupg-e84c4ca606f9ac1f954fb0f65b6f09ec8ec51e98.tar.gz gnupg-e84c4ca606f9ac1f954fb0f65b6f09ec8ec51e98.zip |
* configure.ac: Define @CAPLIBS@ to link in -lcap if we are using
capabilities.
Diffstat (limited to '')
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.ac | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2003-03-04 David Shaw <[email protected]> + + * configure.ac: Define @CAPLIBS@ to link in -lcap if we are using + capabilities. + 2003-02-22 David Shaw <[email protected]> * configure.ac: Add --disable-idea for IDEA. Note that disabling diff --git a/configure.ac b/configure.ac index 3ca85b2af..888db1eee 100644 --- a/configure.ac +++ b/configure.ac @@ -738,7 +738,7 @@ if test "$ac_cv_header_sys_capability_h" = "yes" ; then if test "$ac_cv_lib_cap_cap_init" = "yes"; then AC_DEFINE(USE_CAPABILITIES,1, [define if capabilities should be used]) - LIBS="$LIBS -lcap" + AC_SUBST(CAPLIBS,"-lcap") use_capabilities=yes fi fi |