# HG changeset patch # User Jim Blandy # Date 704701252 0 # Node ID ce011f7cd03f4b26c6cdc29692a26cbb59080c68 # Parent 2bb7f23b7ea52609585512d822930e59f7b2e68b entered into RCS diff -r 2bb7f23b7ea5 -r ce011f7cd03f build-ins.in --- a/build-ins.in Fri May 01 06:20:46 1992 +0000 +++ b/build-ins.in Fri May 01 06:20:52 1992 +0000 @@ -82,8 +82,7 @@ -e 's;\(#.*PATH_DUMPLOADSEARCH\).*$$;\1 "'$${dumplisppath}'";' \ -e 's;\(#.*PATH_EXEC\).*$$;\1 "${libdir}";' \ -e 's;\(#.*PATH_DATA\).*$$;\1 "${datadir}";' \ --e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";' \ --e 's;\(#.*PATH_SUPERLOCK\).*$$;\1 "${lockdir}/!!!SuperLock!!!";' +-e 's;\(#.*PATH_LOCK\).*$$;\1 "${lockdir}/";' (cd lib-src; make) || exit 1 (cd src; make) || exit 1 diff -r 2bb7f23b7ea5 -r ce011f7cd03f src/=x11term.h --- a/src/=x11term.h Fri May 01 06:20:46 1992 +0000 +++ b/src/=x11term.h Fri May 01 06:20:52 1992 +0000 @@ -13,11 +13,12 @@ #define BLOCK_INPUT_DECLARE() int BLOCK_INPUT_mask #ifdef SIGIO -#define BLOCK_INPUT() BLOCK_INPUT_mask = sigblock (sigmask (SIGIO)) -#define UNBLOCK_INPUT() sigsetmask (BLOCK_INPUT_mask) +#define BLOCK_INPUT() EMACS_SIGBLOCKX (SIGIO, BLOCK_INPUT_mask) +#define UNBLOCK_INPUT() \ + do { int _dummy; EMACS_SIGSETMASK (BLOCK_INPUT_mask, _dummy); } while (0) #else /* not SIGIO */ #define BLOCK_INPUT() #define UNBLOCK_INPUT() #endif /* SIGIO */ -#define CLASS "emacs" /* class id for GNU Emacs, used in .Xdefaults, etc. */ +#define CLASS "Emacs" /* class id for GNU Emacs, used in .Xdefaults, etc. */ diff -r 2bb7f23b7ea5 -r ce011f7cd03f src/epaths.in --- a/src/epaths.in Fri May 01 06:20:46 1992 +0000 +++ b/src/epaths.in Fri May 01 06:20:52 1992 +0000 @@ -27,7 +27,3 @@ should be writable by everyone. THE STRING MUST END WITH A SLASH!!! */ #define PATH_LOCK "/usr/local/lib/emacs/lock/" - -/* the name of the file !!!SuperLock!!! in the directory - specified by PATH_LOCK. Yes, this is redundant. */ -#define PATH_SUPERLOCK "/usr/local/lib/emacs/lock/!!!SuperLock!!!" diff -r 2bb7f23b7ea5 -r ce011f7cd03f src/s/hpux.h --- a/src/s/hpux.h Fri May 01 06:20:46 1992 +0000 +++ b/src/s/hpux.h Fri May 01 06:20:52 1992 +0000 @@ -199,7 +199,7 @@ #define srand srand48 /* In hpux, the symbol SIGIO is defined, but the feature - does not really exist. + doesn't work in the way Emacs needs it to. Here we assume that signal.h is included before config.h so that we can override it here. */ diff -r 2bb7f23b7ea5 -r ce011f7cd03f src/s/sunos4shr.h --- a/src/s/sunos4shr.h Fri May 01 06:20:46 1992 +0000 +++ b/src/s/sunos4shr.h Fri May 01 06:20:52 1992 +0000 @@ -27,4 +27,4 @@ #define UNEXEC unexsunos4.o #define RUN_TIME_REMAP -#define LD_CMD cc +#define LINKER cc