You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Marc Slemko <ma...@worldgate.com> on 1997/11/13 23:26:48 UTC

PAY ATTENTION: Re: cvs commit: apachen/src buildmark.c Makefile.tmpl .cvsignore

Run Configure after updating your source tree and before running make
again.  Otherwise the new buildmark.c will be removed by the old Makefile
and you will get confused.

On 13 Nov 1997 marc@hyperreal.org wrote:

> marc        97/11/13 14:25:46
> 
>   Modified:    src      Makefile.tmpl .cvsignore
>   Added:       src      buildmark.c
>   Log:
>   Fix up buildmark.c file so it doesn't need a shell command run
>   to create it.  This makes it possible to modify the NT makefile
>   (not done in this commit) to make it work properly.
>   
>   Reviewed by:	Ken Coar, Dean Gaudet, Martin Kraemer
>   
>   Revision  Changes    Path
>   1.71      +0 -2      apachen/src/Makefile.tmpl
>   
>   Index: Makefile.tmpl
>   ===================================================================
>   RCS file: /export/home/cvs/apachen/src/Makefile.tmpl,v
>   retrieving revision 1.70
>   retrieving revision 1.71
>   diff -u -r1.70 -r1.71
>   --- Makefile.tmpl	1997/11/05 12:48:13	1.70
>   +++ Makefile.tmpl	1997/11/13 22:25:44	1.71
>   @@ -27,8 +27,6 @@
>    	@false
>    
>    $(TARGET):  subdirs modules.o
>   -	rm -f buildmark.c
>   -	echo 'const char SERVER_BUILT[] = "'`date`'";' > buildmark.c
>    	$(CC) -c $(CFLAGS) buildmark.c
>    	$(CC) $(CFLAGS) $(LDFLAGS)  -o $(TARGET) buildmark.o $(OBJS) $(REGLIB) $(LIBS)
>    
>   
>   
>   
>   1.11      +0 -1      apachen/src/.cvsignore
>   
>   Index: .cvsignore
>   ===================================================================
>   RCS file: /export/home/cvs/apachen/src/.cvsignore,v
>   retrieving revision 1.10
>   retrieving revision 1.11
>   diff -u -r1.10 -r1.11
>   --- .cvsignore	1997/11/05 12:48:10	1.10
>   +++ .cvsignore	1997/11/13 22:25:45	1.11
>   @@ -6,7 +6,6 @@
>    *.plg
>    ApacheD
>    ApacheR
>   -buildmark.c
>    Configuration
>    Configuration.default
>    Configuration.lint
>   
>   
>   
>   1.1                  apachen/src/buildmark.c
>   
>   Index: buildmark.c
>   ===================================================================
>   #if defined(__DATE__) && defined(__TIME__)
>   const char SERVER_BUILT[] = __DATE__ " " __TIME__;
>   #else
>   const char SERVER_BUILT[] = "unknown";
>   #endif
>   
>   
>   
>