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...@hyperreal.org on 1999/05/18 15:40:24 UTC

cvs commit: apache-apr/apr/time/beos Makefile.in

rbb         99/05/18 06:40:24

  Modified:    apr      configure.in
  Added:       apr/file_io/beos Makefile.in
               apr/locks/beos Makefile.in
               apr/misc/beos Makefile.in
               apr/network_io/beos Makefile.in
               apr/threadproc/beos Makefile.in
               apr/time/beos Makefile.in
  Log:
  Make BeOS port use autoconf.  This brings the BeOS port to the same level as
  the UNIX port.
  Submitted by:  David Reid
  
  Revision  Changes    Path
  1.12      +5 -0      apache-apr/apr/configure.in
  
  Index: configure.in
  ===================================================================
  RCS file: /home/cvs/apache-apr/apr/configure.in,v
  retrieving revision 1.11
  retrieving revision 1.12
  diff -u -r1.11 -r1.12
  --- configure.in	1999/05/17 13:11:48	1.11
  +++ configure.in	1999/05/18 13:40:09	1.12
  @@ -68,6 +68,11 @@
       OSDIR="os2"
   fi
   
  +if (test "$SYS_SW" = "BeOS"); then
  +    PLATFORM="-DBEOS"
  +    OSDIR="beos"
  +fi
  +
   dnl Checks for header files.
   AC_HEADER_STDC
   
  
  
  
  1.1                  apache-apr/apr/file_io/beos/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  #CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  #LIBS=$(EXTRA_LIBS) $(LIBS1)
  #INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES)
  #LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS)
  
  CC=@CC@
  RANLIB=@RANLIB@
  CFLAGS=@PLATFORM@ @CFLAGS@ @OPTIM@
  LDLIBS=@LDLIBS@
  LDFLAGS=@LDFLAGS@ $(LDLIBS)
  INCDIR=../../include
  INCDIR1=../../../include
  INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I.
  
  LIB=../libfile.a
  
  OBJS=dir.o \
  	fileacc.o \
  	filedup.o \
  	filestat.o \
  	open.o \
  	pipe.o \
  	readwrite.o \
  	seek.o
  
  .c.o:
  	$(CC) $(CFLAGS) -c $(INCLUDES) $<
  
  all: $(LIB)
  
  clean:
  	$(RM) -f *.o *.a *.so
  
  distclean: clean
  	-$(RM) -f Makefile
  
  $(OBJS): Makefile
  
  $(LIB): $(OBJS)
  	$(RM) -f $@
  	$(AR) cr $@ $(OBJS)
  	$(RANLIB) $@
  
  #
  # We really don't expect end users to use this rule.  It works only with
  # gcc, and rebuilds Makefile.tmpl.  You have to re-run Configure after
  # using it.
  #
  depend:
  	cp Makefile.in Makefile.in.bak \
  	    && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  	    && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  	    && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  	           -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
  		> Makefile.in \
  	    && rm Makefile.new
  
  # DO NOT REMOVE
  dir.o: dir.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h \
   $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
   $(INCDIR)/hsregex.h
  fileacc.o: fileacc.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h
  filedup.o: filedup.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h
  filestat.o: filestat.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h
  open.o: open.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h \
   $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
   $(INCDIR)/hsregex.h
  pipe.o: pipe.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h
  readwrite.o: readwrite.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h
  seek.o: seek.c fileio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_file_io.h
  
  
  
  1.1                  apache-apr/apr/locks/beos/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  #CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  #LIBS=$(EXTRA_LIBS) $(LIBS1)
  #INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES)
  #LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS)
  
  CC=@CC@
  RANLIB=@RANLIB@
  CFLAGS=@PLATFORM@ @CFLAGS@ @OPTIM@
  LDLIBS=@LDLIBS@
  LDFLAGS=@LDFLAGS@ $(LDLIBS)
  INCDIR=../../include
  INCDIR1=../../../include
  INCDIR2=../../file_io/unix
  INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I$(INCDIR2) -I.
  
  LIB=../liblock.a
  
  OBJS=locks.o \
  	crossproc.o \
  	intraproc.o \
  
  .c.o:
  	$(CC) $(CFLAGS) -c $(INCLUDES) $<
  
  all: $(LIB)
  
  clean:
  	$(RM) -f *.o *.a *.so
  
  distclean: clean
  	-$(RM) -f Makefile
  
  $(OBJS): Makefile
  
  $(LIB): $(OBJS)
  	$(RM) -f $@
  	$(AR) cr $@ $(OBJS)
  	$(RANLIB) $@
  
  #
  # We really don't expect end users to use this rule.  It works only with
  # gcc, and rebuilds Makefile.tmpl.  You have to re-run Configure after
  # using it.
  #
  depend:
  	cp Makefile.in Makefile.in.bak \
  	    && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  	    && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  	    && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  	           -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
  		> Makefile.in \
  	    && rm Makefile.new
  
  # DO NOT REMOVE
  crossproc.o: crossproc.c ../../../include/apr_lock.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h locks.h \
   ../../../include/apr_file_io.h
  intraproc.o: intraproc.c ../../../include/apr_lock.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h locks.h \
   ../../../include/apr_file_io.h
  locks.o: locks.c ../../../include/apr_lock.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h locks.h \
   ../../../include/apr_file_io.h
  
  
  
  1.1                  apache-apr/apr/misc/beos/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  #CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  #LIBS=$(EXTRA_LIBS) $(LIBS1)
  #INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES)
  #LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS)
  
  CC=@CC@
  RANLIB=@RANLIB@
  CFLAGS=@PLATFORM@ @CFLAGS@ @OPTIM@
  LDLIBS=@LDLIBS@
  LDFLAGS=@LDFLAGS@ $(LDLIBS)
  INCDIR=../../include
  INCDIR1=../../../include
  INCDIR2=../../file_io/unix
  INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I$(INCDIR2) -I.
  
  LIB=../libmisc.a
  
  OBJS=start.o \
  
  .c.o:
  	$(CC) $(CFLAGS) -c $(INCLUDES) $<
  
  all: $(LIB)
  
  clean:
  	$(RM) -f *.o *.a *.so
  
  distclean: clean
  	-$(RM) -f Makefile
  
  $(OBJS): Makefile
  
  $(LIB): $(OBJS)
  	$(RM) -f $@
  	$(AR) cr $@ $(OBJS)
  	$(RANLIB) $@
  
  #
  # We really don't expect end users to use this rule.  It works only with
  # gcc, and rebuilds Makefile.tmpl.  You have to re-run Configure after
  # using it.
  #
  depend:
  	cp Makefile.in Makefile.in.bak \
  	    && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  	    && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  	    && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  	           -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
  		> Makefile.in \
  	    && rm Makefile.new
  
  # DO NOT REMOVE
  start.o: start.c $(INCDIR)/apr_config.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h \
   $(INCDIR)/apr_pools.h $(INCDIR)/apr_lib.h \
   $(INCDIR)/hsregex.h
  
  
  
  1.1                  apache-apr/apr/network_io/beos/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  #CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  #LIBS=$(EXTRA_LIBS) $(LIBS1)
  #INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES)
  #LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS)
  
  CC=@CC@
  RANLIB=@RANLIB@
  CFLAGS=@PLATFORM@ @CFLAGS@ @OPTIM@
  LDLIBS=@LDLIBS@
  LDFLAGS=@LDFLAGS@ $(LDLIBS)
  INCDIR=../../include
  INCDIR1=../../../include
  INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I.
  
  LIB=../libnetwork.a
  
  OBJS=poll.o \
  	sendrecv.o \
  	sockets.o \
  	sockopt.o \
  
  .c.o:
  	$(CC) $(CFLAGS) -c $(INCLUDES) $<
  
  all: $(LIB)
  
  clean:
  	$(RM) -f *.o *.a *.so
  
  distclean: clean
  	-$(RM) -f Makefile
  
  $(OBJS): Makefile
  
  $(LIB): $(OBJS)
  	$(RM) -f $@
  	$(AR) cr $@ $(OBJS)
  	$(RANLIB) $@
  
  #
  # We really don't expect end users to use this rule.  It works only with
  # gcc, and rebuilds Makefile.tmpl.  You have to re-run Configure after
  # using it.
  #
  depend:
  	cp Makefile.in Makefile.in.bak \
  	    && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  	    && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  	    && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  	           -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
  		> Makefile.in \
  	    && rm Makefile.new
  
  # DO NOT REMOVE
  poll.o: poll.c networkio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_network_io.h
  sendrecv.o: sendrecv.c networkio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_network_io.h
  socket.o: socket.c
  sockets.o: sockets.c networkio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_network_io.h
  sockopt.o: sockopt.c networkio.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../../include/apr_network_io.h
  
  
  
  1.1                  apache-apr/apr/threadproc/beos/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  #CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  #LIBS=$(EXTRA_LIBS) $(LIBS1)
  #INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES)
  #LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS)
  
  CC=@CC@
  RANLIB=@RANLIB@
  CFLAGS=@PLATFORM@ @CFLAGS@ @OPTIM@
  LDLIBS=@LDLIBS@
  LDFLAGS=@LDFLAGS@ $(LDLIBS)
  INCDIR=../../include
  INCDIR1=../../../include
  INCDIR2=../../file_io/@OSDIR@
  INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I$(INCDIR2) -I.
  
  LIB=../libthreadproc.a
  
  OBJS=proc.o \
  	thread.o \
  	threadcancel.o \
  	threadpriv.o \
  	signals.o
  
  .c.o:
  	$(CC) $(CFLAGS) -c $(INCLUDES) $<
  
  all: $(LIB)
  
  clean:
  	$(RM) -f *.o *.a *.so
  
  distclean: clean
  	-$(RM) -f Makefile
  
  $(OBJS): Makefile
  
  $(LIB): $(OBJS)
  	$(RM) -f $@
  	$(AR) cr $@ $(OBJS)
  	$(RANLIB) $@
  
  #
  # We really don't expect end users to use this rule.  It works only with
  # gcc, and rebuilds Makefile.tmpl.  You have to re-run Configure after
  # using it.
  #
  depend:
  	cp Makefile.in Makefile.in.bak \
  	    && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  	    && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  	    && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  	           -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
  		> Makefile.in \
  	    && rm Makefile.new
  
  # DO NOT REMOVE
  proc.o: proc.c ../../file_io/beos/fileio.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h \
   ../../../include/apr_file_io.h threadproc.h \
   ../../../include/apr_thread_proc.h
  signals.o: signals.c threadproc.h ../../../include/apr_thread_proc.h \
   ../../../include/apr_file_io.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h ../../file_io/beos/fileio.h
  thread.o: thread.c threadproc.h ../../../include/apr_thread_proc.h \
   ../../../include/apr_file_io.h ../../../include/apr_general.h \
   ../../../include/apr_errno.h
  threadcancel.o: threadcancel.c threadproc.h \
   ../../../include/apr_thread_proc.h ../../../include/apr_file_io.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h
  threadpriv.o: threadpriv.c threadproc.h \
   ../../../include/apr_thread_proc.h ../../../include/apr_file_io.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h
  
  
  
  1.1                  apache-apr/apr/time/beos/Makefile.in
  
  Index: Makefile.in
  ===================================================================
  #CFLAGS=$(OPTIM) $(CFLAGS1) $(EXTRA_CFLAGS)
  #LIBS=$(EXTRA_LIBS) $(LIBS1)
  #INCLUDES=$(INCLUDES1) $(INCLUDES0) $(EXTRA_INCLUDES)
  #LDFLAGS=$(LDFLAGS1) $(EXTRA_LDFLAGS)
  
  CC=@CC@
  RANLIB=@RANLIB@
  CFLAGS=@PLATFORM@ @CFLAGS@ @OPTIM@
  LDLIBS=@LDLIBS@
  LDFLAGS=@LDFLAGS@ $(LDLIBS)
  INCDIR=../../include
  INCDIR1=../../../include
  INCLUDES=-I$(INCDIR) -I$(INCDIR1) -I.
  
  LIB=../libtime.a
  
  OBJS=time.o \
  	access.o
  
  .c.o:
  	$(CC) $(CFLAGS) -c $(INCLUDES) $<
  
  all: $(LIB)
  
  clean:
  	$(RM) -f *.o *.a *.so
  
  distclean: clean
  	-$(RM) -f Makefile
  
  $(OBJS): Makefile
  
  $(LIB): $(OBJS)
  	$(RM) -f $@
  	$(AR) cr $@ $(OBJS)
  	$(RANLIB) $@
  
  #
  # We really don't expect end users to use this rule.  It works only with
  # gcc, and rebuilds Makefile.tmpl.  You have to re-run Configure after
  # using it.
  #
  depend:
  	cp Makefile.in Makefile.in.bak \
  	    && sed -ne '1,/^# DO NOT REMOVE/p' Makefile.in > Makefile.new \
  	    && gcc -MM $(INCLUDES) $(CFLAGS) *.c >> Makefile.new \
  	    && sed -e '1,$$s: $(INCDIR)/: $$(INCDIR)/:g' \
  	           -e '1,$$s: $(OSDIR)/: $$(OSDIR)/:g' Makefile.new \
  		> Makefile.in \
  	    && rm Makefile.new
  
  # DO NOT REMOVE
  access.o: access.c atime.h ../../../include/apr_time.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h \
   $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
   $(INCDIR)/hsregex.h
  time.o: time.c atime.h ../../../include/apr_time.h \
   ../../../include/apr_general.h ../../../include/apr_errno.h \
   $(INCDIR)/apr_lib.h $(INCDIR)/apr_config.h \
   $(INCDIR)/hsregex.h