Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit cd5ff9f

Browse files
committed
Change HP=UX compiler options from -Aa to -Ae, which implies
-D_HPUX_SOURCE and also turns on long long support. Suggestion by [email protected] (Stefan Norberg). Please test this if you have access to HP-UX!!!
1 parent ecc23b0 commit cd5ff9f

2 files changed

Lines changed: 9 additions & 9 deletions

File tree

configure

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#! /bin/sh
22

3-
# From configure.in Revision: 1.160
3+
# From configure.in Revision: 1.161
44

55
# Guess values for system-dependent variables and create Makefiles.
66
# Generated automatically using autoconf version 2.13
@@ -1039,12 +1039,12 @@ esac
10391039
case $ac_sys_system in
10401040
hp*|HP*)
10411041
case $CC in
1042-
cc|*/cc) CC="$CC -Aa -D_HPUX_SOURCE";;
1042+
cc|*/cc) CC="$CC -Ae";;
10431043
esac;;
10441044
BeOS*)
1045-
case $CC in
1046-
cc) CC=cc;;
1047-
esac;;
1045+
case $CC in
1046+
cc) CC=cc;;
1047+
esac;;
10481048
Monterey*)
10491049
case $CC in
10501050
cc) CC="$CC -Wl,-Bexport";;

configure.in

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -213,12 +213,12 @@ esac
213213
case $ac_sys_system in
214214
hp*|HP*)
215215
case $CC in
216-
cc|*/cc) CC="$CC -Aa -D_HPUX_SOURCE";;
216+
cc|*/cc) CC="$CC -Ae";;
217217
esac;;
218218
BeOS*)
219-
case $CC in
220-
cc) CC=cc;;
221-
esac;;
219+
case $CC in
220+
cc) CC=cc;;
221+
esac;;
222222
Monterey*)
223223
case $CC in
224224
cc) CC="$CC -Wl,-Bexport";;

0 commit comments

Comments
 (0)