php-gnupg/config.m4

85 lines
2.1 KiB
Text
Raw Normal View History

2005-10-07 18:59:50 +00:00
dnl config.m4 for extension gnupg
AC_CANONICAL_HOST
case $host_os in
*BSD* | *bsd)
GNUPG_DL=""
;;
*)
GNUPG_DL="-ldl"
;;
esac
2005-10-07 18:59:50 +00:00
PHP_ARG_WITH(gnupg, for gnupg support,
[ --with-gnupg[=dir] Include gnupg support])
2005-10-07 18:59:50 +00:00
if test "$PHP_GNUPG" != "no"; then
SEARCH_PATH="/usr/local /usr /opt /opt/homebrew"
SEARCH_FOR="include/gpgme.h"
SEARCH_FOR_ALT="include/gpgme/gpgme.h"
if test -r $PHP_GNUPG/$SEARCH_FOR; then
2005-10-07 18:59:50 +00:00
GNUPG_DIR=$PHP_GNUPG
else
2005-10-07 18:59:50 +00:00
AC_MSG_CHECKING([for gnupg files in default path])
for i in $SEARCH_PATH ; do
if test -r $i/$SEARCH_FOR; then
GNUPG_DIR=$i
AC_MSG_RESULT(found in $i)
fi
if test -r $i/$SEARCH_FOR_ALT; then
GNUPG_DIR=$i
AC_MSG_RESULT(found in $i)
fi
2005-10-07 18:59:50 +00:00
done
fi
if test -z "$GNUPG_DIR"; then
AC_MSG_RESULT([not found])
AC_MSG_ERROR([Please reinstall the gpgme distribution])
2005-10-07 18:59:50 +00:00
fi
2020-12-27 18:55:28 +00:00
PHP_ADD_INCLUDE($GNUPG_DIR/include)
2005-10-07 18:59:50 +00:00
dnl enable largefile support on 32-bits platform
AC_SYS_LARGEFILE
AC_TYPE_OFF_T
2021-02-19 06:17:46 +00:00
dnl gpgme_op_passwd is not used but was added in 1.3.0
LIBNAME=gpgme
2021-02-19 06:17:46 +00:00
LIBSYMBOL=gpgme_op_passwd
2005-10-07 18:59:50 +00:00
PHP_CHECK_LIBRARY($LIBNAME,$LIBSYMBOL,
[
PHP_ADD_LIBRARY_WITH_PATH($LIBNAME, $GNUPG_DIR/$PHP_LIBDIR, GNUPG_SHARED_LIBADD)
2005-10-07 18:59:50 +00:00
AC_DEFINE(HAVE_GNUPGLIB,1,[ ])
],[
2021-02-19 06:17:46 +00:00
AC_MSG_ERROR([wrong gpgme lib version or lib not found (version >= 1.3 required)])
2005-10-07 18:59:50 +00:00
],[
-L$GNUPG_DIR/$PHP_LIBDIR -lm $GNUPG_DL
2005-10-07 18:59:50 +00:00
])
PHP_SUBST(GNUPG_SHARED_LIBADD)
2005-10-10 17:47:21 +00:00
PHP_NEW_EXTENSION(gnupg, [gnupg.c gnupg_keylistiterator.c], $ext_shared)
2005-10-07 18:59:50 +00:00
fi
AC_ARG_WITH([gpg], [AS_HELP_STRING([--with-gpg],
[path to gpg v1.x])], [], [with_gpg=no])
AC_PATH_PROG(GNUPG_PATH, gpg)
if test "$with_gpg" != "no"; then
if test "$with_gpg" != "yes"; then
if test -x "$with_gpg"; then
ac_cv_path_GNUPG_PATH=$with_gpg
else
if test -x "$ac_cv_path_GNUPG_PATH"; then
AC_MSG_RESULT($with_gpg invalid: using $ac_cv_path_GNUPG_PATH)
else
AC_MSG_RESULT($with_gpg invalid)
fi
fi
fi
if test -x "$ac_cv_path_GNUPG_PATH"; then
AC_DEFINE_UNQUOTED([GNUPG_PATH], ["$ac_cv_path_GNUPG_PATH"], [Path to gpg binary])
fi
fi