modernize configure.ac
This commit is contained in:
parent
e686f88318
commit
f2b1e80033
15
configure.ac
15
configure.ac
|
@ -62,8 +62,8 @@ if test "x$ob_cv_perl_ver" = "xno"; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
AC_CACHE_CHECK([whether strftime supports %z], ob_cv_strftime_z,
|
AC_CACHE_CHECK([whether strftime supports %z], ob_cv_strftime_z,
|
||||||
[AC_TRY_RUN(
|
[AC_RUN_IFELSE([AC_LANG_SOURCE([[
|
||||||
[#include <time.h>
|
#include <time.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
|
|
||||||
int main(void)
|
int main(void)
|
||||||
|
@ -73,7 +73,7 @@ int main(void)
|
||||||
strftime(buf, sizeof(buf), "%z", localtime(&t));
|
strftime(buf, sizeof(buf), "%z", localtime(&t));
|
||||||
return !(buf[0] == '+' || buf[0] == '-');
|
return !(buf[0] == '+' || buf[0] == '-');
|
||||||
}
|
}
|
||||||
], [ob_cv_strftime_z=yes], [ob_cv_strftime_z=no], [ob_cv_strftime_z="yes (assumed)"])])
|
]])], [ob_cv_strftime_z=yes], [ob_cv_strftime_z=no], [ob_cv_strftime_z="yes (assumed)"])])
|
||||||
if test "x$ob_cv_strftime_z" = x"no"; then
|
if test "x$ob_cv_strftime_z" = x"no"; then
|
||||||
AC_MSG_ERROR([libc lacks necessary feature])
|
AC_MSG_ERROR([libc lacks necessary feature])
|
||||||
fi
|
fi
|
||||||
|
@ -96,7 +96,7 @@ fi
|
||||||
|
|
||||||
have_ssl_paths=
|
have_ssl_paths=
|
||||||
AC_ARG_WITH(ssl,
|
AC_ARG_WITH(ssl,
|
||||||
AC_HELP_STRING([--with-ssl[=PATH]], [where to look for SSL [detect]]),
|
AS_HELP_STRING([--with-ssl[=PATH]], [where to look for SSL [detect]]),
|
||||||
[ob_cv_with_ssl=$withval])
|
[ob_cv_with_ssl=$withval])
|
||||||
if test "x$ob_cv_with_ssl" != xno; then
|
if test "x$ob_cv_with_ssl" != xno; then
|
||||||
case $ob_cv_with_ssl in
|
case $ob_cv_with_ssl in
|
||||||
|
@ -193,12 +193,13 @@ AC_CACHE_CHECK([for Berkeley DB >= 4.1], ac_cv_berkdb4,
|
||||||
[ac_cv_berkdb4=no
|
[ac_cv_berkdb4=no
|
||||||
sav_LIBS=$LIBS
|
sav_LIBS=$LIBS
|
||||||
LIBS="$LIBS -ldb"
|
LIBS="$LIBS -ldb"
|
||||||
AC_TRY_LINK([#include <db.h>],
|
AC_LINK_IFELSE([AC_LANG_PROGRAM(
|
||||||
|
[#include <db.h>],
|
||||||
[DB *db;
|
[DB *db;
|
||||||
db_create(&db, 0, 0);
|
db_create(&db, 0, 0);
|
||||||
db->truncate(db, 0, 0, 0);
|
db->truncate(db, 0, 0, 0);
|
||||||
db->open(db, 0, "foo", "foo", DB_HASH, DB_CREATE, 0)],
|
db->open(db, 0, "foo", "foo", DB_HASH, DB_CREATE, 0);
|
||||||
[ac_cv_berkdb4=yes])
|
])], [ac_cv_berkdb4=yes], [])
|
||||||
LIBS=$sav_LIBS
|
LIBS=$sav_LIBS
|
||||||
])
|
])
|
||||||
if test "x$ac_cv_berkdb4" = xyes; then
|
if test "x$ac_cv_berkdb4" = xyes; then
|
||||||
|
|
Loading…
Reference in New Issue
Block a user