diff options
Diffstat (limited to 'editors/xemacs-devel/files')
-rw-r--r-- | editors/xemacs-devel/files/patch-af | 14 | ||||
-rw-r--r-- | editors/xemacs-devel/files/patch-aj | 11 | ||||
-rw-r--r-- | editors/xemacs-devel/files/xemacs21.sh | 26 |
3 files changed, 12 insertions, 39 deletions
diff --git a/editors/xemacs-devel/files/patch-af b/editors/xemacs-devel/files/patch-af index 90ca0820e9aa..c0c55cbf0aef 100644 --- a/editors/xemacs-devel/files/patch-af +++ b/editors/xemacs-devel/files/patch-af @@ -1,6 +1,6 @@ ---- configure.in.orig Fri Aug 4 11:49:59 2000 -+++ configure.in Fri Sep 8 16:12:55 2000 -@@ -1053,6 +1053,7 @@ +--- configure.in.orig Wed Jul 25 09:39:21 2001 ++++ configure.in Sun Oct 7 23:20:24 2001 +@@ -1098,6 +1098,7 @@ dnl Straightforward OS determination case "$canonical" in *-*-linux* ) opsys=linux ;; @@ -8,7 +8,7 @@ *-*-netbsd* ) opsys=netbsd ;; *-*-openbsd* ) opsys=openbsd ;; *-*-nextstep* ) opsys=nextstep ;; -@@ -3052,21 +3053,24 @@ +@@ -3661,21 +3662,24 @@ test "$ac_cv_func_crypt" != "yes" && { AC_CHECK_LIB(crypt, crypt) } fi dnl Back to our regularly scheduled wnn hunting @@ -42,12 +42,12 @@ fi dnl Autodetect canna -@@ -3579,7 +3583,7 @@ +@@ -4257,7 +4261,7 @@ dnl Check for Berkeley DB. if test "$with_database_berkdb" != "no"; then AC_MSG_CHECKING(for Berkeley db.h) -- for path in "db/db.h" "db.h"; do -+ for path in "/usr/include/db.h" "db/db.h" "db.h"; do +- for header in "db/db.h" "db.h"; do ++ for header in "/usr/include/db.h" "db/db.h" "db.h"; do AC_TRY_COMPILE([ #include <stdlib.h> #if !(defined __GLIBC__ && __GLIBC_MINOR__ >= 1) diff --git a/editors/xemacs-devel/files/patch-aj b/editors/xemacs-devel/files/patch-aj index ec7bc9284938..7fce08056ac7 100644 --- a/editors/xemacs-devel/files/patch-aj +++ b/editors/xemacs-devel/files/patch-aj @@ -1,6 +1,6 @@ ---- ./src/s/freebsd.h~ Sun Sep 27 09:59:20 1998 -+++ ./src/s/freebsd.h Tue Nov 2 10:25:48 1999 -@@ -54,10 +54,15 @@ +--- src/s/freebsd.h.orig Thu Apr 12 20:24:42 2001 ++++ src/s/freebsd.h Sun Oct 7 23:31:09 2001 +@@ -56,9 +56,14 @@ #include <stddef.h> #endif #define LD_SWITCH_SYSTEM @@ -9,11 +9,10 @@ +#define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o +#else #define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crti.o /usr/lib/crtbegin.o --#define UNEXEC unexelf.o +-#define UNEXEC "unexelf.o" #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o /usr/lib/crtn.o +#endif ++#define UNEXEC "unexelf.o" #define LINKER "$(CC) -nostdlib" -+#define UNEXEC unexelf.o #undef LIB_GCC #define LIB_GCC - diff --git a/editors/xemacs-devel/files/xemacs21.sh b/editors/xemacs-devel/files/xemacs21.sh deleted file mode 100644 index 7c4961579079..000000000000 --- a/editors/xemacs-devel/files/xemacs21.sh +++ /dev/null @@ -1,26 +0,0 @@ -#!/bin/sh -# script to create the lock directory in case it was -# removed in /etc/rc -#echo -n ' Xemacs' - -case "$1" in -start) - if [ -d /var/run/emacs/lock ] - then - # delete any junk which may have been left around - rm -f /var/run/emacs/lock/* - else - mkdir -p /var/run/emacs/lock - fi - # can always do this - chmod 1777 /var/run/emacs/lock - ;; -stop) - ;; -*) - echo "Usage: `basename $0` {start|stop}" >&2 - exit 64 - ;; -esac - -exit 0 |