brian       96/06/12 20:39:34

  Modified:    support   Makefile htdigest.c
  Removed:     support   change-passwd.readme inc2shtml.c unescape.c
  Log:
  Reviewed by:  Brian Behlendorf
  Submitted by: Mario Sergio, [EMAIL PROTECTED] + others
  
  made sure the Makefile included compilation lines for rotatelogs and 
resolvehosts.
  
  fixed a compile warning in htdigest.c
  
  removed various files that we were no longer supporting.
  
  Revision  Changes    Path
  1.8       +9 -9      apache/support/Makefile
  
  Index: Makefile
  ===================================================================
  RCS file: /export/home/cvs/apache/support/Makefile,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -C3 -r1.7 -r1.8
  *** Makefile  1996/05/08 05:07:50     1.7
  --- Makefile  1996/06/13 03:39:29     1.8
  ***************
  *** 18,24 ****
    .c.o: 
        $(CC) -c $(CFLAGS) $(INCLUDES) $<
    
  ! TARGETS=htpasswd htdigest unescape inc2shtml httpd_monitor rotatelogs
    
    all: $(TARGETS)
    
  --- 18,24 ----
    .c.o: 
        $(CC) -c $(CFLAGS) $(INCLUDES) $<
    
  ! TARGETS=htpasswd htdigest httpd_monitor rotatelogs logresolve
    
    all: $(TARGETS)
    
  ***************
  *** 50,57 ****
        make all CC=cc EXTRA_LIBS=-lcrypt_i
    
    
  ! tar: htpasswd unescape
  !     $(RM) htpasswd unescape
    
    htpasswd: htpasswd.c
        $(CC) $(CFLAGS) htpasswd.c -o htpasswd $(EXTRA_LIBS)
  --- 50,57 ----
        make all CC=cc EXTRA_LIBS=-lcrypt_i
    
    
  ! tar: htpasswd 
  !     $(RM) htpasswd
    
    htpasswd: htpasswd.c
        $(CC) $(CFLAGS) htpasswd.c -o htpasswd $(EXTRA_LIBS)
  ***************
  *** 59,72 ****
    htdigest: htdigest.c
        $(CC) $(CFLAGS) htdigest.c -o htdigest
    
  - unescape: unescape.c
  -     $(CC) $(CFLAGS) unescape.c -o unescape
  - 
  - inc2shtml: inc2shtml.c
  -     $(CC) $(CFLAGS) inc2shtml.c -o inc2shtml
  - 
    httpd_monitor: httpd_monitor.c
        $(CC) $(INCLUDES) $(CFLAGS) httpd_monitor.c -o httpd_monitor
    
    clean:
        rm -f $(TARGETS)
  --- 59,72 ----
    htdigest: htdigest.c
        $(CC) $(CFLAGS) htdigest.c -o htdigest
    
    httpd_monitor: httpd_monitor.c
        $(CC) $(INCLUDES) $(CFLAGS) httpd_monitor.c -o httpd_monitor
  + 
  + rotatelogs: rotatelogs.c
  +     $(CC) $(INCLUDES) $(CFLAGS) rotatelogs.c -o rotatelogs
  + 
  + logresolve: logresolve.c
  +     $(CC) $(INCLUDES) $(CFLAGS) logresolve.c -o logresolve
    
    clean:
        rm -f $(TARGETS)
  
  
  
  1.2       +2 -2      apache/support/htdigest.c
  
  Index: htdigest.c
  ===================================================================
  RCS file: /export/home/cvs/apache/support/htdigest.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** htdigest.c        1996/05/08 05:07:50     1.1
  --- htdigest.c        1996/06/13 03:39:31     1.2
  ***************
  *** 74,81 ****
        char string[MAX_STRING_LEN];
        unsigned int i;
    
  !     pw = strd(getpass("New password:"));
  !     if(strcmp(pw,getpass("Re-type new password:"))) {
            fprintf(stderr,"They don't match, sorry.\n");
            if(tn)
                unlink(tn);
  --- 74,81 ----
        char string[MAX_STRING_LEN];
        unsigned int i;
    
  !     pw = strd((char *) getpass("New password:"));
  !     if(strcmp(pw,(char *) getpass("Re-type new password:"))) {
            fprintf(stderr,"They don't match, sorry.\n");
            if(tn)
                unlink(tn);
  
  
  

Reply via email to