diff options
| author | Juanma Barranquero | 2012-08-01 02:29:59 +0200 |
|---|---|---|
| committer | Juanma Barranquero | 2012-08-01 02:29:59 +0200 |
| commit | 552a99b4cb5474337048053c2e7f0dd9eef9b1cb (patch) | |
| tree | 8cc3f2a0fa2c784bfae8c72694ad0511b1a80a9f /src | |
| parent | 0d49da68b9cdc70a1f3ced0cae0b480ace5e28fc (diff) | |
| download | emacs-552a99b4cb5474337048053c2e7f0dd9eef9b1cb.tar.gz emacs-552a99b4cb5474337048053c2e7f0dd9eef9b1cb.zip | |
Adapt Windows port to recent changes in autogen/config.in.
* lib-src/makefile.w32-in (CONFIG_H): Update dependencies.
(CONF_POST_H): New macro.
* lib/makefile.w32-in (CONFIG_H): Update dependencies.
(CONF_POST_H): New macro.
* nt/config.nt: Sync with autogen/config.in.
Remove code moved to conf_post.h and include <conf_post.h>
(NULL_DEVICE, SEPCHAR, SIGNAL_H_AHB, TIOCSIGSEND, USER_FULL_NAME)
(USG5_4, WRETCODE, _longjmp, _setjmp, wait3): New macros.
* src/makefile.w32-in (CONFIG_H): Update dependencies.
(CONF_POST_H): New macro.
* src/s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 7 | ||||
| -rw-r--r-- | src/makefile.w32-in | 5 | ||||
| -rw-r--r-- | src/s/ms-w32.h | 7 |
3 files changed, 10 insertions, 9 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 9b8de9ff23e..bf172320eed 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 2012-08-01 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * makefile.w32-in (CONFIG_H): Update dependencies. | ||
| 4 | (CONF_POST_H): New macro. | ||
| 5 | |||
| 6 | * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt. | ||
| 7 | |||
| 1 | 2012-07-31 Glenn Morris <rgm@gnu.org> | 8 | 2012-07-31 Glenn Morris <rgm@gnu.org> |
| 2 | 9 | ||
| 3 | * Makefile.in (S_FILE): No longer set by configure. | 10 | * Makefile.in (S_FILE): No longer set by configure. |
diff --git a/src/makefile.w32-in b/src/makefile.w32-in index 10ab0619fb4..ee5424cf757 100644 --- a/src/makefile.w32-in +++ b/src/makefile.w32-in | |||
| @@ -405,9 +405,10 @@ CODING_H = $(SRC)/coding.h \ | |||
| 405 | $(SRC)/composite.h | 405 | $(SRC)/composite.h |
| 406 | MS_W32_H = $(SRC)/s/ms-w32.h \ | 406 | MS_W32_H = $(SRC)/s/ms-w32.h \ |
| 407 | $(NT_INC)/sys/stat.h | 407 | $(NT_INC)/sys/stat.h |
| 408 | CONFIG_H = $(SRC)/config.h \ | 408 | CONF_POST_H = $(SRC)/conf_post.h \ |
| 409 | $(SRC)/conf_post.h \ | ||
| 410 | $(MS_W32_H) | 409 | $(MS_W32_H) |
| 410 | CONFIG_H = $(SRC)/config.h \ | ||
| 411 | $(CONF_POST_H) | ||
| 411 | DIR_H = $(NT_INC)/sys/dir.h \ | 412 | DIR_H = $(NT_INC)/sys/dir.h \ |
| 412 | $(SRC)/ndir.h | 413 | $(SRC)/ndir.h |
| 413 | W32GUI_H = $(SRC)/w32gui.h \ | 414 | W32GUI_H = $(SRC)/w32gui.h \ |
diff --git a/src/s/ms-w32.h b/src/s/ms-w32.h index bcc4c4235ee..ca4c1001ec9 100644 --- a/src/s/ms-w32.h +++ b/src/s/ms-w32.h | |||
| @@ -52,10 +52,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 52 | 52 | ||
| 53 | #define MAIL_USE_SYSTEM_LOCK 1 | 53 | #define MAIL_USE_SYSTEM_LOCK 1 |
| 54 | 54 | ||
| 55 | /* If the character used to separate elements of the executable path | ||
| 56 | is not ':', #define this to be the appropriate character constant. */ | ||
| 57 | #define SEPCHAR ';' | ||
| 58 | |||
| 59 | /* Define to 1 if GCC-style __attribute__ ((__aligned__ (expr))) works. */ | 55 | /* Define to 1 if GCC-style __attribute__ ((__aligned__ (expr))) works. */ |
| 60 | #ifdef __GNUC__ | 56 | #ifdef __GNUC__ |
| 61 | #define HAVE_ATTRIBUTE_ALIGNED 1 | 57 | #define HAVE_ATTRIBUTE_ALIGNED 1 |
| @@ -141,9 +137,6 @@ struct sigaction { | |||
| 141 | #define SIG_SETMASK 2 | 137 | #define SIG_SETMASK 2 |
| 142 | #define SIG_UNBLOCK 3 | 138 | #define SIG_UNBLOCK 3 |
| 143 | 139 | ||
| 144 | /* The null device on Windows NT. */ | ||
| 145 | #define NULL_DEVICE "NUL:" | ||
| 146 | |||
| 147 | #ifndef MAXPATHLEN | 140 | #ifndef MAXPATHLEN |
| 148 | #define MAXPATHLEN _MAX_PATH | 141 | #define MAXPATHLEN _MAX_PATH |
| 149 | #endif | 142 | #endif |