]> err.no Git - sope/commitdiff
fixed redhat5 compilation
authorhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Tue, 14 Aug 2007 17:36:32 +0000 (17:36 +0000)
committerhelge <helge@e4a50df8-12e2-0310-a44c-efbce7f8a7e3>
Tue, 14 Aug 2007 17:36:32 +0000 (17:36 +0000)
git-svn-id: http://svn.opengroupware.org/SOPE/trunk@1528 e4a50df8-12e2-0310-a44c-efbce7f8a7e3

sope-appserver/mod_ngobjweb/ChangeLog
sope-appserver/mod_ngobjweb/GNUmakefile

index 367884b53234f0344515c155c4bc4abbe14fd68e..acac6fb97ea0d3cff1f517fec01ae828a6d18032 100644 (file)
@@ -1,3 +1,8 @@
+2007-07-19  Wolfgang Sourdeau  <WSourdeau@Inverse.CA>
+
+       * GNUmakefile: include APR CFLAGS and LDFLAGS in compilation (fixes OGo
+         bug #1886)
+
 2007-07-06  Marcus Mueller  <znek@mulle-kybernetik.com>
 
        * handler.c: fixed compilation for Apache 2.2.x. No heavy testing has
index ed0f74569db2bba7a022b4b404ca80c735c271e0..0d80445c696810e62bf3ee7a5d56f341c5f5302f 100644 (file)
@@ -69,6 +69,8 @@ endif
 
 ifneq ($(APR),)
 APR_INCLUDE_DIRS = -I$(shell $(APR) --includedir)
+APR_CFLAGS       = $(shell $(APR) --cppflags)
+APR_LDFLAGS      = $(shell $(APR) --ldflags --libs)
 endif
 
 GNUSTEP_INSTALLATION_DIR = $(GNUSTEP_SYSTEM_ROOT)/Library/WOAdaptors/Apache
@@ -78,9 +80,10 @@ LD            = gcc
 SHARED_LIBEXT = .so
 
 CFLAGS  = -Wall -I. -fPIC \
-       $(APXS_CFLAGS) $(APXS_INCLUDE_DIRS) $(APR_INCLUDE_DIRS)
+       $(APXS_CFLAGS) $(APR_CFLAGS) \
+       $(APXS_INCLUDE_DIRS) $(APR_INCLUDE_DIRS)
 
-LDFLAGS = $(APXS_LDFLAGS) -shared -fPIC
+LDFLAGS = $(APXS_LDFLAGS) $(APR_LDFLAGS) -shared -fPIC
 
 # adaptor