rse 99/01/01 13:30:20
Modified: src CHANGES . Makefile.tmpl Log: Fix installation procedure: Now that os-inline.c is actually used (a recently fixed bug prevented this) we need to also install os-include.c in addition to os.h into the PREFIX/include/ location or building of module DSOs with APXS fails. Revision Changes Path 1.1189 +5 -0 apache-1.3/src/CHANGES Index: CHANGES =================================================================== RCS file: /home/cvs/apache-1.3/src/CHANGES,v retrieving revision 1.1188 retrieving revision 1.1189 diff -u -r1.1188 -r1.1189 --- CHANGES 1999/01/01 20:27:45 1.1188 +++ CHANGES 1999/01/01 21:30:18 1.1189 @@ -1,4 +1,9 @@ Changes with Apache 1.3.4 + + *) Fix installation procedure: Now that os-inline.c is actually used (a + recently fixed bug prevented this) we need to also install os-include.c + in addition to os.h into the PREFIX/include/ location or building of + module DSOs with APXS fails. [Ralf S. Engelschall] *) Added MODULE_MAGIC_COOKIE as the first field in a module structure to allow us to distinguish between a garbled DSO (or even a file which isn't 1.60 +3 -1 apache-1.3/Makefile.tmpl Index: Makefile.tmpl =================================================================== RCS file: /home/cvs/apache-1.3/Makefile.tmpl,v retrieving revision 1.59 retrieving revision 1.60 diff -u -r1.59 -r1.60 --- Makefile.tmpl 1999/01/01 20:48:15 1.59 +++ Makefile.tmpl 1999/01/01 21:30:19 1.60 @@ -348,7 +348,9 @@ $(CP) $(TOP)/$(SRC)/include/*.h $(root)$(includedir)/ @osdir=`grep '^OSDIR=' $(TOP)/$(SRC)/Makefile.config | sed -e 's:^OSDIR=.*/os:os:'`; \ echo "$(CP) $(TOP)/$(SRC)/$${osdir}/os.h $(root)$(includedir)/"; \ - $(CP) $(TOP)/$(SRC)/$${osdir}/os.h $(root)$(includedir)/ + $(CP) $(TOP)/$(SRC)/$${osdir}/os.h $(root)$(includedir)/; \ + echo "$(CP) $(TOP)/$(SRC)/$${osdir}/os-inline.c $(root)$(includedir)/"; \ + $(CP) $(TOP)/$(SRC)/$${osdir}/os-inline.c $(root)$(includedir)/ chmod 644 $(root)$(includedir)/*.h @echo "<=== [include]"