X-Git-Url: https://granicus.if.org/sourcecode?a=blobdiff_plain;f=Makefile.in;h=0f8cf8d51bca565518372ea903a17df3dc9265ad;hb=b30b4c31072b6ee53a5426019f6f676071c706c9;hp=bea3a0a2bcceef056114af098469fdd5198af070;hpb=8483e52370e5f08f28b2a017bbe463ff0da37e7b;p=apache diff --git a/Makefile.in b/Makefile.in index bea3a0a2bc..0f8cf8d51b 100644 --- a/Makefile.in +++ b/Makefile.in @@ -4,178 +4,254 @@ CLEAN_SUBDIRS = test PROGRAM_NAME = $(progname) PROGRAM_SOURCES = modules.c -PROGRAM_LDADD = $(EXTRA_LDFLAGS) $(HTTPD_LDFLAGS) \ - $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS) $(AP_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 \ $(BUILTIN_LIBS) \ $(MPM_LIB) \ - server/libmain.la \ os/$(OS_DIR)/libos.la -PROGRAMS = $(PROGRAM_NAME) -TARGETS = $(PROGRAMS) $(shared_build) $(other_targets) -PHONY_TARGETS = $(srcdir)/buildmark.c +sbin_PROGRAMS = $(PROGRAM_NAME) +TARGETS = $(sbin_PROGRAMS) $(shared_build) $(other_targets) INSTALL_TARGETS = install-conf install-htdocs install-error install-icons \ - install-other install-cgi install-include install-suexec install-man \ - install-build + install-other install-cgi install-include install-suexec install-build \ + install-man DISTCLEAN_TARGETS = include/ap_config_auto.h include/ap_config_layout.h \ + include/apache_probes.h \ modules.c config.cache config.log config.status build/config_vars.mk \ - build/rules.mk docs/conf/httpd-std.conf -EXTRACLEAN_TARGETS = configure include/ap_config_auto.h.in generated_lists + build/rules.mk docs/conf/httpd.conf docs/conf/extra/*.conf shlibtool \ + build/pkg/pkginfo build/config_vars.sh bsd_converted +EXTRACLEAN_TARGETS = configure include/ap_config_auto.h.in generated_lists \ + httpd.spec include $(top_builddir)/build/rules.mk include $(top_srcdir)/build/program.mk install-conf: @echo Installing configuration files - @test -d $(sysconfdir) || $(MKINSTALLDIRS) $(sysconfdir) + @$(MKINSTALLDIRS) $(DESTDIR)$(sysconfdir) $(DESTDIR)$(sysconfdir)/extra + @$(MKINSTALLDIRS) $(DESTDIR)$(sysconfdir)/original/extra @cd $(top_srcdir)/docs/conf; \ for i in mime.types magic; do \ - $(INSTALL_DATA) $$i $(sysconfdir); \ + if test ! -f $(DESTDIR)$(sysconfdir)/$$i; then \ + $(INSTALL_DATA) $$i $(DESTDIR)$(sysconfdir); \ + fi; \ done; \ for j in $(top_srcdir)/docs/conf $(top_builddir)/docs/conf ; do \ - cd $$j ; \ - for i in *-std*.conf ssl.conf; do \ - [ -f $$i ] || continue; \ - ( \ - n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \ - if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \ - sed -e 's#@@ServerRoot@@#$(prefix)#g' \ - -e 's#@@Port@@#$(PORT)#g' \ - -e '/@@LoadModule@@/d' \ - < $$i; \ - else \ - sed -n -e '/@@LoadModule@@/q' \ - -e 's#@@ServerRoot@@#$(prefix)#g' \ - -e 's#@@Port@@#$(PORT)#g' \ - -e 'p' \ - < $$i; \ - for j in $(DSO_MODULES) "^EOL^"; do \ - if test "x$$j" = "xssl"; then \ - echo ""; \ - fi; \ - if test $$j != "^EOL^"; then \ - echo "LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ - fi; \ - if test "x$$j" = "xssl"; then \ - echo ""; \ - fi; \ - done; \ - sed -e '1,/@@LoadModule@@/d' \ - -e '/@@LoadModule@@/d' \ - -e 's#@@ServerRoot@@#$(prefix)#g' \ - -e 's#@@Port@@#$(PORT)#g' \ - < $$i; \ - fi \ - ) > $(sysconfdir)/$$i; \ - chmod 0644 $(sysconfdir)/$$i; \ - file=`echo $$i|sed s/-std//`; \ - if [ "$$file" = "httpd.conf" ]; then \ - file=`echo $$file|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \ - fi; \ - if test "$$file" != "$$i" && test ! -f $(sysconfdir)/$$file; then \ - $(INSTALL_DATA) $(sysconfdir)/$$i $(sysconfdir)/$$file; \ - fi; \ + cd $$j ; \ + for i in httpd.conf extra/*.conf; do \ + if [ -f $$i ] ; then \ + ( \ + n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \ + if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \ + sed -e 's#@@ServerRoot@@#$(prefix)#g' \ + -e 's#@@Port@@#$(PORT)#g' \ + -e 's#@@SSLPort@@#$(SSLPORT)#g' \ + -e '/@@LoadModule@@/d' \ + < $$i; \ + else \ + sed -n -e '/@@LoadModule@@/q' \ + -e 's#@@ServerRoot@@#$(prefix)#g' \ + -e 's#@@Port@@#$(PORT)#g' \ + -e 's#@@SSLPort@@#$(SSLPORT)#g' \ + -e 'p' \ + < $$i; \ + for j in $(DSO_MODULES) "^EOL^"; do \ + if test $$j != "^EOL^"; then \ + if echo ",$(ENABLED_DSO_MODULES),"|$(EGREP) ",$$j," > /dev/null ; then \ + loading_disabled=""; \ + else \ + loading_disabled="#"; \ + fi; \ + if test "$(LOAD_ALL_MODULES)" = "yes"; then \ + loading_disabled=""; \ + fi; \ + echo "$${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ + fi; \ + done; \ + sed -e '1,/@@LoadModule@@/d' \ + -e '/@@LoadModule@@/d' \ + -e 's#@@ServerRoot@@#$(prefix)#g' \ + -e 's#@@Port@@#$(PORT)#g' \ + -e 's#@@SSLPort@@#$(SSLPORT)#g' \ + < $$i; \ + fi \ + ) > $(DESTDIR)$(sysconfdir)/original/$$i; \ + chmod 0644 $(DESTDIR)$(sysconfdir)/original/$$i; \ + file=$$i; \ + if [ "$$i" = "httpd.conf" ]; then \ + file=`echo $$i|sed s/.*.conf/$(PROGRAM_NAME).conf/`; \ + fi; \ + if test ! -f $(DESTDIR)$(sysconfdir)/$$file; then \ + $(INSTALL_DATA) $(DESTDIR)$(sysconfdir)/original/$$i $(DESTDIR)$(sysconfdir)/$$file; \ + fi; \ + fi; \ + done ; \ done ; \ - done - @if test -f "$(builddir)/envvars-std"; then \ - cp -p envvars-std $(sbindir); \ - if test ! -f $(sbindir)/envvars; then \ - cp -p envvars-std $(sbindir)/envvars ; \ + if test -f "$(builddir)/envvars-std"; then \ + cp -p envvars-std $(DESTDIR)$(sbindir); \ + if test ! -f $(DESTDIR)$(sbindir)/envvars; then \ + cp -p envvars-std $(DESTDIR)$(sbindir)/envvars ; \ fi ; \ fi -install-build: - @echo Installing build system files - @test -d $(installbuilddir) || $(MKINSTALLDIRS) $(installbuilddir) - @cp build/*.mk $(installbuilddir); \ - sed 's#LIBTOOL = \(.*\)#LIBTOOL = $(SHELL) $(installbuilddir)/libtool $(LTFLAGS)#' \ - build/config_vars.mk > $(installbuilddir)/config_vars.mk; \ - cp $(top_srcdir)/build/instdso.sh $(installbuilddir); +# Create a sanitized config_vars.mk +build/config_vars.out: build/config_vars.mk + @$(SHELL) build/config_vars.sh < build/config_vars.mk > build/config_vars.out + +install-build: build/config_vars.out + @echo Installing build system files + @$(MKINSTALLDIRS) $(DESTDIR)$(installbuilddir) + @$(INSTALL_DATA) $(top_srcdir)/build/*.mk build/*.mk \ + $(DESTDIR)$(installbuilddir) + @$(INSTALL_PROGRAM) $(top_builddir)/config.nice \ + $(top_srcdir)/build/mkdir.sh \ + $(top_srcdir)/build/instdso.sh \ + $(DESTDIR)$(installbuilddir) + @$(INSTALL_DATA) build/config_vars.out $(DESTDIR)$(installbuilddir)/config_vars.mk + @rm build/config_vars.out htdocs-srcdir = $(top_srcdir)/docs/docroot -docs:: - mkdir -p ./docs/api - srclib/apr/build/scandoc.pl -i./build/default.pl -p./docs/api/ ./include/*.h +docs: + @if test -d $(top_srcdir)/docs/manual/build; then \ + cd $(top_srcdir)/docs/manual/build && ./build.sh all; \ + else \ + echo 'For details on generating the docs, please read:'; \ + echo ' http://httpd.apache.org/docs-project/docsformat.html'; \ + fi + +validate-xml: + @if test -d $(top_srcdir)/docs/manual/build; then \ + cd $(top_srcdir)/docs/manual/build && ./build.sh validate-xml; \ + else \ + echo 'For details on generating the docs, please read:'; \ + echo ' http://httpd.apache.org/docs-project/docsformat.html'; \ + fi -dox:: +dox: doxygen $(top_srcdir)/docs/doxygen.conf install-htdocs: - @echo Installing HTML documents - @test -d $(htdocsdir) || $(MKINSTALLDIRS) $(htdocsdir) - @test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(htdocsdir)) - @test -d $(manualdir) || $(MKINSTALLDIRS) $(manualdir) - @test -d $(top_srcdir)/docs/manual && (cd $(top_srcdir)/docs/manual && cp -rp * $(manualdir)) - @test "x$(htdocsdir)" != "x" && cd $(htdocsdir) && find . -name "CVS" -print | xargs rm -rf + -@if [ -d $(DESTDIR)$(htdocsdir) ]; then \ + echo "[PRESERVING EXISTING HTDOCS SUBDIR: $(DESTDIR)$(htdocsdir)]"; \ + else \ + echo Installing HTML documents ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(htdocsdir) ; \ + if test -d $(htdocs-srcdir) && test "x$(RSYNC)" != "x" && test -x $(RSYNC) ; then \ + $(RSYNC) --exclude .svn -rlpt --numeric-ids $(htdocs-srcdir)/ $(DESTDIR)$(htdocsdir)/; \ + else \ + test -d $(htdocs-srcdir) && (cd $(htdocs-srcdir) && cp -rp * $(DESTDIR)$(htdocsdir)) ; \ + cd $(DESTDIR)$(htdocsdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ + fi; \ + fi install-error: - @echo Installing error documents - @test -d $(errordir) || $(MKINSTALLDIRS) $(errordir) - @cd $(top_srcdir)/docs/error && cp -rp * $(errordir) - @test "x$(errordir)" != "x" && cd $(errordir) && find . -name "CVS" -print | xargs rm -rf + -@if [ -d $(DESTDIR)$(errordir) ]; then \ + echo "[PRESERVING EXISTING ERROR SUBDIR: $(DESTDIR)$(errordir)]"; \ + else \ + echo Installing error documents ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(errordir) ; \ + cd $(top_srcdir)/docs/error && cp -rp * $(DESTDIR)$(errordir) ; \ + test "x$(errordir)" != "x" && cd $(DESTDIR)$(errordir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ + fi install-icons: - @echo Installing icons - @test -d $(iconsdir) || $(MKINSTALLDIRS) $(iconsdir) - @cd $(top_srcdir)/docs/icons && cp -rp * $(iconsdir) - @test "x$(iconsdir)" != "x" && cd $(iconsdir) && find . -name "CVS" -print | xargs rm -rf + -@if [ -d $(DESTDIR)$(iconsdir) ]; then \ + echo "[PRESERVING EXISTING ICONS SUBDIR: $(DESTDIR)$(iconsdir)]"; \ + else \ + echo Installing icons ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(iconsdir) ; \ + cd $(top_srcdir)/docs/icons && cp -rp * $(DESTDIR)$(iconsdir) ; \ + test "x$(iconsdir)" != "x" && cd $(DESTDIR)$(iconsdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ + fi install-cgi: - @echo Installing CGIs - @test -d $(cgidir) || $(MKINSTALLDIRS) $(cgidir) - @cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(cgidir) - @test "x$(cgidir)" != "x" && cd $(cgidir) && find . -name "CVS" -print | xargs rm -rf + -@if [ -d $(DESTDIR)$(cgidir) ];then \ + echo "[PRESERVING EXISTING CGI SUBDIR: $(DESTDIR)$(cgidir)]"; \ + else \ + echo Installing CGIs ; \ + $(MKINSTALLDIRS) $(DESTDIR)$(cgidir) ; \ + cd $(top_srcdir)/docs/cgi-examples && cp -rp * $(DESTDIR)$(cgidir) ; \ + test "x$(cgidir)" != "x" && cd $(DESTDIR)$(cgidir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ + fi install-other: - @test -d $(logfiledir) || $(MKINSTALLDIRS) $(logfiledir) - @test -d $(runtimedir) || $(MKINSTALLDIRS) $(runtimedir) + @test -d $(DESTDIR)$(logfiledir) || $(MKINSTALLDIRS) $(DESTDIR)$(logfiledir) + @test -d $(DESTDIR)$(runtimedir) || $(MKINSTALLDIRS) $(DESTDIR)$(runtimedir) @for ext in dll x; do \ file=apachecore.$$ext; \ if test -f $$file; then \ - cp -p $$file $(libdir); \ + cp -p $$file $(DESTDIR)$(libdir); \ fi; \ done; \ file=httpd.dll; \ if test -f $$file; then \ - cp -p $$file $(bindir); \ + cp -p $$file $(DESTDIR)$(bindir); \ fi; +INSTALL_HEADERS = \ + include/*.h \ + $(srcdir)/include/*.h \ + $(srcdir)/os/$(OS_DIR)/os.h \ + $(srcdir)/modules/arch/unix/mod_unixd.h \ + $(srcdir)/modules/core/mod_so.h \ + $(srcdir)/modules/core/mod_watchdog.h \ + $(srcdir)/modules/cache/mod_cache.h \ + $(srcdir)/modules/cache/cache_common.h \ + $(srcdir)/modules/database/mod_dbd.h \ + $(srcdir)/modules/dav/main/mod_dav.h \ + $(srcdir)/modules/filters/mod_include.h \ + $(srcdir)/modules/filters/mod_xml2enc.h \ + $(srcdir)/modules/generators/mod_cgi.h \ + $(srcdir)/modules/generators/mod_status.h \ + $(srcdir)/modules/loggers/mod_log_config.h \ + $(srcdir)/modules/mappers/mod_rewrite.h \ + $(srcdir)/modules/proxy/mod_proxy.h \ + $(srcdir)/modules/proxy/mod_serf.h \ + $(srcdir)/modules/session/mod_session.h \ + $(srcdir)/modules/ssl/mod_ssl.h \ + $(srcdir)/modules/ssl/mod_ssl_openssl.h \ + $(srcdir)/os/$(OS_DIR)/*.h + install-include: @echo Installing header files - @test -d $(includedir) || $(MKINSTALLDIRS) $(includedir) - @cp -p include/*.h $(srcdir)/include/*.h $(includedir) - @cp -p $(srcdir)/os/$(OS_DIR)/os.h $(includedir) - @if test -f $(srcdir)/os/$(OS_DIR)/os-inline.c; then \ - cp -p $(srcdir)/os/$(OS_DIR)/os-inline.c $(includedir); \ - fi; - @cp -p $(srcdir)/server/mpm/$(MPM_SUBDIR_NAME)/*.h $(includedir) - @cp -p $(srcdir)/modules/dav/main/mod_dav.h $(includedir) - @cp -p $(srcdir)/modules/filters/mod_include.h $(includedir) - @cp -p $(srcdir)/modules/generators/mod_cgi.h $(includedir) - @cp -p $(srcdir)/modules/loggers/mod_log_config.h $(includedir) - @cp -p $(srcdir)/modules/http/mod_core.h $(includedir) - @cp -p $(srcdir)/modules/proxy/mod_proxy.h $(includedir) - @cp -p $(srcdir)/modules/ssl/*.h $(includedir) - @cp -p $(srcdir)/srclib/pcre/pcre*.h $(includedir) - @cp -p $(srcdir)/os/$(OS_DIR)/*.h $(includedir) - @chmod 644 $(includedir)/*.h + @$(MKINSTALLDIRS) $(DESTDIR)$(includedir) + @$(INSTALL_DATA) $(INSTALL_HEADERS) $(DESTDIR)$(includedir) install-man: - @echo Installing man pages - @test -d $(mandir) || $(MKINSTALLDIRS) $(mandir) - @test -d $(mandir)/man1 || $(MKINSTALLDIRS) $(mandir)/man1 - @test -d $(mandir)/man8 || $(MKINSTALLDIRS) $(mandir)/man8 - @cp -p $(top_srcdir)/docs/man/*.1 $(mandir)/man1 - @cp -p $(top_srcdir)/docs/man/*.8 $(mandir)/man8 - -install-suexec: + @echo Installing man pages and online manual + @test -d $(DESTDIR)$(mandir) || $(MKINSTALLDIRS) $(DESTDIR)$(mandir) + @test -d $(DESTDIR)$(mandir)/man1 || $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man1 + @test -d $(DESTDIR)$(mandir)/man8 || $(MKINSTALLDIRS) $(DESTDIR)$(mandir)/man8 + @test -d $(DESTDIR)$(manualdir) || $(MKINSTALLDIRS) $(DESTDIR)$(manualdir) + @cp -p $(top_srcdir)/docs/man/*.1 $(DESTDIR)$(mandir)/man1 + @cp -p $(top_srcdir)/docs/man/*.8 $(DESTDIR)$(mandir)/man8 + @if test "x$(RSYNC)" != "x" && test -x $(RSYNC) ; then \ + $(RSYNC) --exclude .svn -rlpt --numeric-ids $(top_srcdir)/docs/manual/ $(DESTDIR)$(manualdir)/; \ + else \ + cd $(top_srcdir)/docs/manual && cp -rp * $(DESTDIR)$(manualdir); \ + cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \ + fi + +install-suexec: install-suexec-binary install-suexec-$(INSTALL_SUEXEC) + +install-suexec-binary: @if test -f $(builddir)/support/suexec; then \ - test -d $(sbindir) || $(MKINSTALLDIRS) $(sbindir); \ - $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(sbindir); \ - chmod 4755 $(sbindir)/suexec; \ + test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir); \ + $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(DESTDIR)$(sbindir); \ + fi + +install-suexec-setuid: + @if test -f $(builddir)/support/suexec; then \ + chmod 4755 $(DESTDIR)$(sbindir)/suexec; \ + fi + +install-suexec-caps: + @if test -f $(builddir)/support/suexec; then \ + setcap 'cap_setuid,cap_setgid+pe' $(DESTDIR)$(sbindir)/suexec; \ fi suexec: @@ -184,4 +260,9 @@ suexec: x-local-distclean: @rm -rf autom4te.cache +update-log-tags update-log-msg-tags: + find server modules os -name \*.c|xargs perl \ + docs/log-message-tags/update-log-msg-tags + +# XXX: This looks awfully platform-specific [read: bad form and style] include $(top_srcdir)/os/os2/core.mk