cvs commit: apache/src/modules Makefile

1997-06-04 Thread Dean Gaudet
dgaudet 97/06/04 15:34:36

  Removed: src/modules  Makefile
  Log:
  How'd this get back in??


cvs commit: apache/src/modules Makefile

1997-06-04 Thread Ben Laurie
ben 97/06/04 00:03:40

  Modified:src/modules  Makefile
  Added:   . KEYS
  Log:
  Add PGP public keys file.
  
  Revision  ChangesPath
  1.10  +2 -8  apache/src/modules/Attic/Makefile
  
  Index: Makefile
  ===
  RCS file: /export/home/cvs/apache/src/modules/Attic/Makefile,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -C3 -r1.9 -r1.10
  *** Makefile  1997/04/26 20:20:07 1.9
  --- Makefile  1997/06/04 07:03:40 1.10
  ***
  *** 7,14 
SHELL=/bin/sh
INCLUDES2=
MOD_CFLAGS=$(INCLUDES2) $(AUX_CFLAGS)
  ! MODULES=proxy example 
  ! CLEANERS=proxy_clean example_clean 

default: $(MODULES)
@echo "Done building module subdirectories"
  --- 7,14 
SHELL=/bin/sh
INCLUDES2=
MOD_CFLAGS=$(INCLUDES2) $(AUX_CFLAGS)
  ! MODULES=
  ! CLEANERS=

default: $(MODULES)
@echo "Done building module subdirectories"
  ***
  *** 20,29 
(cd $@; $(MAKE) CC=$(CC) AUX_CFLAGS='$(MOD_CFLAGS)' RANLIB='$(RANLIB)')

ForceMe:
  - 
  - proxy_clean:
  - (cd proxy; $(MAKE) clean)
  - 
  - example_clean:
  - (cd example; $(MAKE) clean)

  --- 20,23 
  
  
  


cvs commit: apache/src/modules Makefile

1997-04-26 Thread Ben Laurie
ben 97/04/26 13:20:07

  Modified:src   conf.h http_main.h
   src/modules  Makefile
  Log:
  Fix multiply defined signal().
  
  Reviewed by: Randy, Dean.
  
  Revision  ChangesPath
  1.94  +14 -0 apache/src/conf.h
  
  Index: conf.h
  ===
  RCS file: /export/home/cvs/apache/src/conf.h,v
  retrieving revision 1.93
  retrieving revision 1.94
  diff -C3 -r1.93 -r1.94
  *** conf.h1997/04/15 20:00:21 1.93
  --- conf.h1997/04/26 20:20:06 1.94
  ***
  *** 639,644 
  --- 639,658 
#define INADDR_NONE ((unsigned long) -1)
#endif

  + /*
  +  * Replace signal function with sigaction equivalent
  +  */
  + #ifndef NO_USE_SIGACTION
  + typedef void Sigfunc(int);
  + 
  + #if defined(SIG_IGN) && !defined(SIG_ERR)
  + #define SIG_ERR ((Sigfunc *)-1)
  + #endif
  + 
  + #define signal(s,f) ap_signal(s,f)
  + Sigfunc *signal(int signo, Sigfunc *func);
  + #endif
  + 
/* Finding offsets of elements within structures.
 * Taken from the X code... they've sweated portability of this stuff
 * so we don't have to.  Sigh...
  
  
  
  1.10  +0 -13 apache/src/http_main.h
  
  Index: http_main.h
  ===
  RCS file: /export/home/cvs/apache/src/http_main.h,v
  retrieving revision 1.9
  retrieving revision 1.10
  diff -C3 -r1.9 -r1.10
  *** http_main.h   1997/04/21 20:29:07 1.9
  --- http_main.h   1997/04/26 20:20:06 1.10
  ***
  *** 97,112 
int count_busy_servers ();
int count_idle_servers ();

  - /*
  -  * Replace signal function with sigaction equivalent
  -  */
  - #ifndef NO_USE_SIGACTION
  - typedef void Sigfunc(int);
  - 
  - #if defined(SIG_IGN) && !defined(SIG_ERR)
  - #define SIG_ERR ((Sigfunc *)-1)
  - #endif
  - 
  - Sigfunc *signal(int signo, Sigfunc *func);
  - #endif
  - 
  --- 97,99 
  
  
  
  1.9   +24 -65apache/src/modules/Attic/Makefile
  
  
  
  


cvs commit: apache/src/modules Makefile

1997-03-20 Thread Roy Fielding
fielding97/03/20 04:20:48

  Removed: src/modules  Makefile
  Log:
  Now generated by Configure


cvs commit: apache/src/modules Makefile

1997-02-21 Thread Randy Terbush
randy   97/02/21 16:15:04

  Modified:src/modules  Makefile
  Log:
  Quote variables
  
  Revision  ChangesPath
  1.7   +1 -1  apache/src/modules/Makefile
  
  Index: Makefile
  ===
  RCS file: /export/home/cvs/apache/src/modules/Makefile,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -C3 -r1.6 -r1.7
  *** Makefile  1997/01/16 17:20:32 1.6
  --- Makefile  1997/02/22 00:15:02 1.7
  ***
  *** 58,64 
default:
(for dir in $(MODULES); do \
cd $$dir; \
  ! $(MAKE) CC=$(CC) AUX_CFLAGS="$(AUX_CFLAGS)" RANLIB=$(RANLIB); \
cd ..; \
done)

  --- 58,64 
default:
(for dir in $(MODULES); do \
cd $$dir; \
  ! $(MAKE) CC=$(CC) AUX_CFLAGS="$(AUX_CFLAGS)" RANLIB="$(RANLIB)"; 
\
cd ..; \
done)

  
  
  


cvs commit: apache/src/modules Makefile

