home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Usenet 1994 October
/
usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso
/
misc
/
volume39
/
remind
/
patch08c
/
patch.08.A
< prev
Wrap
Text File
|
1993-09-07
|
7KB
|
248 lines
Prereq: "03.00.07"
*** ../prev/version.h Mon Jun 28 12:29:33 1993
--- ./version.h Mon Jul 19 12:21:53 1993
***************
*** 9,12 ****
/* */
/***************************************************************/
! #define VERSION "03.00.07"
--- 9,12 ----
/* */
/***************************************************************/
! #define VERSION "03.00.08"
*** ../prev/COPYRIGHT Mon Jun 28 12:29:29 1993
--- ./COPYRIGHT Thu Aug 19 17:26:59 1993
***************
*** 3,10 ****
1. REMIND refers to the entire set of files and documentation in the
REMIND package.
! 2. REMIND is Copyright 1990, 1991, 1992, 1993 by David Skoll, except for
! the file remind-all.sh, which is Copyright 1990 by Bill Aten.
3. You may use REMIND for free, and may freely distribute it, providing
you do not charge the recipients to whom you distribute REMIND.
--- 3,10 ----
1. REMIND refers to the entire set of files and documentation in the
REMIND package.
! 2. REMIND is Copyright 1990, 1991, 1992, 1993 by David Skoll, except where
! noted in individual files.
3. You may use REMIND for free, and may freely distribute it, providing
you do not charge the recipients to whom you distribute REMIND.
*** ../prev/MANIFEST.DOS Mon Jun 28 12:30:14 1993
--- ./MANIFEST.DOS Wed Aug 18 11:10:49 1993
***************
*** 11,16 ****
--- 11,17 ----
expr.h
files.c
finnish.h
+ french.h
funcs.c
german.h
globals.c
***************
*** 29,34 ****
--- 30,36 ----
makefile.tc
manifest.dos
manifest.unx
+ norwgian.h
omit.c
protos.h
queue.c
*** ../prev/MANIFEST.UNX Mon Jun 28 12:30:13 1993
--- ./MANIFEST.UNX Wed Aug 18 11:11:03 1993
***************
*** 18,23 ****
--- 18,24 ----
expr.h
files.c
finnish.h
+ french.h
funcs.c
german.h
globals.c
***************
*** 33,38 ****
--- 34,40 ----
makefile.msc
makefile.os2
makefile.tc
+ norwgian.h
omit.c
protos.h
queue.c
*** ../prev/Makefile Mon Jun 28 12:30:00 1993
--- ./Makefile Tue Aug 31 12:35:59 1993
***************
*** 10,19 ****
# Uncomment the next line if you are running under UNIX (including SYSV!)
UNIX= -DUNIX
! # Uncomment the next line if you want to use gcc instead of default compiler
CC= gcc
LD= gcc
! # Put any additional flags for the C compiler or linker here
CFLAGS= -O -ansi
CDEFS=
LDFLAGS=
--- 10,24 ----
# Uncomment the next line if you are running under UNIX (including SYSV!)
UNIX= -DUNIX
! # Uncomment the next lines if you want to use gcc instead of default compiler
! # NOTE: Tempting as it may be, if you use 'cc' for the C compiler, do not
! # use 'ld' for the linker. It will probably work much better if you use
! # LD= cc rather than LD= ld.
CC= gcc
LD= gcc
!
! # Put any additional flags for the C compiler or linker here - if you
! # are not using gcc, you probably want to remove '-ansi'.
CFLAGS= -O -ansi
CDEFS=
LDFLAGS=
***************
*** 46,59 ****
# YOU SHOULDN'T EDIT ANYTHING BELOW HERE. You may want to change some things
# in config.h; then, you should be able to type 'make'.
#-----------------------------------------------------------------------------
! VERSION= 03.00.07
MATHLIB= -lm
HDRS= config.h err.h expr.h globals.h protos.h types.h version.h \
! lang.h english.h german.h dutch.h finnish.h
STDHDRS= config.h types.h protos.h globals.h err.h lang.h
SRCS= calendar.c dorem.c dosubst.c expr.c files.c funcs.c globals.c hbcal.c \
init.c main.c omit.c sort.c queue.c token.c trigger.c userfns.c utils.c var.c
--- 51,66 ----
# YOU SHOULDN'T EDIT ANYTHING BELOW HERE. You may want to change some things
# in config.h; then, you should be able to type 'make'.
#-----------------------------------------------------------------------------
! VERSION= 03.00.08
MATHLIB= -lm
HDRS= config.h err.h expr.h globals.h protos.h types.h version.h \
! lang.h english.h german.h dutch.h finnish.h french.h norwgian.h
STDHDRS= config.h types.h protos.h globals.h err.h lang.h
+ LANGHDRS= english.h german.h dutch.h finnish.h french.h norwgian.h
+
SRCS= calendar.c dorem.c dosubst.c expr.c files.c funcs.c globals.c hbcal.c \
init.c main.c omit.c sort.c queue.c token.c trigger.c userfns.c utils.c var.c
***************
*** 68,74 ****
all: remind rem2ps
.c.o:
! $(CC) $(UNIX) $(SYSV) -c -o $*.o $(CFLAGS) $(CDEFS) $*.c
rem2ps: rem2ps.o
$(LD) $(LDFLAGS) -o rem2ps rem2ps.o
--- 75,81 ----
all: remind rem2ps
.c.o:
! $(CC) $(UNIX) $(SYSV) -c $(CFLAGS) $(CDEFS) $*.c
rem2ps: rem2ps.o
$(LD) $(LDFLAGS) -o rem2ps rem2ps.o
***************
*** 77,86 ****
$(LD) $(LDFLAGS) -o remind $(OBJS) $(MATHLIB)
clean:
! rm -f *.o *~
clobber:
! rm -f *.o *~ remind rem2ps test.out
test: remind
sh test-rem
--- 84,93 ----
$(LD) $(LDFLAGS) -o remind $(OBJS) $(MATHLIB)
clean:
! rm -f *.o *~ core *.bak
clobber:
! rm -f *.o *~ remind rem2ps test.out core *.bak
test: remind
sh test-rem
***************
*** 88,100 ****
rem2ps.o: rem2ps.c rem2ps.h lang.h config.h
calendar.o: calendar.c $(STDHDRS) expr.h
dorem.o: dorem.c $(STDHDRS) expr.h
! dosubst.o: dosubst.c $(STDHDRS)
expr.o: expr.c $(STDHDRS) expr.h
files.o: files.c $(STDHDRS)
funcs.o: funcs.c $(STDHDRS) expr.h version.h
! globals.o: globals.c config.h types.h globals.h err.h lang.h
hbcal.o: hbcal.c $(STDHDRS)
! init.o: init.c $(STDHDRS) expr.h version.h
main.o: main.c $(STDHDRS) expr.h
omit.o: omit.c $(STDHDRS)
sort.o: sort.c $(STDHDRS)
--- 95,107 ----
rem2ps.o: rem2ps.c rem2ps.h lang.h config.h
calendar.o: calendar.c $(STDHDRS) expr.h
dorem.o: dorem.c $(STDHDRS) expr.h
! dosubst.o: dosubst.c $(STDHDRS) $(LANGHDRS)
expr.o: expr.c $(STDHDRS) expr.h
files.o: files.c $(STDHDRS)
funcs.o: funcs.c $(STDHDRS) expr.h version.h
! globals.o: globals.c config.h types.h globals.h err.h lang.h $(LANGHDRS)
hbcal.o: hbcal.c $(STDHDRS)
! init.o: init.c $(STDHDRS) expr.h version.h lang.h $(LANGHDRS)
main.o: main.c $(STDHDRS) expr.h
omit.o: omit.c $(STDHDRS)
sort.o: sort.c $(STDHDRS)
***************
*** 106,113 ****
var.o: var.c $(STDHDRS) expr.h
tarZ:
! tar cvf remind-3.0.7.tar $(MANIFEST)
! compress -v remind-3.0.7.tar
shar:
shar -x -n"Remind $(VERSION)" -l45 -o./Shar $(MANIFEST)
--- 113,120 ----
var.o: var.c $(STDHDRS) expr.h
tarZ:
! tar cvf remind-3.0.8.tar $(MANIFEST)
! compress -v remind-3.0.8.tar
shar:
shar -x -n"Remind $(VERSION)" -l45 -o./Shar $(MANIFEST)
***************
*** 166,168 ****
--- 173,186 ----
cp rem2ps.1 $(MANDIR)/man$(MANSECT)/rem2ps.$(MANSECT)
-chmod $(MANMODE) $(MANDIR)/man$(MANSECT)/rem2ps.$(MANSECT)
-chown $(OWNER) $(MANDIR)/man$(MANSECT)/rem2ps.$(MANSECT)
+
+ release:
+ -mkdir RELEASE
+ -rm -f RELEASE/*
+ mkpatch ../prev . patch.08 Shar "Remind-3.0/Patch-08"
+ mv Shar* RELEASE
+ rm -f patch.08
+ for i in *.1; do nroff -man $$i | sed -e 's/_//g' > `basename $$i .1`.man; done
+ mv *.man RELEASE
+ for i in *.1; do groff -man -Tps $$i > `basename $$i .1`.ps; done
+ mv *.ps RELEASE