From: Ryan Bloom Date: Tue, 5 Dec 2000 02:45:50 +0000 (+0000) Subject: Apache builds again, although the test directory doesn't. I will work on X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=832439dec984290cf5c6e1f461e0fafab9178fe3;p=apache Apache builds again, although the test directory doesn't. I will work on the test directory soon. The server does NOT currently run, but it does build cleanly. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87192 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index c3c0e4622a..d054c669be 100644 --- a/Makefile.in +++ b/Makefile.in @@ -2,12 +2,12 @@ SUBDIRS = modules os server srclib support test PROGRAM_NAME = $(progname) -PROGRAM_SOURCES = modules.c buildmark.c +PROGRAM_SOURCES = modules.c PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) PROGRAM_DEPENDENCIES = \ $(BUILTIN_LIBS) \ $(MPM_LIB) \ - main/libmain.la \ + server/libmain.la \ os/$(OS_DIR)/libos.la \ $(AP_LIBS) diff --git a/configure.in b/configure.in index 5a321d1337..d9a24851aa 100644 --- a/configure.in +++ b/configure.in @@ -175,7 +175,7 @@ apache_need_expat=yes dnl AP_LIB_DIRS specifies the additional libs from srclib/ that we need dnl AP_LIBS specifies the actual libraries. note we have some required libs. -AP_LIBS="srclib/pcre/libpcre.la srclib/apr-util/.libs/libaprutil.la" +AP_LIBS="srclib/pcre/libpcre.la srclib/apr-util/libaprutil.la" if test "$apache_need_sdbm" = "yes"; then AP_LIB_DIRS="$AP_LIB_DIRS sdbm" @@ -210,7 +210,7 @@ else fi APACHE_FAST_OUTPUT(Makefile modules/Makefile srclib/Makefile) -APACHE_FAST_OUTPUT(os/beos/Makefile os/os2/Makefile) +APACHE_FAST_OUTPUT(os/beos/Makefile os/os2/Makefile os/Makefile) APACHE_FAST_OUTPUT(os/unix/Makefile server/Makefile) APACHE_FAST_OUTPUT(support/Makefile test/Makefile srclib/pcre/Makefile) for i in $AP_LIB_DIRS; do diff --git a/server/Makefile.in b/server/Makefile.in index f28a11b140..e1fa986ac1 100644 --- a/server/Makefile.in +++ b/server/Makefile.in @@ -1,6 +1,8 @@ CLEANFILES = gen_test_char gen_uri_delims test_char.h uri_delims.h +SUBDIRS = mpm + LTLIBRARY_NAME = libmain.la LTLIBRARY_SOURCES = \ uri_delims.h test_char.h \ @@ -8,7 +10,7 @@ LTLIBRARY_SOURCES = \ util_script.c util_uri.c util_md5.c util_cfgtree.c util_ebcdic.c \ rfc1413.c connection.c listen.c \ mpm_common.c util_charset.c util_debug.c util_xml.c \ - util_filter.c exports.c + util_filter.c exports.c buildmark.c include $(top_srcdir)/build/ltlib.mk diff --git a/support/Makefile.in b/support/Makefile.in index e884fb4867..219a1de411 100644 --- a/support/Makefile.in +++ b/support/Makefile.in @@ -3,8 +3,8 @@ PROGRAMS = htpasswd htdigest rotatelogs logresolve ab targets = $(PROGRAMS) PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) -PROGRAM_DEPENDENCIES = ../srclib/apr/$(LIBPRE)apr.a \ - ../srclib/apr-util/.libs/libaprutil.a +PROGRAM_DEPENDENCIES = \ + ../srclib/apr-util/libaprutil.la ../srclib/apr/$(LIBPRE)apr.a include $(top_srcdir)/build/rules.mk