1997-01-16 Thread Chuck Murcko
chuck   97/01/16 09:20:34

  Modified:src/modules  Makefile
  Log:
  Submitted by: [EMAIL PROTECTED]
  Fix bug for using multiple subdirectories under modules. I also added the
  bug fix to the clean production, since it would also be a problem there.
  
  Revision  ChangesPath
  1.6   +2 -0  apache/src/modules/Makefile
  
  Index: Makefile
  ===
  RCS file: /export/home/cvs/apache/src/modules/Makefile,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -C3 -r1.5 -r1.6
  *** Makefile  1997/01/01 18:19:49 1.5
  --- Makefile  1997/01/16 17:20:32 1.6
  ***
  *** 59,68 
  --- 59,70 
(for dir in $(MODULES); do \
cd $$dir; \
$(MAKE) CC=$(CC) AUX_CFLAGS="$(AUX_CFLAGS)" RANLIB=$(RANLIB); \
  + cd ..; \
done)

clean:  
(for dir in $(MODULES); do \
cd $$dir; $(MAKE) clean; \
  + cd ..; \
done)

  
  
  


cvs commit: apache/src/modules Makefile

1996-10-20 Thread Chuck Murcko
chuck   96/10/20 16:59:43

  Modified:src/modules  Makefile
  Log:
  lose $Id$
  
  Revision  ChangesPath
  1.3   +0 -2  apache/src/modules/Makefile
  
  Index: Makefile
  ===
  RCS file: /export/home/cvs/apache/src/modules/Makefile,v
  retrieving revision 1.2
  retrieving revision 1.3
  diff -C3 -r1.2 -r1.3
  *** Makefile  1996/10/09 17:12:45 1.2
  --- Makefile  1996/10/20 23:59:42 1.3
  ***
  *** 50,57 
# 
# simple Makefile for modules in src/modules
# 
  - # $Id: Makefile,v 1.2 1996/10/09 17:12:45 chuck Exp $
  - #

SHELL = /bin/sh

  --- 50,55 
  
  
  


cvs commit: apache/src/modules Makefile

1996-10-09 Thread Chuck Murcko
chuck   96/10/09 10:12:47

  Modified:src/modules  Makefile
  Log:
  Fix errant ';' in loops
  
  Revision  ChangesPath
  1.2   +3 -3  apache/src/modules/Makefile
  
  Index: Makefile
  ===
  RCS file: /export/home/cvs/apache/src/modules/Makefile,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** Makefile  1996/10/09 14:51:48 1.1
  --- Makefile  1996/10/09 17:12:45 1.2
  ***
  *** 50,56 
# 
# simple Makefile for modules in src/modules
# 
  ! # $Id: Makefile,v 1.1 1996/10/09 14:51:48 chuck Exp $
#

SHELL = /bin/sh
  --- 50,56 
# 
# simple Makefile for modules in src/modules
# 
  ! # $Id: Makefile,v 1.2 1996/10/09 17:12:45 chuck Exp $
#

SHELL = /bin/sh
  ***
  *** 58,70 
MODULES=proxy

default:
  ! (for dir in $(MODULES); do; \
cd $$dir; \
$(MAKE) CC=$(CC) AUX_CFLAGS="$(AUX_CFLAGS)" RANLIB=$(RANLIB); \
done)

clean:  
  ! (for dir in $(MODULES); do; \
cd $$dir; $(MAKE) clean; \
done)

  --- 58,70 
MODULES=proxy

default:
  ! (for dir in $(MODULES); do \
cd $$dir; \
$(MAKE) CC=$(CC) AUX_CFLAGS="$(AUX_CFLAGS)" RANLIB=$(RANLIB); \
done)

clean:  
  ! (for dir in $(MODULES); do \
cd $$dir; $(MAKE) clean; \
done)

  
  
  


cvs commit: apache/src/modules Makefile

1996-10-09 Thread Chuck Murcko
chuck   96/10/09 07:51:49

  Modified:src   Makefile.tmpl
  Added:   src/modules  Makefile
  Log:
  Add intermediate simple Makefile in src/modules to simplfy module
  migration there.
  
  Revision  ChangesPath
  1.29  +3 -3  apache/src/Makefile.tmpl
  
  Index: Makefile.tmpl
  ===
  RCS file: /export/home/cvs/apache/src/Makefile.tmpl,v
  retrieving revision 1.28
  retrieving revision 1.29
  diff -C3 -r1.28 -r1.29
  *** Makefile.tmpl 1996/10/01 21:53:41 1.28
  --- Makefile.tmpl 1996/10/09 14:51:21 1.29
  ***
  *** 1,4 
  ! # $Id: Makefile.tmpl,v 1.28 1996/10/01 21:53:41 chuck Exp $
# Apache makefile template (well, suffix).

# This is combined with the information in the "Configuration" file
  --- 1,4 
  ! # $Id: Makefile.tmpl,v 1.29 1996/10/09 14:51:21 chuck Exp $
# Apache makefile template (well, suffix).

# This is combined with the information in the "Configuration" file
  ***
  *** 32,44 
(cd regex; make lib CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))

modules/proxy/libproxy.a:
  ! (cd modules/proxy; \
make CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))

clean:
rm -f httpd $(OBJS) *pure*
cd regex; make clean
  ! cd modules/proxy; make clean

dist.tar: 
# Assure a semi-sensible configuration going out...
  --- 32,44 
(cd regex; make lib CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))

modules/proxy/libproxy.a:
  ! (cd modules; \
make CC=$(CC) AUX_CFLAGS="$(CFLAGS)" RANLIB=$(RANLIB))

clean:
rm -f httpd $(OBJS) *pure*
cd regex; make clean
  ! cd modules; make clean

dist.tar: 
# Assure a semi-sensible configuration going out...