diff options
author | Joe Orton <jorton@apache.org> | 2013-10-01 12:25:02 +0200 |
---|---|---|
committer | Joe Orton <jorton@apache.org> | 2013-10-01 12:25:02 +0200 |
commit | c19caf32190ffa7c395360efde81455ed4d3dc7c (patch) | |
tree | 4bac93e7840cd2dcbbdf98a9b1ef84c8ea314ec6 /Makefile.in | |
parent | * configure.in: Simplify/fix systemd detection: move later to fix (diff) | |
download | apache2-c19caf32190ffa7c395360efde81455ed4d3dc7c.tar.xz apache2-c19caf32190ffa7c395360efde81455ed4d3dc7c.zip |
Don't link support/* against systemd libs.
* Makefile.in: Link httpd using $(HTTPD_LIBS).
* configure.in: Add systemd to HTTPD_LIBS rather than LIBS. Add PCRE
libs to HTTPD_LIBS.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1528034 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 6e542657eb..6780d9eba1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,7 +4,7 @@ CLEAN_SUBDIRS = test PROGRAM_NAME = $(progname) PROGRAM_SOURCES = modules.c -PROGRAM_LDADD = buildmark.o $(HTTPD_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(PCRE_LIBS) $(EXTRA_LIBS) $(AP_LIBS) $(LIBS) +PROGRAM_LDADD = buildmark.o $(HTTPD_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(HTTPD_LIBS) $(EXTRA_LIBS) $(AP_LIBS) $(LIBS) PROGRAM_PRELINK = $(COMPILE) -c $(top_srcdir)/server/buildmark.c PROGRAM_DEPENDENCIES = \ server/libmain.la \ |