home *** CD-ROM | disk | FTP | other *** search
- diff -cr zip19/msdos/makefile.bor zip19p1/msdos/makefile.bor
- *** zip19/msdos/makefile.bor Thu Aug 20 04:19:56 1992
- --- zip19p1/msdos/makefile.bor Wed Aug 26 15:26:20 1992
- ***************
- *** 106,112 ****
- $(CC) -c $(UTILFLAGS)$* fileio.c
-
- util_.obj: util.c zip.h ziperr.h tailor.h
- ! $(CC) -c $(UTILFLAGS)$* fileio.c
-
- crypt_.obj: crypt.c zip.h ziperr.h tailor.h
- $(CC) -c $(UTILFLAGS)$* crypt.c
- --- 106,112 ----
- $(CC) -c $(UTILFLAGS)$* fileio.c
-
- util_.obj: util.c zip.h ziperr.h tailor.h
- ! $(CC) -c $(UTILFLAGS)$* util_.c
-
- crypt_.obj: crypt.c zip.h ziperr.h tailor.h
- $(CC) -c $(UTILFLAGS)$* crypt.c
- diff -cr zip19/msdos/makefile.gcc zip19p1/msdos/makefile.gcc
- *** zip19/msdos/makefile.gcc Thu Aug 20 04:18:24 1992
- --- zip19p1/msdos/makefile.gcc Wed Aug 26 15:30:18 1992
- ***************
- *** 1,5 ****
- # Makefile for Zip, ZipCloak, ZipNote and ZipSplit for
- ! # djgcc 1.06
-
- CRYPTO=
- CLOAK=
- --- 1,5 ----
- # Makefile for Zip, ZipCloak, ZipNote and ZipSplit for
- ! # djgcc 1.08
-
- CRYPTO=
- CLOAK=
- ***************
- *** 7,13 ****
-
- # *** For encryption version, remove the # at the front of next 3 lines ***
- #CRYPTO=crypt.o
- ! #CLOAK=zipcloak.exe
- #CRFLAG=-DCRYPT
-
- # ------------- djgcc -------------
- --- 7,13 ----
-
- # *** For encryption version, remove the # at the front of next 3 lines ***
- #CRYPTO=crypt.o
- ! #CLOAK=zipcloak
- #CRFLAG=-DCRYPT
-
- # ------------- djgcc -------------
- ***************
- *** 19,25 ****
-
- # variables
- OBJZ = zip.o zipfile.o zipup.o fileio.o util.o globals.o $(CRYPTO)
- !
- OBJU = zipfile_.o zipup_.o fileio_.o util_.o globals.o
- OBJN = zipnote.o $(OBJU)
- OBJC = zipcloak.o $(OBJU) crypt_.o
- --- 19,25 ----
-
- # variables
- OBJZ = zip.o zipfile.o zipup.o fileio.o util.o globals.o $(CRYPTO)
- ! OBJI = deflate.o trees.o bits.o match.o
- OBJU = zipfile_.o zipup_.o fileio_.o util_.o globals.o
- OBJN = zipnote.o $(OBJU)
- OBJC = zipcloak.o $(OBJU) crypt_.o
- ***************
- *** 63,69 ****
- $(CC) -c $(UTILFLAGS) $@ fileio.c
-
- util_.o: util.c zip.h ziperr.h tailor.h
- ! $(CC) -c $(UTILFLAGS) $@ fileio.c
-
- crypt_.o: crypt.c zip.h
- $(CC) -c $(UTILFLAGS) $@ crypt.c
- --- 63,69 ----
- $(CC) -c $(UTILFLAGS) $@ fileio.c
-
- util_.o: util.c zip.h ziperr.h tailor.h
- ! $(CC) -c $(UTILFLAGS) $@ util.c
-
- crypt_.o: crypt.c zip.h
- $(CC) -c $(UTILFLAGS) $@ crypt.c
- ***************
- *** 84,89 ****
- del $@
-
- zipsplit: $(OBJS)
- ! $(LD) $(LDFAGS) $(OBJS) -o $@
- aout2exe $@
- del $@
- --- 84,89 ----
- del $@
-
- zipsplit: $(OBJS)
- ! $(LD) $(LDFLAGS) $(OBJS) -o $@
- aout2exe $@
- del $@
- diff -cr zip19/os2/os2zip.c zip19p1/os2/os2zip.c
- *** zip19/os2/os2zip.c Thu Aug 20 20:03:10 1992
- --- zip19p1/os2/os2zip.c Wed Aug 26 13:08:34 1992
- ***************
- *** 581,591 ****
- calls that may fail, but not for malloc() calls, because they are VERY
- unlikely to fail. If ever, we just leave some memory allocated ... */
-
- ! #if defined(__GNUC__) || defined(__IBMC__)
- #define alloc alloca
- #endif
-
- ! #ifdef __WATCOMC__
- #define alloc malloc
- #define __FREE__
- #endif
- --- 581,591 ----
- calls that may fail, but not for malloc() calls, because they are VERY
- unlikely to fail. If ever, we just leave some memory allocated ... */
-
- ! #if defined(__GNUC__)
- #define alloc alloca
- #endif
-
- ! #if defined(__WATCOMC__) || defined(__IBMC__)
- #define alloc malloc
- #define __FREE__
- #endif
-