summaryrefslogtreecommitdiffstatsabout
path: root/utility/Makefile.in
diff options
context:
space:
mode:
authorEdward Rudd <urkle@outoforder.cc>2008-10-26 01:53:49 (GMT)
committer Edward Rudd <urkle@outoforder.cc>2008-10-26 01:53:49 (GMT)
commitfc70e99444b2852f45303d9bf55332f247ec6b4f (patch)
treeb74c53e122b67b9b6b82ddbdf02c4fb12e9236de /utility/Makefile.in
parentede07b5bec9a17f2fe208abdf12e72209b79780c (diff)
finish transaction implementation
if a single log file aborts DO NOT keep going switch to using libtool for linking (so rpath is set)
Diffstat (limited to 'utility/Makefile.in')
-rw-r--r--utility/Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/utility/Makefile.in b/utility/Makefile.in
index c7a5e3d..fdc3846 100644
--- a/utility/Makefile.in
+++ b/utility/Makefile.in
@@ -2,14 +2,15 @@
2 2
3top_srcdir = @top_srcdir@ 3top_srcdir = @top_srcdir@
4srcdir = @abs_srcdir@ 4srcdir = @abs_srcdir@
5top_builddir = @top_builddir@
5builddir = @abs_builddir@ 6builddir = @abs_builddir@
6 7
7#@APR_CFLAGS@ 8LIBTOOL=@LIBTOOL@
8CFLAGS = -g3 -Wall -fno-strict-aliasing \ 9CFLAGS = -g3 -Wall -fno-strict-aliasing \
9 @APR_INCLUDES@ @APU_INCLUDES@ @PCRE_CFLAGS@ \ 10 @APR_INCLUDES@ @APU_INCLUDES@ @PCRE_CFLAGS@ \
10 -I$(top_srcdir)/include 11 -I$(top_srcdir)/include
11CPPFLAGS = @APR_CPPFLAGS@ 12CPPFLAGS = @APR_CPPFLAGS@
12LDFLAGS = @APR_LDFLAGS@ @APU_LDFLAGS@ @PCRE_LIBS@ 13LDFLAGS = @APR_LIBTOOL@ @APU_LIBTOOL@ @PCRE_LIBS@
13 14
14ifeq (@OOO_MAINTAIN@,1) 15ifeq (@OOO_MAINTAIN@,1)
15CFLAGS += -Werror 16CFLAGS += -Werror
@@ -28,7 +29,7 @@ TARGETS = mod_log_sql
28all: $(TARGETS) 29all: $(TARGETS)
29 30
30mod_log_sql: $(OBJECTS) $(HEADERS) 31mod_log_sql: $(OBJECTS) $(HEADERS)
31 $(CC) -o $@ $(OBJECTS) $(LDFLAGS) 32 $(LIBTOOL) --tag=CC --mode=link $(CC) -o $@ $(OBJECTS) $(LDFLAGS)
32 33
33%.o: %.c %.d 34%.o: %.c %.d
34 gcc -c $(CFLAGS) $(CPPFLAGS) $< -o $@ 35 gcc -c $(CFLAGS) $(CPPFLAGS) $< -o $@