and the warning message from autoconf 2.5x.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@100540
13f79535-47bb-0310-9956-
ffa450edef68
+++ /dev/null
-/* Define this if struct tm has a field tm_gmtoff */
-#undef HAVE_GMTOFF
-
-/* Define this if we are building with OpenSSL */
-#undef HAVE_OPENSSL
-
-/* Define this if we are building with SSL-C */
-#undef HAVE_SSLC
dnl Adjust apache's configuration based on what we found above.
dnl (a) define preprocessor symbols
if test "$ap_ssltk_type" = "openssl"; then
- AC_DEFINE(HAVE_OPENSSL)
+ AC_DEFINE(HAVE_OPENSSL, 1, [Define if SSL is supported using OpenSSL])
else
- AC_DEFINE(HAVE_SSLC)
+ AC_DEFINE(HAVE_SSLC, 1, [Define if SSL is supported using SSL-C])
fi
dnl (b) hook up include paths
if test "x$ap_ssltk_inc" != "x"; then
#include <time.h>], [struct tm tm; tm.tm_gmtoff;],
ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)])
if test "$ac_cv_struct_tm_gmtoff" = "yes"; then
- AC_DEFINE(HAVE_GMTOFF)
+ AC_DEFINE(HAVE_GMTOFF, 1, [Define if struct tm has a tm_gmtoff field])
fi
dnl ## Set up any appropriate OS-specific environment variables for apachectl