summaryrefslogtreecommitdiffstats
path: root/md5/configure.ac
diff options
context:
space:
mode:
authorSam Varshavchik2022-05-22 23:52:28 -0400
committerSam Varshavchik2022-05-22 23:52:31 -0400
commit83e37efc8ed785cd095eb585ff747e5702ec49b3 (patch)
tree15aed6da6214e9a03d91be1754cd351175349945 /md5/configure.ac
parent1ce81fa6af52651628a0bffcd8b15fdb459901a5 (diff)
downloadcourier-libs-83e37efc8ed785cd095eb585ff747e5702ec49b3.tar.bz2
gcc 12, autotool updates, sqwebmail fixes.
Diffstat (limited to 'md5/configure.ac')
-rw-r--r--md5/configure.ac26
1 files changed, 12 insertions, 14 deletions
diff --git a/md5/configure.ac b/md5/configure.ac
index 4a90c95..c3e23de 100644
--- a/md5/configure.ac
+++ b/md5/configure.ac
@@ -3,8 +3,8 @@ dnl
dnl Copyright 1998 - 2004 Double Precision, Inc. See COPYING for
dnl distribution information.
-AC_PREREQ(2.59)
-AC_INIT(libmd5, 1.21, courier-users@lists.sourceforge.net)
+AC_PREREQ([2.71])
+AC_INIT([libmd5],[1.21],[courier-users@lists.sourceforge.net])
>confdefs.h # Kill PACKAGE_ macros
@@ -20,8 +20,7 @@ AC_PROG_AWK
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_CC
-AC_PROG_CC_C99
-AC_PROG_LIBTOOL
+LT_INIT
if test "$GCC" = yes
then
@@ -33,8 +32,6 @@ CFLAGS="$CFLAGS -I$srcdir/.. -I.."
dnl Checks for libraries.
dnl Checks for header files.
-AC_HEADER_STDC
-
AC_CHECK_HEADERS(sys/types.h stdint.h)
@@ -45,7 +42,7 @@ AC_ARG_WITH(int32,
AC_MSG_CHECKING(for uint32_t)
- AC_TRY_COMPILE([
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
@@ -53,13 +50,13 @@ AC_ARG_WITH(int32,
#include <stdint.h>
#endif
uint32_t i;
- ],[
- ], [ AC_MSG_RESULT(yes) ; int32="uint32_t"], [
+ ]], [[
+ ]])],[ AC_MSG_RESULT(yes) ; int32="uint32_t"],[
AC_MSG_RESULT(no)
AC_MSG_CHECKING(for u_int_32_t)
- AC_TRY_COMPILE([
+ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
#if HAVE_SYS_TYPES_H
#include <sys/types.h>
#endif
@@ -67,8 +64,8 @@ uint32_t i;
#include <stdint.h>
#endif
u_int32_t i;
- ],[
- ], [AC_MSG_RESULT(yes); int32="u_int32_t"],[
+ ]], [[
+ ]])],[AC_MSG_RESULT(yes); int32="u_int32_t"],[
AC_MSG_RESULT(no)
@@ -81,7 +78,7 @@ u_int32_t i;
AC_CHECK_SIZEOF(unsigned short, 0)
if test "$ac_cv_sizeof_unsigned_short" != 4
then
- AC_ERROR(--with-int32 option is required)
+ AC_MSG_ERROR(--with-int32 option is required)
fi
int32="unsigned short"
fi
@@ -103,4 +100,5 @@ AC_SYS_LARGEFILE
dnl Checks for library functions.
-AC_OUTPUT(Makefile)
+AC_CONFIG_FILES([Makefile])
+AC_OUTPUT