From 952f58b66d579cd6a171c4b25269f151e73cd3fa Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Sun, 30 Apr 2000 03:12:38 +0000 Subject: [PATCH] (The first part of this commit died with a SIGPIPE from the CVS server.) Overall UNIX build system improvements: * Makefile header is now completely dynamic * Absolute paths in (top_)?(src|build)dir and VPATH (fixes Tru64 support) * VPATH does not contain variables anymore (fixes UnixWare support) --- ext/aspell/Makefile.in | 7 +------ ext/bcmath/Makefile.in | 7 +------ ext/calendar/Makefile.in | 8 +------- ext/cpdf/Makefile.in | 7 +------ ext/cybercash/Makefile.in | 7 +------ ext/dav/Makefile.in | 7 +------ 6 files changed, 6 insertions(+), 37 deletions(-) diff --git a/ext/aspell/Makefile.in b/ext/aspell/Makefile.in index 1c5ad51822..94ffb01cf5 100644 --- a/ext/aspell/Makefile.in +++ b/ext/aspell/Makefile.in @@ -1,10 +1,5 @@ -DEPTH = ../.. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - LTLIBRARY_NAME = libaspell.la LTLIBRARY_SOURCES = aspell.c -include $(topsrcdir)/build/ltlib.mk +include $(top_srcdir)/build/ltlib.mk diff --git a/ext/bcmath/Makefile.in b/ext/bcmath/Makefile.in index 63953d35e0..e8517a459c 100644 --- a/ext/bcmath/Makefile.in +++ b/ext/bcmath/Makefile.in @@ -1,11 +1,6 @@ -DEPTH = ../.. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - LTLIBRARY_NAME = libbcmath.la LTLIBRARY_SOURCES = bcmath.c number.c -include $(topsrcdir)/build/ltlib.mk +include $(top_srcdir)/build/ltlib.mk diff --git a/ext/calendar/Makefile.in b/ext/calendar/Makefile.in index 9ffcafdc38..1b49f58b8f 100644 --- a/ext/calendar/Makefile.in +++ b/ext/calendar/Makefile.in @@ -1,11 +1,5 @@ -# $Id$ - -DEPTH = ../.. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ LTLIBRARY_NAME = libcalendar.la LTLIBRARY_SOURCES = calendar.c dow.c french.c gregor.c jewish.c julian.c easter.c cal_unix.c -include $(topsrcdir)/build/ltlib.mk +include $(top_srcdir)/build/ltlib.mk diff --git a/ext/cpdf/Makefile.in b/ext/cpdf/Makefile.in index 11961fe66e..ee8e1cd1cb 100644 --- a/ext/cpdf/Makefile.in +++ b/ext/cpdf/Makefile.in @@ -1,10 +1,5 @@ -DEPTH = ../.. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - LTLIBRARY_NAME = libcpdf.la LTLIBRARY_SOURCES = cpdf.c -include $(topsrcdir)/build/ltlib.mk +include $(top_srcdir)/build/ltlib.mk diff --git a/ext/cybercash/Makefile.in b/ext/cybercash/Makefile.in index fc24880d42..3d3c1d39e7 100644 --- a/ext/cybercash/Makefile.in +++ b/ext/cybercash/Makefile.in @@ -1,10 +1,5 @@ -DEPTH = ../.. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - LTLIBRARY_NAME = libcybercash.la LTLIBRARY_SOURCES = cybercash.c -include $(topsrcdir)/build/ltlib.mk +include $(top_srcdir)/build/ltlib.mk diff --git a/ext/dav/Makefile.in b/ext/dav/Makefile.in index c3522068b4..5e3149ea23 100644 --- a/ext/dav/Makefile.in +++ b/ext/dav/Makefile.in @@ -1,10 +1,5 @@ -DEPTH = ../.. -topsrcdir = @topsrcdir@ -srcdir = @srcdir@ -VPATH = @srcdir@ - LTLIBRARY_NAME = libdav.la LTLIBRARY_SOURCES = dav.c -include $(topsrcdir)/build/ltlib.mk +include $(top_srcdir)/build/ltlib.mk -- 2.40.0