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

Skip to content

Commit 703ad70

Browse files
committed
Use -fPIC instead of -fpic for gcc on HP/UX. Fixes bug #433234.
1 parent a5f8bb5 commit 703ad70

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

configure

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

3-
# From configure.in Revision: 1.249
3+
# From configure.in Revision: 1.250
44

55
# Guess values for system-dependent variables and create Makefiles.
66
# Generated automatically using autoconf version 2.13
@@ -3087,7 +3087,7 @@ then
30873087
then CCSHARED="-fPIC";
30883088
fi;;
30893089
hp*|HP*) if test "$GCC" = yes;
3090-
then CCSHARED="-fpic";
3090+
then CCSHARED="-fPIC";
30913091
else CCSHARED="+z";
30923092
fi;;
30933093
Linux*) CCSHARED="-fPIC";;

configure.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -711,7 +711,7 @@ then
711711
then CCSHARED="-fPIC";
712712
fi;;
713713
hp*|HP*) if test "$GCC" = yes;
714-
then CCSHARED="-fpic";
714+
then CCSHARED="-fPIC";
715715
else CCSHARED="+z";
716716
fi;;
717717
Linux*) CCSHARED="-fPIC";;

0 commit comments

Comments
 (0)