Add -fPIC to CFLAGS

It's needed for "make shared".  Not needed (or desired) for static
libs, but it's nearly harmless.
This commit is contained in:
Andy McFadden 2018-08-07 20:47:56 -07:00
parent 137cafa05b
commit 9fdc77a108
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ OPT = @CFLAGS@
#OPT = @CFLAGS@ -DDEBUG_MSGS
#OPT = @CFLAGS@ -DDEBUG_VERBOSE
GCC_FLAGS = -Wall -Wwrite-strings -Wstrict-prototypes -Wpointer-arith -Wshadow
CFLAGS = @BUILD_FLAGS@ -I. @DEFS@ -DOPTFLAGSTR="\"$(OPT)\""
CFLAGS = @BUILD_FLAGS@ -I. @DEFS@ -fPIC -DOPTFLAGSTR="\"$(OPT)\""
SRCS = Archive.c ArchiveIO.c Bzip2.c Charset.c Compress.c Crc16.c \
Debug.c Deferred.c Deflate.c Entry.c Expand.c FileIO.c Funnel.c \