From: Martin v. Löwis Date: Wed, 5 Sep 2001 08:36:52 +0000 (+0000) Subject: Use -fPIC instead of -fpic for gcc on HP/UX. Fixes bug #433234. X-Git-Tag: v2.2a3~91 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=703ad705c34deba4b559fd9e62c380dcbdc6861e;p=thirdparty%2FPython%2Fcpython.git Use -fPIC instead of -fpic for gcc on HP/UX. Fixes bug #433234. --- diff --git a/configure b/configure index 8c68908fd1d9..c60bd34a9bc2 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.249 +# From configure.in Revision: 1.250 # Guess values for system-dependent variables and create Makefiles. # Generated automatically using autoconf version 2.13 @@ -3087,7 +3087,7 @@ then then CCSHARED="-fPIC"; fi;; hp*|HP*) if test "$GCC" = yes; - then CCSHARED="-fpic"; + then CCSHARED="-fPIC"; else CCSHARED="+z"; fi;; Linux*) CCSHARED="-fPIC";; diff --git a/configure.in b/configure.in index e2d9dfef3ac2..329a1af83730 100644 --- a/configure.in +++ b/configure.in @@ -711,7 +711,7 @@ then then CCSHARED="-fPIC"; fi;; hp*|HP*) if test "$GCC" = yes; - then CCSHARED="-fpic"; + then CCSHARED="-fPIC"; else CCSHARED="+z"; fi;; Linux*) CCSHARED="-fPIC";;