diff options
author | Peter Stephenson <pws@users.sourceforge.net> | 2004-03-04 14:03:47 +0000 |
---|---|---|
committer | Peter Stephenson <pws@users.sourceforge.net> | 2004-03-04 14:03:47 +0000 |
commit | 8cba4981ad2b5f234b25238db489c86dd3c4a570 (patch) | |
tree | 3389c97e8b884d56ff849b4f8e1a15a8dba300ec /configure.ac | |
parent | 2f136f5dafd6b84b6c2f5a1291ee282affc5f282 (diff) | |
download | zsh-8cba4981ad2b5f234b25238db489c86dd3c4a570.tar.gz zsh-8cba4981ad2b5f234b25238db489c86dd3c4a570.tar.xz zsh-8cba4981ad2b5f234b25238db489c86dd3c4a570.zip |
19535: Add --enable-cap
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 518e1754e..18ff78262 100644 --- a/configure.ac +++ b/configure.ac @@ -313,6 +313,11 @@ AC_ARG_ENABLE(pcre, AC_HELP_STRING([--enable-pcre], [enable the search for the pcre library (may create run-time library dependencies)])) +dnl Do you want to look for capability support? +AC_ARG_ENABLE(cap, +AC_HELP_STRING([--enable-cap], +[enable the search for POSIX capabilities (may require additional headers to be added by hand)])) + dnl ------------------ dnl CHECK THE COMPILER dnl ------------------ @@ -709,7 +714,9 @@ if test "x$dynamic" = xyes; then AC_CHECK_LIB(dl, dlopen) fi -AC_CHECK_LIB(cap, cap_get_proc) +if test x$enable_cap = xyes; then + AC_CHECK_LIB(cap, cap_get_proc) +fi AC_CHECK_LIB(socket, socket) @@ -1029,7 +1036,6 @@ AC_CHECK_FUNCS(strftime difftime gettimeofday \ initgroups nis_list \ setuid seteuid setreuid setresuid setsid \ memcpy memmove strstr strerror \ - cap_get_proc \ getrlimit \ setlocale \ uname \ @@ -1045,6 +1051,10 @@ AC_CHECK_FUNCS(strftime difftime gettimeofday \ grantpt unlockpt ptsname) AC_FUNC_STRCOLL +if test x$enable_cap = xyes; then + AC_CHECK_FUNCS(cap_get_proc) +fi + dnl Check if tgetent accepts NULL (and will allocate its own termcap buffer) dnl Some termcaps reportedly accept a zero buffer, but then dump core dnl in tgetstr(). |