]> granicus.if.org Git - python/commitdiff
Use -fPIC instead of -fpic for gcc on HP/UX. Fixes bug #433234.
authorMartin v. Löwis <martin@v.loewis.de>
Wed, 5 Sep 2001 08:36:52 +0000 (08:36 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Wed, 5 Sep 2001 08:36:52 +0000 (08:36 +0000)
configure
configure.in

index 8c68908fd1d9d1db5ca22298e94c4e66527572ad..c60bd34a9bc2c3b52d0d7c26f47265ceae6729e7 100755 (executable)
--- 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";;
index e2d9dfef3ac2c89eb2012fd36015f2d30acc9a63..329a1af83730e865dadb452c01fbe8efc99f6563 100644 (file)
@@ -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";;