diff options
author | kevlo <kevlo@FreeBSD.org> | 2001-07-03 12:33:16 +0000 |
---|---|---|
committer | kevlo <kevlo@FreeBSD.org> | 2001-07-03 12:33:16 +0000 |
commit | ad1ce629ff996970ecb412d8d08d56bae523ea13 (patch) | |
tree | a2edc68b323b8192d17fbca7eae7b76d28e83e17 /cad/xcircuit/files | |
parent | d0eeae13ef029501789279cb30773d0d6a6ae2dd (diff) | |
download | FreeBSD-ports-ad1ce629ff996970ecb412d8d08d56bae523ea13.zip FreeBSD-ports-ad1ce629ff996970ecb412d8d08d56bae523ea13.tar.gz |
Update to version 2.3.3
PR: 28646
Submitted by: MAINTAINER
Diffstat (limited to 'cad/xcircuit/files')
-rw-r--r-- | cad/xcircuit/files/patch-aa | 26 | ||||
-rw-r--r-- | cad/xcircuit/files/patch-ab | 14 |
2 files changed, 20 insertions, 20 deletions
diff --git a/cad/xcircuit/files/patch-aa b/cad/xcircuit/files/patch-aa index d5bdbde..050a45a 100644 --- a/cad/xcircuit/files/patch-aa +++ b/cad/xcircuit/files/patch-aa @@ -1,5 +1,5 @@ -*** Imakefile.orig Wed May 16 02:27:29 2001 ---- Imakefile Sat May 26 05:53:06 2001 +*** Imakefile.orig Wed Jun 13 00:43:27 2001 +--- Imakefile Sat Jun 16 09:43:29 2001 *************** *** 28,46 **** #CCOPTIONS = -O2 @@ -14,7 +14,7 @@ #------------------------------------------------------------------------ # ! PREFIX = /usr/local - # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.3.0/psfiles + # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.3.1/psfiles ! XCIRCUIT_LIB_DIR = $(PREFIX)/lib/xcircuit-2.3 ! XCIRCUIT_BIN_DIR = $(PREFIX)/bin ! XCIRCUIT_MAN_DIR = $(PREFIX)/man/man1 @@ -35,7 +35,7 @@ #------------------------------------------------------------------------ # ! #PREFIX = /usr/local - # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.3.0/psfiles + # XCIRCUIT_LIB_DIR = $(PREFIX)/src/xcircuit-2.3.1/psfiles ! XCIRCUIT_LIB_DIR = $(LIBDIR)/xcircuit ! XCIRCUIT_BIN_DIR = $(BINDIR) ! XCIRCUIT_MAN_DIR = $(MANDIR) @@ -55,24 +55,24 @@ # 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 +! GS_EXEC=${LOCALBASE}/bin/gs #------------------------------------------------------------------------ # Window manager bug workaround---If you don't like xcircuit grabbing kbd *************** -*** 85,91 **** - #------------------------------------------------------------------------ - # Support for embedded Python interpreter (requires libpython2.0.a) +*** 86,92 **** + # Support for embedded Python interpreter + # (requires libpython${PYTHON_VERSION}.a) # ! #define HAVE_PYTHON - PYTHON_VERSION=2.0 + PYTHON_VERSION=2.1 PYTHON_LIB_DIR=/usr/local/lib ---- 86,92 ---- - #------------------------------------------------------------------------ - # Support for embedded Python interpreter (requires libpython2.0.a) +--- 87,93 ---- + # Support for embedded Python interpreter + # (requires libpython${PYTHON_VERSION}.a) # ! /* #define HAVE_PYTHON */ - PYTHON_VERSION=2.0 + PYTHON_VERSION=2.1 PYTHON_LIB_DIR=/usr/local/lib diff --git a/cad/xcircuit/files/patch-ab b/cad/xcircuit/files/patch-ab index 2c1e11f..fffcdea 100644 --- a/cad/xcircuit/files/patch-ab +++ b/cad/xcircuit/files/patch-ab @@ -1,11 +1,11 @@ -*** xcircuit.c.orig Fri Feb 9 23:51:53 2001 ---- xcircuit.c Wed Feb 14 04:21:20 2001 +*** xcircuit.c.orig Tue Jun 26 22:34:15 2001 +--- xcircuit.c Sat Jun 30 12:53:00 2001 *************** -*** 20,25 **** ---- 20,28 ---- - #include <errno.h> +*** 21,26 **** +--- 21,29 ---- #include <limits.h> #include <locale.h> + #include <unistd.h> /* for unlink() */ + #ifdef __FreeBSD__ + #include <machine/floatingpoint.h> + #endif @@ -13,8 +13,8 @@ #include <X11/Intrinsic.h> #include <X11/StringDefs.h> *************** -*** 1650,1655 **** ---- 1653,1662 ---- +*** 1685,1690 **** +--- 1688,1697 ---- char *argv0; /* find root of argv[0] */ short initargc = argc; /* because XtInitialize() absorbs the */ /* -schem flag and renumbers argc! (bug?) */ |