aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbuild-ins.in3
-rw-r--r--src/epaths.in4
-rw-r--r--src/s/hpux.h2
-rw-r--r--src/s/sunos4shr.h2
-rw-r--r--src/x11term.h7
5 files changed, 7 insertions, 11 deletions
diff --git a/build-ins.in b/build-ins.in
index 0769f528ef0..872422f7645 100755
--- a/build-ins.in
+++ b/build-ins.in
@@ -82,8 +82,7 @@ dumplisppath=`echo ${dumplisppath} | ${removenullpaths}` ; \
82-e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${dumplisppath}'";' \ 82-e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${dumplisppath}'";' \
83-e 's;\(#.*PATH_EXEC\).*$$;\1 "${libdir}";' \ 83-e 's;\(#.*PATH_EXEC\).*$$;\1 "${libdir}";' \
84-e 's;\(#.*PATH_DATA\).*$$;\1 "${datadir}";' \ 84-e 's;\(#.*PATH_DATA\).*$$;\1 "${datadir}";' \
85-e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";' \ 85-e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";'
86-e 's;\(#.*PATH_SUPERLOCK\).*$$;\1 "${lockdir}/!!!SuperLock!!!";'
87 86
88(cd lib-src; make) || exit 1 87(cd lib-src; make) || exit 1
89(cd src; make) || exit 1 88(cd src; make) || exit 1
diff --git a/src/epaths.in b/src/epaths.in
index 7d92875bd88..ed15aca17ac 100644
--- a/src/epaths.in
+++ b/src/epaths.in
@@ -27,7 +27,3 @@
27 should be writable by everyone. THE STRING MUST END WITH A 27 should be writable by everyone. THE STRING MUST END WITH A
28 SLASH!!! */ 28 SLASH!!! */
29#define PATH_LOCK "/usr/local/lib/emacs/lock/" 29#define PATH_LOCK "/usr/local/lib/emacs/lock/"
30
31/* the name of the file !!!SuperLock!!! in the directory
32 specified by PATH_LOCK. Yes, this is redundant. */
33#define PATH_SUPERLOCK "/usr/local/lib/emacs/lock/!!!SuperLock!!!"
diff --git a/src/s/hpux.h b/src/s/hpux.h
index e146501004c..945835982a8 100644
--- a/src/s/hpux.h
+++ b/src/s/hpux.h
@@ -199,7 +199,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
199#define srand srand48 199#define srand srand48
200 200
201/* In hpux, the symbol SIGIO is defined, but the feature 201/* In hpux, the symbol SIGIO is defined, but the feature
202 does not really exist. 202 doesn't work in the way Emacs needs it to.
203 203
204 Here we assume that signal.h is included before config.h 204 Here we assume that signal.h is included before config.h
205 so that we can override it here. */ 205 so that we can override it here. */
diff --git a/src/s/sunos4shr.h b/src/s/sunos4shr.h
index 2b665513b19..c5bcf838e61 100644
--- a/src/s/sunos4shr.h
+++ b/src/s/sunos4shr.h
@@ -27,4 +27,4 @@
27 27
28#define UNEXEC unexsunos4.o 28#define UNEXEC unexsunos4.o
29#define RUN_TIME_REMAP 29#define RUN_TIME_REMAP
30#define LD_CMD cc 30#define LINKER cc
diff --git a/src/x11term.h b/src/x11term.h
index c6f24ba91eb..367eeaacc95 100644
--- a/src/x11term.h
+++ b/src/x11term.h
@@ -13,11 +13,12 @@
13 13
14#define BLOCK_INPUT_DECLARE() int BLOCK_INPUT_mask 14#define BLOCK_INPUT_DECLARE() int BLOCK_INPUT_mask
15#ifdef SIGIO 15#ifdef SIGIO
16#define BLOCK_INPUT() BLOCK_INPUT_mask = sigblock (sigmask (SIGIO)) 16#define BLOCK_INPUT() EMACS_SIGBLOCKX (SIGIO, BLOCK_INPUT_mask)
17#define UNBLOCK_INPUT() sigsetmask (BLOCK_INPUT_mask) 17#define UNBLOCK_INPUT() \
18 do { int _dummy; EMACS_SIGSETMASK (BLOCK_INPUT_mask, _dummy); } while (0)
18#else /* not SIGIO */ 19#else /* not SIGIO */
19#define BLOCK_INPUT() 20#define BLOCK_INPUT()
20#define UNBLOCK_INPUT() 21#define UNBLOCK_INPUT()
21#endif /* SIGIO */ 22#endif /* SIGIO */
22 23
23#define CLASS "emacs" /* class id for GNU Emacs, used in .Xdefaults, etc. */ 24#define CLASS "Emacs" /* class id for GNU Emacs, used in .Xdefaults, etc. */