diff options
| -rw-r--r-- | nt/ChangeLog | 6 | ||||
| -rw-r--r-- | nt/config.nt | 18 |
2 files changed, 6 insertions, 18 deletions
diff --git a/nt/ChangeLog b/nt/ChangeLog index b970754c09e..ad8c53a27b8 100644 --- a/nt/ChangeLog +++ b/nt/ChangeLog | |||
| @@ -1,3 +1,9 @@ | |||
| 1 | 2012-11-05 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * config.nt: Sync with autogen/config.in. | ||
| 4 | (DISPNEW_NEEDS_STDIO_EXT, GETPGRP_VOID, HAVE_SETPGID, HAVE_SETSID) | ||
| 5 | (PENDING_OUTPUT_COUNT, SETPGRP_RELEASES_CTTY): Remove. | ||
| 6 | |||
| 1 | 2012-11-04 Juanma Barranquero <lekktu@gmail.com> | 7 | 2012-11-04 Juanma Barranquero <lekktu@gmail.com> |
| 2 | 8 | ||
| 3 | * config.nt: Sync with autogen/config.in. | 9 | * config.nt: Sync with autogen/config.in. |
diff --git a/nt/config.nt b/nt/config.nt index 94af5bf571e..443a1025761 100644 --- a/nt/config.nt +++ b/nt/config.nt | |||
| @@ -118,9 +118,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 118 | /* Character that separates directories in a file name. */ | 118 | /* Character that separates directories in a file name. */ |
| 119 | #define DIRECTORY_SEP '/' | 119 | #define DIRECTORY_SEP '/' |
| 120 | 120 | ||
| 121 | /* Define if dispnew.c should include stdio_ext.h. */ | ||
| 122 | #undef DISPNEW_NEEDS_STDIO_EXT | ||
| 123 | |||
| 124 | /* Define if process.c does not need to close a pty to make it a controlling | 121 | /* Define if process.c does not need to close a pty to make it a controlling |
| 125 | terminal (it is already a controlling terminal of the subprocess, because | 122 | terminal (it is already a controlling terminal of the subprocess, because |
| 126 | we did ioctl TIOCSCTTY). */ | 123 | we did ioctl TIOCSCTTY). */ |
| @@ -183,9 +180,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 183 | setjmp does work. */ | 180 | setjmp does work. */ |
| 184 | #define GC_SETJMP_WORKS 1 | 181 | #define GC_SETJMP_WORKS 1 |
| 185 | 182 | ||
| 186 | /* Define to 1 if the `getpgrp' function requires zero arguments. */ | ||
| 187 | #define GETPGRP_VOID 1 | ||
| 188 | |||
| 189 | /* Define if gettimeofday clobbers the localtime buffer. */ | 183 | /* Define if gettimeofday clobbers the localtime buffer. */ |
| 190 | #undef GETTIMEOFDAY_CLOBBERS_LOCALTIME | 184 | #undef GETTIMEOFDAY_CLOBBERS_LOCALTIME |
| 191 | 185 | ||
| @@ -790,15 +784,9 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 790 | /* Define to 1 if you have the `setlocale' function. */ | 784 | /* Define to 1 if you have the `setlocale' function. */ |
| 791 | #define HAVE_SETLOCALE 1 | 785 | #define HAVE_SETLOCALE 1 |
| 792 | 786 | ||
| 793 | /* Define to 1 if you have the `setpgid' function. */ | ||
| 794 | #undef HAVE_SETPGID | ||
| 795 | |||
| 796 | /* Define to 1 if you have the `setrlimit' function. */ | 787 | /* Define to 1 if you have the `setrlimit' function. */ |
| 797 | #undef HAVE_SETRLIMIT | 788 | #undef HAVE_SETRLIMIT |
| 798 | 789 | ||
| 799 | /* Define to 1 if you have the `setsid' function. */ | ||
| 800 | #undef HAVE_SETSID | ||
| 801 | |||
| 802 | /* Define to 1 if you have the `shutdown' function. */ | 790 | /* Define to 1 if you have the `shutdown' function. */ |
| 803 | #define HAVE_SHUTDOWN 1 | 791 | #define HAVE_SHUTDOWN 1 |
| 804 | 792 | ||
| @@ -1224,9 +1212,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1224 | /* Define to the version of this package. */ | 1212 | /* Define to the version of this package. */ |
| 1225 | #undef PACKAGE_VERSION | 1213 | #undef PACKAGE_VERSION |
| 1226 | 1214 | ||
| 1227 | /* Number of chars of output in the buffer of a stdio stream. */ | ||
| 1228 | #undef PENDING_OUTPUT_COUNT | ||
| 1229 | |||
| 1230 | /* the number of pending output bytes on stream 'fp' */ | 1215 | /* the number of pending output bytes on stream 'fp' */ |
| 1231 | #define PENDING_OUTPUT_N_BYTES (fp->_ptr - fp->_base) | 1216 | #define PENDING_OUTPUT_N_BYTES (fp->_ptr - fp->_base) |
| 1232 | 1217 | ||
| @@ -1285,9 +1270,6 @@ along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ | |||
| 1285 | /* Character that separates PATH elements. */ | 1270 | /* Character that separates PATH elements. */ |
| 1286 | #define SEPCHAR ';' | 1271 | #define SEPCHAR ';' |
| 1287 | 1272 | ||
| 1288 | /* Define if process.c:child_setup should not call setpgrp. */ | ||
| 1289 | #undef SETPGRP_RELEASES_CTTY | ||
| 1290 | |||
| 1291 | /* How to set up a slave PTY, if needed. */ | 1273 | /* How to set up a slave PTY, if needed. */ |
| 1292 | #undef SETUP_SLAVE_PTY | 1274 | #undef SETUP_SLAVE_PTY |
| 1293 | 1275 | ||