forked from freebsd/freebsd-ports
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8be9691
commit 6ed7761
Showing
9 changed files
with
101 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
--- Makefile.orig Sat Mar 11 14:41:18 2000 | ||
+++ Makefile Sat Mar 11 14:41:24 2000 | ||
--- Makefile.orig Wed Jan 5 13:50:05 2000 | ||
+++ Makefile Sun Apr 2 11:37:04 2000 | ||
@@ -1,6 +1,6 @@ | ||
|
||
CC=gcc | ||
-CFLAG=-O2 -g -Iinclude | ||
+CFLAG+=-O2 -g -Iinclude | ||
+CFLAG+=-Iinclude | ||
|
||
|
||
all: autob5 autogb hzlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,15 @@ | ||
--- Makefile.orig Tue Feb 23 22:21:39 1993 | ||
+++ Makefile Tue Feb 4 02:10:15 1997 | ||
@@ -1,4 +1,4 @@ | ||
--- Makefile.orig Wed Feb 24 14:21:39 1993 | ||
+++ Makefile Sun Apr 2 11:42:44 2000 | ||
@@ -1,9 +1,9 @@ | ||
-CC=cc | ||
+CC=cc -DCHINDICT=\"$(PREFIX)/share/chinese/gb/TONEPY.tit\" | ||
|
||
all: c2t | ||
|
||
c2t: c2t.o | ||
- $(CC) -O -o c2t c2t.o | ||
+ $(CC) $(CFLAGS) -o c2t c2t.o | ||
|
||
c2t.o: c2t.c | ||
- $(CC) -O -c c2t.c | ||
+ $(CC) $(CFLAGS) -c c2t.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
--- Makefile.orig Wed May 15 12:09:50 1991 | ||
+++ Makefile Thu Aug 15 04:47:32 1996 | ||
--- Makefile.orig Thu May 16 03:09:50 1991 | ||
+++ Makefile Sun Apr 2 11:44:47 2000 | ||
@@ -22,7 +22,7 @@ | ||
SRC5= regexp.c regexp.h regsub.c sysdos.c system.c tinytcap.c tio.c tmp.c | ||
SRC6= vars.c vcmd.c vi.c vi.h ctags.c ref.c virec.c wildcard.c shell.c | ||
EXTRA= | ||
-CFLAGS= -O | ||
+CFLAGS= -O -D_HAVE_PARAM_H | ||
+CFLAGS+= -D_HAVE_PARAM_H | ||
LIBS= -ltermcap | ||
|
||
all: $(PROGS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,28 @@ | ||
*** Makefile.dist Thu Sep 25 00:26:00 1997 | ||
--- Makefile Thu Sep 25 00:47:01 1997 | ||
*************** | ||
*** 132,138 **** | ||
|
||
|
||
bsd: | ||
! miniconf.sh $(CPP) | ||
${MAKE} ${MFLAGS} DEFINES='-DBSD' ${PROG} | ||
|
||
posix: | ||
--- 134,140 ---- | ||
|
||
|
||
bsd: | ||
! ./miniconf.sh $(CPP) | ||
${MAKE} ${MFLAGS} DEFINES='-DBSD' ${PROG} | ||
|
||
posix: | ||
|
||
--- Makefile.orig Sun Jan 29 16:39:19 1995 | ||
+++ Makefile Sun Apr 2 11:16:03 2000 | ||
@@ -19,7 +19,6 @@ | ||
|
||
CC=cc | ||
CPP=$(CC) -E | ||
-CDEBUGFLAGS= -O | ||
MAKE=make | ||
RM=rm -f | ||
|
||
@@ -31,7 +30,7 @@ | ||
${OBJ_GB_BIG5} ${OBJ_UNICODE_GB} ${OBJ_UNICODE_BIG5} | ||
|
||
DEFINES= | ||
-CFLAGS=${CDEBUGFLAGS} ${DEFINES} ${MODULES_DEF} -I. | ||
+CFLAGS+=${CDEBUGFLAGS} ${DEFINES} ${MODULES_DEF} -I. | ||
|
||
PROG = hztty | ||
LIBS= | ||
@@ -132,7 +131,7 @@ | ||
|
||
|
||
bsd: | ||
- miniconf.sh $(CPP) | ||
+ ./miniconf.sh $(CPP) | ||
${MAKE} ${MFLAGS} DEFINES='-DBSD' ${PROG} | ||
|
||
posix: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
--- pico/makefile.bsf.orig Wed Aug 19 01:57:03 1998 | ||
+++ pico/makefile.bsf Sun Apr 2 12:19:40 2000 | ||
@@ -34,10 +34,10 @@ | ||
MAKE= make | ||
OPTIMIZE= # -O | ||
PROFILE= # -pg | ||
-DEBUG= -DDEBUG # -g | ||
+###DEBUG= -DDEBUG # -g | ||
|
||
STDCFLAGS= -DBSDI -DBSDI2 -DPOSIX -DJOB_CONTROL -DMOUSE | ||
-CFLAGS= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS) | ||
+CFLAGS+= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(STDCFLAGS) | ||
|
||
# switches for library building | ||
LIBCMD= ar | ||
--- pine/makefile.bsf.orig Fri Aug 28 00:49:51 1998 | ||
+++ pine/makefile.bsf Sun Apr 2 12:20:02 2000 | ||
@@ -48,7 +48,7 @@ | ||
MAKE= make | ||
OPTIMIZE= # -O | ||
PROFILE= # -pg | ||
-DEBUG= -DDEBUG # -g | ||
+#DEBUG= -DDEBUG # -g | ||
|
||
CCLIENTDIR= ../c-client | ||
PICODIR= ../pico | ||
@@ -67,7 +67,7 @@ | ||
`cat $(CCLIENTDIR)/LDFLAGS` | ||
|
||
STDCFLAGS= -DBSDI -DSYSTYPE=\"BSF\" -DMOUSE | ||
-CFLAGS= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(LDAPCFLAGS) \ | ||
+CFLAGS+= $(OPTIMIZE) $(PROFILE) $(DEBUG) $(EXTRACFLAGS) $(LDAPCFLAGS) \ | ||
$(STDCFLAGS) | ||
|
||
OFILES= addrbook.o adrbkcmd.o adrbklib.o args.o bldaddr.o context.o filter.o \ |