summaryrefslogtreecommitdiffstats
path: root/build/library.mk
diff options
context:
space:
mode:
authorSascha Schumann <sascha@apache.org>2000-04-30 02:06:07 +0200
committerSascha Schumann <sascha@apache.org>2000-04-30 02:06:07 +0200
commit99fa11cb5f289491c595a27bc8c1471b46081c30 (patch)
treec90bdd4e0fa55960acd7b7ec6a869d0a8e144f6e /build/library.mk
parentAdd ap_sigwait() to support old-style sigwait(). (diff)
downloadapache2-99fa11cb5f289491c595a27bc8c1471b46081c30.tar.xz
apache2-99fa11cb5f289491c595a27bc8c1471b46081c30.zip
Overall UNIX build system improvements:
* Makefile header is now completely dynamic * Absolute paths everywhere (fixes Tru64 support) * Get rid of LTLIBRARY_SHARED_NAME rule in library.mk (fixes Irix support, untested) * VPATH does not contain variables anymore (fixes UnixWare support) * Remove inclusion of program.mk in support/Makefile.in (PROGRAM_NAME is empty => breaks Irix and others) * Call REENTRANCY_FLAGS earlier, so that flags are passed to header checks (might fix OpenBSD pthread.h-detection, untested) git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85102 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'build/library.mk')
-rw-r--r--build/library.mk12
1 files changed, 0 insertions, 12 deletions
diff --git a/build/library.mk b/build/library.mk
index 0c94b1d4c8..c797a349dd 100644
--- a/build/library.mk
+++ b/build/library.mk
@@ -58,15 +58,3 @@ LTLIBRARY_OBJECTS = $(LTLIBRARY_SOURCES:.c=.lo)
$(LTLIBRARY_NAME): $(LTLIBRARY_OBJECTS) $(LTLIBRARY_DEPENDENCIES)
$(LINK) $(LTLIBRARY_LDFLAGS) $(LTLIBRARY_OBJECTS) $(LTLIBRARY_LIBADD)
-
-$(LTLIBRARY_SHARED_NAME): $(LTLIBRARY_OBJECTS) $(LTLIBRARY_DEPENDENCIES)
- @test -d $(phplibdir) || $(mkinstalldirs) $(phplibdir)
- $(LINK) -avoid-version -module -rpath $(phplibdir) $(LTLIBRARY_LDFLAGS) $(LTLIBRARY_OBJECTS) $(LTLIBRARY_SHARED_LIBADD)
- $(SHLIBTOOL) --mode=install install $@ $(phplibdir)
-
-shared:
- @if test '$(SHLIBTOOL)' != '$(LIBTOOL)'; then \
- $(MAKE) 'LIBTOOL=$(SHLIBTOOL)' $(LTLIBRARY_SHARED_NAME); \
- else \
- $(MAKE) $(LTLIBRARY_SHARED_NAME); \
- fi;