diff options
author | jedgar <jedgar@FreeBSD.org> | 2000-03-20 21:43:03 +0000 |
---|---|---|
committer | jedgar <jedgar@FreeBSD.org> | 2000-03-20 21:43:03 +0000 |
commit | b036946869787fd622cd7d6ffd6933a720f82b41 (patch) | |
tree | f72af843fc35e21a86596b1483f35513ad981b19 /cad/xcircuit/files | |
parent | f739578c1212be6928944ff1a90cd406dcf26843 (diff) | |
download | FreeBSD-ports-b036946869787fd622cd7d6ffd6933a720f82b41.zip FreeBSD-ports-b036946869787fd622cd7d6ffd6933a720f82b41.tar.gz |
Update port to 2.0b4
PR: 17459
Submitted by: KATO Tsuguru <tkato@prontomail.ne.jp>
Diffstat (limited to 'cad/xcircuit/files')
-rw-r--r-- | cad/xcircuit/files/patch-aa | 38 | ||||
-rw-r--r-- | cad/xcircuit/files/patch-ae | 14 |
2 files changed, 27 insertions, 25 deletions
diff --git a/cad/xcircuit/files/patch-aa b/cad/xcircuit/files/patch-aa index 26c3811..93057f5 100644 --- a/cad/xcircuit/files/patch-aa +++ b/cad/xcircuit/files/patch-aa @@ -1,5 +1,5 @@ -*** Imakefile.orig Thu Jan 6 03:15:52 2000 ---- Imakefile Fri Jan 21 12:00:00 2000 +*** Imakefile.orig Wed Mar 1 00:41:35 2000 +--- Imakefile Mon Mar 13 01:45:29 2000 *************** *** 26,44 **** #CCOPTIONS = -O2 @@ -26,7 +26,7 @@ # # for debugging purposes uncomment the following line: ! #CDEBUGFLAGS = -g -! #STD_INCLUDES = -I. -I/usr/X11R6/include/X11 +! STD_INCLUDES = -I. -I$(INCDIR)/X11 #------------------------------------------------------------------------ # Installation directories: @@ -42,23 +42,19 @@ #------------------------------------------------------------------------ # Support for graphics double-buffering (A memory hog, but yields fastest *************** -*** 89,97 **** - # DEC Alpha, Solaris and other SVR4 systems need the following, - # or if you have compilation errors about "dp->d_name" being - # undefined: -! #DIRENT = -DSVR4_DIRENT - # Otherwise, -! DIRENT = +*** 56,62 **** + # Support for background rendering through ghostscript. Change this + # to the path where gs can be found. + # GS_EXEC= /usr/local/src/gs5.50/obj/gs +! GS_EXEC= /usr/bin/gs - # My DECstation (Ultrix) has something funny going on in XLib. . . if there - # is a compile-time error "ld: Undefined: XUniqueContext *** Error code 1" ---- 89,97 ---- - # DEC Alpha, Solaris and other SVR4 systems need the following, - # or if you have compilation errors about "dp->d_name" being - # undefined: -! DIRENT = -DSVR4_DIRENT - # Otherwise, -! #DIRENT = + #------------------------------------------------------------------------ + # Window manager bug workaround---If you don't like xcircuit grabbing kbd +--- 56,62 ---- + # Support for background rendering through ghostscript. Change this + # to the path where gs can be found. + # GS_EXEC= /usr/local/src/gs5.50/obj/gs +! GS_EXEC= %%LOCALBASE%%/bin/gs - # My DECstation (Ultrix) has something funny going on in XLib. . . if there - # is a compile-time error "ld: Undefined: XUniqueContext *** Error code 1" + #------------------------------------------------------------------------ + # Window manager bug workaround---If you don't like xcircuit grabbing kbd diff --git a/cad/xcircuit/files/patch-ae b/cad/xcircuit/files/patch-ae index d54161f..f50f1bc 100644 --- a/cad/xcircuit/files/patch-ae +++ b/cad/xcircuit/files/patch-ae @@ -1,8 +1,8 @@ -*** filelist.c.orig Thu Jan 6 03:16:39 2000 ---- filelist.c Fri Jan 21 12:00:00 2000 +*** filelist.c.orig Tue Feb 29 23:35:01 2000 +--- filelist.c Mon Mar 13 02:23:41 2000 *************** -*** 5,11 **** ---- 5,13 ---- +*** 5,12 **** +--- 5,19 ---- #include <stdio.h> #include <string.h> @@ -10,5 +10,11 @@ #include <malloc.h> + #endif #include <sys/types.h> ++ #ifdef __FreeBSD__ ++ #include <dirent.h> ++ #include <unistd.h> ++ #define direct dirent ++ #endif #ifdef linux #include <dirent.h> + #include <linux/unistd.h> |