summaryrefslogtreecommitdiff
path: root/editors/xemacs/files
diff options
context:
space:
mode:
Diffstat (limited to 'editors/xemacs/files')
-rw-r--r--editors/xemacs/files/patch-af19
-rw-r--r--editors/xemacs/files/patch-ai20
-rw-r--r--editors/xemacs/files/patch-aj19
-rw-r--r--editors/xemacs/files/patch-ak17
-rw-r--r--editors/xemacs/files/xemacs21.sh14
5 files changed, 0 insertions, 89 deletions
diff --git a/editors/xemacs/files/patch-af b/editors/xemacs/files/patch-af
deleted file mode 100644
index 97f5860fae94..000000000000
--- a/editors/xemacs/files/patch-af
+++ /dev/null
@@ -1,19 +0,0 @@
---- configure.orig Thu Apr 20 08:10:55 2000
-+++ configure Sun Jun 4 23:41:55 2000
-@@ -1041,6 +1041,7 @@
-
- case "$canonical" in
- *-*-linux* ) opsys=linux ;;
-+ *-*-freebsd* ) opsys=freebsd ;;
- *-*-netbsd* ) opsys=netbsd ;;
- *-*-openbsd* ) opsys=openbsd ;;
- *-*-nextstep* ) opsys=nextstep ;;
-@@ -11308,7 +11309,7 @@
- if test "$with_database_berkdb" != "no"; then
- echo $ac_n "checking for Berkeley db.h""... $ac_c" 1>&6
- echo "configure:11311: checking for Berkeley db.h" >&5
-- for path in "db/db.h" "db.h"; do
-+ for path in "/usr/include/db.h" "db/db.h" "db.h"; do
- cat > conftest.$ac_ext <<EOF
- #line 11314 "configure"
- #include "confdefs.h"
diff --git a/editors/xemacs/files/patch-ai b/editors/xemacs/files/patch-ai
deleted file mode 100644
index c91881639c5e..000000000000
--- a/editors/xemacs/files/patch-ai
+++ /dev/null
@@ -1,20 +0,0 @@
---- lib-src/fakemail.c.orig Tue Mar 23 22:09:58 1999
-+++ lib-src/fakemail.c Tue Mar 23 22:12:20 1999
-@@ -157,9 +157,17 @@
- extern char *malloc (), *realloc ();
- #endif
-
-+#if defined(__FreeBSD_version) && __FreeBSD_version >= 400000
-+#define CURRENT_USER
-+#endif
-+
- #ifdef CURRENT_USER
- extern struct passwd *getpwuid ();
-+#if defined(__FreeBSD_version) && __FreeBSD_version >= 400000
-+extern uid_t geteuid ();
-+#else
- extern unsigned short geteuid ();
-+#endif
- static struct passwd *my_entry;
- #define cuserid(s) \
- (my_entry = getpwuid (((int) geteuid ())), \
diff --git a/editors/xemacs/files/patch-aj b/editors/xemacs/files/patch-aj
deleted file mode 100644
index ec7bc9284938..000000000000
--- a/editors/xemacs/files/patch-aj
+++ /dev/null
@@ -1,19 +0,0 @@
---- ./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 @@
- #include <stddef.h>
- #endif
- #define LD_SWITCH_SYSTEM
-+#ifdef __alpha__
-+#define START_FILES pre-crt0.o /usr/lib/crt1.o /usr/lib/crtbegin.o
-+#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 LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o /usr/lib/crtn.o
-+#endif
- #define LINKER "$(CC) -nostdlib"
-+#define UNEXEC unexelf.o
- #undef LIB_GCC
- #define LIB_GCC
-
diff --git a/editors/xemacs/files/patch-ak b/editors/xemacs/files/patch-ak
deleted file mode 100644
index a45db5e1084d..000000000000
--- a/editors/xemacs/files/patch-ak
+++ /dev/null
@@ -1,17 +0,0 @@
---- ./src/unexelf.c~ Sun Aug 15 03:29:56 1999
-+++ ./src/unexelf.c Tue Nov 2 10:24:55 1999
-@@ -515,6 +515,14 @@
- # include <sys/exec_elf.h>
- #endif
-
-+#if defined(__FreeBSD__) && defined(__alpha__)
-+# ifdef __STDC__
-+# define ElfW(type) Elf64_##type
-+# else
-+# define ElfW(type) Elf64_/**/type
-+# endif
-+#endif
-+
- #if __GNU_LIBRARY__ - 0 >= 6
- # include <link.h> /* get ElfW etc */
- #endif
diff --git a/editors/xemacs/files/xemacs21.sh b/editors/xemacs/files/xemacs21.sh
deleted file mode 100644
index 80166e668d5f..000000000000
--- a/editors/xemacs/files/xemacs21.sh
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/bin/sh
-# script to create the lock directory in case it was
-# removed in /etc/rc
-#echo -n ' Xemacs'
-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
-exit 0