Created
November 17, 2010 23:24
-
-
Save caioceccon/704329 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHP_ARG_ENABLE(authmail, whether to enable Auth Mail support, | |
[ --enable-authmail Enable Auth Mail support]) | |
if test "$PHP_AUTHMAIL" = "yes"; then | |
AC_DEFINE(HAVE_AUTHMAIL, 1, [Whether you have Auth Mail]) | |
PHP_NEW_EXTENSION(authmail, authmail.c, $ext_shared) | |
PHP_ADD_LIBRARY_WITH_PATH(esmtp, /usr/lib, PHP_AUTHMAIL_SHARED_LIBADD) | |
PHP_SUBST(PHP_AUTHMAIL_SHARED_LIBADD) | |
AC_DEFINE(HAVE_LIBESMTP,1,[ ]) | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment