From: Tom Lane Date: Thu, 29 May 2003 18:08:42 +0000 (+0000) Subject: AFAICT, none of our shared libraries are anywhere near big enough to X-Git-Tag: REL9_0_0~15227 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=9f47c4cc5c7833608908665c71e3f3dd4acc092f;p=pg-rex%2Fsyncrep.git AFAICT, none of our shared libraries are anywhere near big enough to need -fPIC on HPPA. Reduce to -fpic. --- diff --git a/src/makefiles/Makefile.hpux b/src/makefiles/Makefile.hpux index 559b887f26..3f81ce3d91 100644 --- a/src/makefiles/Makefile.hpux +++ b/src/makefiles/Makefile.hpux @@ -30,7 +30,7 @@ AROPT = crs DLSUFFIX = .sl ifeq ($(GCC), yes) -CFLAGS_SL = -fPIC +CFLAGS_SL = -fpic else CFLAGS_SL = +z endif