aboutsummaryrefslogtreecommitdiff
path: root/editors/xemacs-devel/files
diff options
context:
space:
mode:
authorGary Jennejohn <gj@FreeBSD.org>1999-06-22 22:02:00 +0000
committerGary Jennejohn <gj@FreeBSD.org>1999-06-22 22:02:00 +0000
commit667b857a75108f87c7d632300d8daa76d4cfd5b8 (patch)
treee7cab26553335217e3efb1d07df88eeaa8e9da87 /editors/xemacs-devel/files
parentd7b0c7f42f7ce99e3693b99cc5a34335ca4ea696 (diff)
downloadports-667b857a75108f87c7d632300d8daa76d4cfd5b8.tar.gz
ports-667b857a75108f87c7d632300d8daa76d4cfd5b8.zip
Notes
Diffstat (limited to 'editors/xemacs-devel/files')
-rw-r--r--editors/xemacs-devel/files/patch-af20
-rw-r--r--editors/xemacs-devel/files/xemacs21.sh14
2 files changed, 24 insertions, 10 deletions
diff --git a/editors/xemacs-devel/files/patch-af b/editors/xemacs-devel/files/patch-af
index b42cbd138a13..dcf71c249c80 100644
--- a/editors/xemacs-devel/files/patch-af
+++ b/editors/xemacs-devel/files/patch-af
@@ -1,11 +1,11 @@
---- configure Thu Nov 20 03:13:44 1997
-+++ configure.n Tue Dec 9 09:55:11 1997
-@@ -9706,7 +9706,7 @@
-
- fi
- if test "$with_database_berkdb" = "yes"; then
-- 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 9712 "configure"
+--- configure.orig Wed May 26 06:28:12 1999
++++ configure Wed May 26 06:28:08 1999
+@@ -11172,7 +11172,7 @@
+ if test "$with_database_berkdb" != "no"; then
+ echo $ac_n "checking for Berkeley db.h""... $ac_c" 1>&6
+ echo "configure:11175: 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 11178 "configure"
#include "confdefs.h"
diff --git a/editors/xemacs-devel/files/xemacs21.sh b/editors/xemacs-devel/files/xemacs21.sh
new file mode 100644
index 000000000000..80166e668d5f
--- /dev/null
+++ b/editors/xemacs-devel/files/xemacs21.sh
@@ -0,0 +1,14 @@
+#!/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