diff options
author | will <will@FreeBSD.org> | 2000-08-20 18:21:02 +0800 |
---|---|---|
committer | will <will@FreeBSD.org> | 2000-08-20 18:21:02 +0800 |
commit | 96b8ce3990701d8599708a88b1d9fd3f9bfbaf7d (patch) | |
tree | 1c4930b9928c01003e6f669b3fe49c1a083bf9b0 /misc/kcd/files | |
parent | f684794fd73e065e9d155a7b88a696a0643d2a2f (diff) | |
download | freebsd-ports-gnome-96b8ce3990701d8599708a88b1d9fd3f9bfbaf7d.tar.gz freebsd-ports-gnome-96b8ce3990701d8599708a88b1d9fd3f9bfbaf7d.tar.zst freebsd-ports-gnome-96b8ce3990701d8599708a88b1d9fd3f9bfbaf7d.zip |
Update to 5.0.1.
PR: 20655
Submitted by: Ports Fury
Diffstat (limited to 'misc/kcd/files')
-rw-r--r-- | misc/kcd/files/patch-ac | 13 | ||||
-rw-r--r-- | misc/kcd/files/patch-ad | 25 | ||||
-rw-r--r-- | misc/kcd/files/patch-ae | 13 | ||||
-rw-r--r-- | misc/kcd/files/patch-af | 14 | ||||
-rw-r--r-- | misc/kcd/files/patch-ag | 13 |
5 files changed, 78 insertions, 0 deletions
diff --git a/misc/kcd/files/patch-ac b/misc/kcd/files/patch-ac new file mode 100644 index 000000000000..2f297c027f4e --- /dev/null +++ b/misc/kcd/files/patch-ac @@ -0,0 +1,13 @@ +--- Makefile.in.orig Fri Aug 11 23:14:54 2000 ++++ Makefile.in Sat Aug 12 05:23:26 2000 +@@ -46,8 +46,8 @@ + CXXFLAGS = @CXXFLAGS@ + CPPFLAGS = @CPPFLAGS@ + +-CCFLAGS = $(CPPFLAGS) $(CFLAGS) +-CXXCFLAGS = $(CPPFLAGS) $(CXXFLAGS) ++CCFLAGS = $(CPPFLAGS) $(CFLAGS) -DSYSCONFDIR=\"$(etcdir)\" ++CXXCFLAGS = $(CPPFLAGS) $(CXXFLAGS) -DSYSCONFDIR=\"$(etcdir)\" + + LDFLAGS = @LDFLAGS@ + LIBS = @LIBS@ diff --git a/misc/kcd/files/patch-ad b/misc/kcd/files/patch-ad new file mode 100644 index 000000000000..0a40c49352b3 --- /dev/null +++ b/misc/kcd/files/patch-ad @@ -0,0 +1,25 @@ +--- configure.orig Sat Aug 12 17:03:47 2000 ++++ configure Tue Aug 15 01:09:10 2000 +@@ -1105,11 +1105,6 @@ + echo "$ac_t""$CXXCPP" 1>&6 + + +-if test "$GXX" = yes; then +- CFLAGS="$CFLAGS -W -Wall" +- CXXFLAGS="$CXXFLAGS -W -Wall" +-fi +- + ac_aux_dir= + for ac_dir in $srcdir $srcdir/.. $srcdir/../..; do + if test -f $ac_dir/install-sh; then +@@ -5309,10 +5304,6 @@ + fi + if test "$prefix" = NONE; then + prefix=$ac_default_prefix +-fi +- +-if test "$sysconfdir" = '${prefix}/etc'; then +- sysconfdir=/etc + fi + + diff --git a/misc/kcd/files/patch-ae b/misc/kcd/files/patch-ae new file mode 100644 index 000000000000..b413bdaeaf3b --- /dev/null +++ b/misc/kcd/files/patch-ae @@ -0,0 +1,13 @@ +--- conffile.cc.orig Fri Aug 11 23:14:54 2000 ++++ conffile.cc Sat Aug 12 04:57:34 2000 +@@ -1276,9 +1276,7 @@ + return; + + loaded = 1; +- LoadConfig("/etc/kcd.conf", quiet); +- LoadConfig("/usr/etc/kcd.conf", quiet); +- LoadConfig("/usr/local/etc/kcd.conf", quiet); ++ LoadConfig(SYSCONFDIR "/kcd.conf", quiet); + LoadConfig(confLocalFile, quiet); + } + diff --git a/misc/kcd/files/patch-af b/misc/kcd/files/patch-af new file mode 100644 index 000000000000..cfd92798b3cd --- /dev/null +++ b/misc/kcd/files/patch-af @@ -0,0 +1,14 @@ +--- cxxlib.cc.orig Fri Aug 11 23:14:55 2000 ++++ cxxlib.cc Sat Aug 12 05:33:05 2000 +@@ -19,7 +19,11 @@ + */ + + #include "cxxlib.h" ++#ifdef HAVE_MALLOC_H + #include <malloc.h> ++#else ++#include <stdlib.h> ++#endif + #include <unistd.h> + + extern char progName[]; diff --git a/misc/kcd/files/patch-ag b/misc/kcd/files/patch-ag new file mode 100644 index 000000000000..87b0a9e34381 --- /dev/null +++ b/misc/kcd/files/patch-ag @@ -0,0 +1,13 @@ +--- kcd.1.orig Sat Aug 12 17:03:56 2000 ++++ kcd.1 Tue Aug 15 02:14:01 2000 +@@ -64,9 +64,7 @@ + .TP + .I "\-\-config" + Display current configuration (excluding screen attributes) obtained from +-.I /etc/kcd.conf +-.I /usr/etc/kcd.conf, +-.I /usr/local/etc/kcd.conf, ++.I %%PREFIX%%/etc/kcd.conf, + and + .I ~/.kcd.conf. + |