Commit Diff
Diff:
bed119c9e5588d4cd3cfe4cc32f25093879176a9
558fe6b453a08c8924060b02d66f32a3683cc821
Commit:
558fe6b453a08c8924060b02d66f32a3683cc821
Tree:
50143c0321cfbf091b8a6e8eb34c500cf51eaa55
Author:
Alexander Barton <alex@barton.de>
Committer:
Alexander Barton <alex@barton.de>
Date:
Sun Apr 11 13:20:24 2004 UTC
Message:
Special handling for HP/UX: define _XOPEN_SOURCE_EXTENDED ...
blob - cd54a6f62bb6a14a78f08b29a7a1b7e46764542d
blob + 49d2debe62218b397b6e0075e032f07e85a11171
--- configure.in
+++ configure.in
@@ -8,7 +8,7 @@
# (at your option) any later version.
# Please read the file COPYING, README and AUTHORS for more information.
#
-# $Id: configure.in,v 1.101 2004/03/11 22:21:20 alex Exp $
+# $Id: configure.in,v 1.102 2004/04/11 13:20:24 alex Exp $
#
# -- Initialisation --
@@ -61,6 +61,14 @@ if test "$GCC" = "yes"; then
CFLAGS="$CFLAGS -pipe -W -Wall -Wpointer-arith -Wstrict-prototypes"
fi
+case "$target_os" in
+ hpux*)
+ # This is HP/UX, we need to define _XOPEN_SOURCE_EXTENDED
+ # (tested with HP/UX 11.11)
+ CFLAGS="$CFLAGS -D_XOPEN_SOURCE_EXTENDED"
+ ;;
+esac
+
# Add additional CFLAGS, eventually specified on the command line:
test -n "$CFLAGS_ADD" && CFLAGS="$CFLAGS $CFLAGS_ADD"
@@ -297,7 +305,8 @@ C=`eval echo ${sysconfdir}` ; C=`eval echo ${C}`
M=`eval echo ${mandir}` ; M=`eval echo ${M}`
D=`eval echo ${datadir}/doc/${PACKAGE}` ; D=`eval echo ${D}`
-echo " Host: ${host}"
+echo " Target: ${target}"
+test "$target" != "$host" && echo " Host: ${host}"
echo " Compiler: ${CC}"
test -n "$CFLAGS" && echo " Compiler flags: ${CFLAGS}"
test -n "$CPPFLAGS" && echo " Preprocessor flags: ${CPPFLAGS}"
IRCNow