*** Makefile 1993/07/29 14:43:17 1.38 --- Makefile 1995/02/23 03:53:10 *************** *** 3,9 **** # For copying and distribution information, see the file # "mit-copying.h". # ! # $Id: Makefile,v 1.38 1993/07/29 14:43:17 jik Exp $ # # Uncomment this if your system claims to be mostly or completely POSIX- --- 3,9 ---- # For copying and distribution information, see the file # "mit-copying.h". # ! # $Id: Makefile,v 1.40 1995/02/23 03:53:08 jik Exp $ # # Uncomment this if your system claims to be mostly or completely POSIX- *************** *** 11,17 **** POSIX_DEFINES= -DPOSIX # # Uncomment this if you're on a mostly SYSV system. ! #SYSV_DEFINES= -DSYSV # # If you need to add any extra #define's, add them here. EXTRA_DEFINES= --- 11,17 ---- POSIX_DEFINES= -DPOSIX # # Uncomment this if you're on a mostly SYSV system. ! SYSV_DEFINES= -DSYSV # # If you need to add any extra #define's, add them here. EXTRA_DEFINES= *************** *** 35,41 **** # Change these as needed. CC= cc DEPEND= /usr/bin/X11/makedepend ! COMPILE_ET= compile_et LINT= lint # Command used to create the symlink from purge to expunge LN= ln --- 35,41 ---- # Change these as needed. CC= cc DEPEND= /usr/bin/X11/makedepend ! COMPILE_ET= com_err/compile_et LINT= lint # Command used to create the symlink from purge to expunge LN= ln *************** *** 91,98 **** # ETLDFLAGS is a -L flag pointing to the directory where the et # library is stored. # ! # ETINCS= ! # ETLDFLAGS= ########################################################### # You probably won't have to edit anything below this line. --- 91,98 ---- # ETLDFLAGS is a -L flag pointing to the directory where the et # library is stored. # ! ETINCS= -Icom_err ! ETLDFLAGS= -Lcom_err ########################################################### # You probably won't have to edit anything below this line. *************** *** 221,227 **** makekit -oMANIFEST $(ARCHIVEDIRS) $(ARCHIVE) patch: $(ARCHIVE) ! makepatch $(ARCHIVE) mv patch delete.patch`cat PATCHLEVEL` shar delete.patch`cat PATCHLEVEL` > delete.patch`cat PATCHLEVEL`.shar --- 221,227 ---- makekit -oMANIFEST $(ARCHIVEDIRS) $(ARCHIVE) patch: $(ARCHIVE) ! ./makepatch $(ARCHIVE) mv patch delete.patch`cat PATCHLEVEL` shar delete.patch`cat PATCHLEVEL` > delete.patch`cat PATCHLEVEL`.shar *** PATCHLEVEL 1993/10/10 20:03:39 1.14 --- PATCHLEVEL 1995/02/23 03:53:14 *************** *** 1 **** ! 16 --- 1 ---- ! 17 *** directories.c 1992/11/10 05:57:24 1.24 --- directories.c 1993/10/13 13:53:07 *************** *** 8,14 **** */ #if !defined(lint) && !defined(SABER) ! static char rcsid_directories_c[] = "$Id: directories.c,v 1.24 1992/11/10 05:57:24 jik Exp $"; #endif #include --- 8,14 ---- */ #if !defined(lint) && !defined(SABER) ! static char rcsid_directories_c[] = "$Id: directories.c,v 1.25 1993/10/13 13:52:50 jik Exp $"; #endif #include *************** *** 232,238 **** specs->st_ino = realspecs.st_ino; specs->st_mode = realspecs.st_mode; specs->st_size = realspecs.st_size; ! specs->st_ctime = realspecs.st_ctime; #ifdef USE_BLOCKS specs->st_blocks = realspecs.st_blocks; #endif --- 232,238 ---- specs->st_ino = realspecs.st_ino; specs->st_mode = realspecs.st_mode; specs->st_size = realspecs.st_size; ! specs->st_ctim = realspecs.st_ctime; #ifdef USE_BLOCKS specs->st_blocks = realspecs.st_blocks; #endif *** util.c 1993/10/10 19:54:43 1.29 --- util.c 1995/02/23 03:42:40 *************** *** 8,20 **** */ #if (!defined(lint) && !defined(SABER)) ! static char rcsid_util_c[] = "$Id: util.c,v 1.29 1993/10/10 19:54:43 jik Exp $"; #endif #include #include #include ! #if defined(SYSV) && !(defined(hpux) || defined(sun)) /* SYSV doesn't define uid_t */ typedef unsigned short uid_t; #endif #ifdef POSIX --- 8,20 ---- */ #if (!defined(lint) && !defined(SABER)) ! static char rcsid_util_c[] = "$Id: util.c,v 1.31 1995/02/23 03:42:40 jik Exp $"; #endif #include #include #include ! #if defined(SYSV) && !(defined(hpux) || defined(sun) || defined(linux)) /* SYSV doesn't define uid_t */ typedef unsigned short uid_t; #endif #ifdef POSIX *************** *** 246,252 **** filerec *file_ent; time_t current_time, min_days; { ! if ((current_time - file_ent->specs.st_ctime) / 86400 >= min_days) return(1); else return(0); --- 246,252 ---- filerec *file_ent; time_t current_time, min_days; { ! if ((current_time - file_ent->specs.st_ctim) / 86400 >= min_days) return(1); else return(0); *** directories.h 1992/11/10 05:57:24 1.13 --- directories.h 1993/10/13 13:53:11 *************** *** 1,5 **** /* ! * $Id: directories.h,v 1.13 1992/11/10 05:57:24 jik Exp $ * * This file is part of a package including delete, undelete, * lsdel, expunge and purge. The software suite is meant as a --- 1,5 ---- /* ! * $Id: directories.h,v 1.14 1993/10/13 13:52:50 jik Exp $ * * This file is part of a package including delete, undelete, * lsdel, expunge and purge. The software suite is meant as a *************** *** 37,43 **** ino_t st_ino; unsigned short st_mode; off_t st_size; ! time_t st_ctime; #ifdef USE_BLOCKS long st_blocks; #endif --- 37,43 ---- ino_t st_ino; unsigned short st_mode; off_t st_size; ! time_t st_ctim; #ifdef USE_BLOCKS long st_blocks; #endif *** block-test.c 1993/02/10 11:49:49 1.3 --- block-test.c 1993/02/10 16:50:06 *************** *** 8,14 **** */ #if (!defined(lint) && !defined(SABER)) ! static char rcsid_block_test_c[] = "$Id: block-test.c,v 1.3 1993/02/10 11:49:49 jik Exp $"; #endif #include --- 8,14 ---- */ #if (!defined(lint) && !defined(SABER)) ! static char rcsid_block_test_c[] = "$Id: block-test.c,v 1.3 93/02/10 11:49:49 jik Exp $"; #endif #include