aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-08-17 14:06:43 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2015-08-17 14:06:43 +0000
commit110e664b6491f19ea5af87c474d0093f369d2f26 (patch)
treed9c869ce38b01cac144a4f1a0ae96df8705c6e52
parent40934ade5e7afb22210390d43ae013dccf5ad297 (diff)
build with -fPIC
and removed -Wstrict-prototypes: it's not available for g++ svn path=/trunk/externals/iem/iemxmlrpc/; revision=17517
-rw-r--r--xmlrpc++/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/xmlrpc++/Makefile b/xmlrpc++/Makefile
index 1c67616..2dcc682 100644
--- a/xmlrpc++/Makefile
+++ b/xmlrpc++/Makefile
@@ -8,8 +8,8 @@ SRC = ./src
CPPFLAGS = -I$(SRC)
DEBUG = -g
OPTIMIZE = -O2
-GCCWARN = -Wall -Wstrict-prototypes
-CXXFLAGS = $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES)
+GCCWARN = -Wall
+CXXFLAGS = $(DEBUG) $(GCCWARN) $(OPTIMIZE) $(INCLUDES) -fPIC
LIB = ./libXmlRpc.a