aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrent Cook <busterb@gmail.com>2025-05-19 14:25:30 +0900
committerBrent Cook <busterb@gmail.com>2025-05-19 14:25:30 +0900
commit48d4157f99c00a1180db5298385d396ef840adda (patch)
treea449c3a6571a367233e56e3fe5b72b5799fbab90
parent2a3e1b6df73d2cc267b9d38c697597e659d762f5 (diff)
downloadportable-48d4157f99c00a1180db5298385d396ef840adda.tar.gz
portable-48d4157f99c00a1180db5298385d396ef840adda.tar.bz2
portable-48d4157f99c00a1180db5298385d396ef840adda.zip
trim some whitespace for hpux checks
-rw-r--r--m4/check-os-options.m46
1 files changed, 3 insertions, 3 deletions
diff --git a/m4/check-os-options.m4 b/m4/check-os-options.m4
index 2ef4293..b9f10c7 100644
--- a/m4/check-os-options.m4
+++ b/m4/check-os-options.m4
@@ -74,14 +74,14 @@ char buf[1]; getentropy(buf, 1);
74 ;; 74 ;;
75 *hpux*) 75 *hpux*)
76 HOST_OS=hpux; 76 HOST_OS=hpux;
77 if test "`echo $host_os | cut -c 1-4`" = "ia64" ; then 77 if test "echo $host_os | cut -c 1-4" = "ia64" ; then
78 if test "`echo $CC | cut -d ' ' -f 1`" = "gcc" ; then 78 if test "echo $CC | cut -d ' ' -f 1" = "gcc" ; then
79 CFLAGS="$CFLAGS -mlp64" 79 CFLAGS="$CFLAGS -mlp64"
80 else 80 else
81 CFLAGS="+DD64" 81 CFLAGS="+DD64"
82 fi 82 fi
83 fi 83 fi
84 if ! test "`echo $CC | cut -d ' ' -f 1`" = "gcc" ; then 84 if ! test "echo $CC | cut -d ' ' -f 1" = "gcc" ; then
85 CFLAGS="-g -O2 +Otype_safety=off $CFLAGS $USER_CFLAGS" 85 CFLAGS="-g -O2 +Otype_safety=off $CFLAGS $USER_CFLAGS"
86 fi 86 fi
87 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -D__STRICT_ALIGNMENT" 87 CPPFLAGS="$CPPFLAGS -D_XOPEN_SOURCE=600 -D__STRICT_ALIGNMENT"