summaryrefslogtreecommitdiff
path: root/src/support/Makefile.tmpl
diff options
context:
space:
mode:
authorMartin Kraemer <martin@apache.org>1999-08-10 14:37:18 +0000
committerMartin Kraemer <martin@apache.org>1999-08-10 14:37:18 +0000
commit47d118a2bafaf01c7cde38dbcccf0b480ecd2ffe (patch)
tree38c4a62758d672590af74ba2b4ceab04e669b2eb /src/support/Makefile.tmpl
parent3ce9b439e87470e0279a5ca9236b9c26d4595e70 (diff)
downloadhttpd-47d118a2bafaf01c7cde38dbcccf0b480ecd2ffe.tar.gz
For "some" platforms (notably, EBCDIC based ones), libos needs to be
searched only AFTER libap has been searched, because libap needs some symbols from libos. If swapping the two libraries causes *any problems whatsoever*, feel free to contact me or to revert this patch! It worked for me, and I am not aware of any problems. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x@83634 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/support/Makefile.tmpl')
-rw-r--r--src/support/Makefile.tmpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/support/Makefile.tmpl b/src/support/Makefile.tmpl
index 18a468b6bc..33c1377773 100644
--- a/src/support/Makefile.tmpl
+++ b/src/support/Makefile.tmpl
@@ -1,6 +1,6 @@
CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
-LIBS=-los -lap $(EXTRA_LIBS) $(LIBS1)
+LIBS=-lap -los $(EXTRA_LIBS) $(LIBS1)
INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES)
LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS) -L$(OSDIR) -L$(SRCDIR)/ap