summaryrefslogtreecommitdiffstats
path: root/configure.in
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>1999-10-04 09:54:28 +0000
committerThomas Roessler <roessler@does-not-exist.org>1999-10-04 09:54:28 +0000
commit9d3483e6f58ad8ec1fd612b5857aecbc588a4d25 (patch)
tree6ca572b6ffba7461a8b8aa9ae70fe216c87c3ab2 /configure.in
parent8db94530a6d9987ff1c993cad263052507203947 (diff)
AM_C_PROTOTYPES seems to be too recent for the installed
automake/autoconf base.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in11
1 files changed, 9 insertions, 2 deletions
diff --git a/configure.in b/configure.in
index 5cf6471f..045fdbf5 100644
--- a/configure.in
+++ b/configure.in
@@ -28,9 +28,16 @@ AC_PROG_INSTALL
AC_ISC_POSIX
AC_PROG_RANLIB
-AM_C_PROTOTYPES
-AC_C_CONST
+case "$host" in
+*-*-hpux*)
+ if test -z "$GCC" ; then
+ CFLAGS="$CFLAGS -Ae -D_HPUX_SOURCE"
+ fi
+ ;;
+esac
+
AC_C_INLINE
+AC_C_CONST
ac_aux_path_sendmail=/usr/sbin:/usr/lib
AC_PATH_PROG(SENDMAIL, sendmail, no, $PATH:$ac_aux_path_sendmail)