You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by rb...@locus.apache.org on 2000/04/27 06:21:21 UTC

cvs commit: apache-2.0/src/support Makefile.in

rbb         00/04/26 21:21:21

  Modified:    src      CHANGES Makefile.in configure.in
  Added:       src/support Makefile.in
  Log:
  Add the support directory back into the build process.
  
  Revision  Changes    Path
  1.82      +3 -0      apache-2.0/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/CHANGES,v
  retrieving revision 1.81
  retrieving revision 1.82
  diff -u -r1.81 -r1.82
  --- CHANGES	2000/04/25 23:20:36	1.81
  +++ CHANGES	2000/04/27 04:21:19	1.82
  @@ -1,4 +1,7 @@
   Changes with Apache 2.0a3-dev
  +  *) Support directory is being compiled when the server is built
  +     [Ryan Bloom]
  +
     *) The configure option --with-program-name has been added to allow
        developers to rename the executable at configure time.  This also
        changes the name of the config files to match the executable's name.
  
  
  
  1.11      +1 -1      apache-2.0/src/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/Makefile.in,v
  retrieving revision 1.10
  retrieving revision 1.11
  diff -u -r1.10 -r1.11
  --- Makefile.in	2000/04/26 21:08:26	1.10
  +++ Makefile.in	2000/04/27 04:21:20	1.11
  @@ -4,7 +4,7 @@
   srcdir    = @srcdir@
   VPATH     = @srcdir@
   
  -SUBDIRS = ap lib main modules os $(REGEX_DIR)
  +SUBDIRS = ap lib main modules os support $(REGEX_DIR)
   
   PROGRAM_NAME         = $(progname)
   PROGRAM_SOURCES      = modules.c buildmark.c
  
  
  
  1.37      +2 -1      apache-2.0/src/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apache-2.0/src/configure.in,v
  retrieving revision 1.36
  retrieving revision 1.37
  diff -u -r1.36 -r1.37
  --- configure.in	2000/04/26 21:08:26	1.36
  +++ configure.in	2000/04/27 04:21:20	1.37
  @@ -169,7 +169,8 @@
     progname="httpd"] )
   
   APACHE_FAST_OUTPUT(Makefile ap/Makefile lib/Makefile main/Makefile
  -            modules/Makefile os/Makefile)
  +            modules/Makefile os/Makefile support/Makefile)
  +
   APACHE_FAST_GENERATE
   	
   dnl ## Build modules.c
  
  
  
  1.1                  apache-2.0/src/support/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  
  DEPTH     = ..
  top_srcdir = @top_srcdir@
  srcdir    = @srcdir@
  VPATH     = @srcdir@
  
  PROGRAMS = htpasswd htdigest rotatelogs logresolve ab
  targets  = $(PROGRAMS)
  
  PROGRAM_LDADD        = $(EXTRA_LDFLAGS) $(PROGRAM_DEPENDENCIES) $(EXTRA_LIBS)
  PROGRAM_DEPENDENCIES = ../lib/apr/$(LIBPRE)apr.a \
  	../ap/libap.la
  
  include $(top_srcdir)/build/rules.mk
  include $(top_srcdir)/build/program.mk
  
  htpasswd_OBJECTS = htpasswd.lo
  htpasswd: $(htpasswd_OBJECTS)
  	$(LINK) $(htpasswd_OBJECTS) $(PROGRAM_LDADD)
  
  htdigest_OBJECTS = htdigest.lo
  htdigest: $(htdigest_OBJECTS)
  	$(LINK) $(htdigest_OBJECTS) $(PROGRAM_LDADD)
  
  rotatelogs_OBJECTS = rotatelogs.lo
  rotatelogs: $(rotatelogs_OBJECTS)
  	$(LINK) $(rotatelogs_OBJECTS) $(PROGRAM_LDADD)
  
  logresolve_OBJECTS = logresolve.lo
  logresolve: $(logresolve_OBJECTS)
  	$(LINK) $(logresolve_OBJECTS) $(PROGRAM_LDADD)
  
  ab_OBJECTS = ab.lo
  ab: $(ab_OBJECTS)
  	$(LINK) $(ab_OBJECTS) $(PROGRAM_LDADD)