diff options
| author | Glenn Morris | 2012-07-31 13:50:52 -0400 |
|---|---|---|
| committer | Glenn Morris | 2012-07-31 13:50:52 -0400 |
| commit | 8d8e2dfea4550988e389bf0d81eb24648a2438a5 (patch) | |
| tree | a33659de57a90dbd8c0acc9d406b015ad9dc38f3 | |
| parent | 1e0afd9a0f4273ca55345a6ae5412a5aa6c21690 (diff) | |
| download | emacs-8d8e2dfea4550988e389bf0d81eb24648a2438a5.tar.gz emacs-8d8e2dfea4550988e389bf0d81eb24648a2438a5.zip | |
Move AMPERSAND_FULL_NAME, subprocesses from conf_post.h to configure.ac
* configure.ac (AMPERSAND_FULL_NAME, subprocesses): Move here from conf_post.h.
* src/conf_post.h (AMPERSAND_FULL_NAME, subprocesses): Move to configure.ac.
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | configure.ac | 7 | ||||
| -rw-r--r-- | src/ChangeLog | 5 | ||||
| -rw-r--r-- | src/conf_post.h | 13 |
4 files changed, 17 insertions, 13 deletions
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-07-31 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * configure.ac (AMPERSAND_FULL_NAME, subprocesses): | ||
| 4 | Move here from conf_post.h. | ||
| 5 | |||
| 1 | 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru> | 6 | 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru> |
| 2 | 7 | ||
| 3 | Improve OpenMotif detection on GNU/Linux systems. | 8 | Improve OpenMotif detection on GNU/Linux systems. |
diff --git a/configure.ac b/configure.ac index 1de8766c63f..21ed77460a7 100644 --- a/configure.ac +++ b/configure.ac | |||
| @@ -3125,6 +3125,10 @@ dnl and macros for terminal control.]) | |||
| 3125 | dnl AC_DEFINE(HAVE_TCATTR, 1, [Define to 1 if you have tcgetattr and tcsetattr.]) | 3125 | dnl AC_DEFINE(HAVE_TCATTR, 1, [Define to 1 if you have tcgetattr and tcsetattr.]) |
| 3126 | dnl fi | 3126 | dnl fi |
| 3127 | 3127 | ||
| 3128 | dnl Turned on June 1996 supposing nobody will mind it. | ||
| 3129 | AC_DEFINE(AMPERSAND_FULL_NAME, 1, [Define to use the convention that & | ||
| 3130 | in the full name stands for the login id.]) | ||
| 3131 | |||
| 3128 | dnl Every platform that uses configure (ie every non-MS platform) | 3132 | dnl Every platform that uses configure (ie every non-MS platform) |
| 3129 | dnl supports this. There is a create-lockfiles option you can | 3133 | dnl supports this. There is a create-lockfiles option you can |
| 3130 | dnl customize if you do not want the lock files to be written. | 3134 | dnl customize if you do not want the lock files to be written. |
| @@ -3144,6 +3148,9 @@ dnl Compare with HAVE_INET_SOCKETS (which is unused...) above. | |||
| 3144 | AC_DEFINE(HAVE_SOCKETS, 1, [Define if the system supports | 3148 | AC_DEFINE(HAVE_SOCKETS, 1, [Define if the system supports |
| 3145 | 4.2-compatible sockets.]) | 3149 | 4.2-compatible sockets.]) |
| 3146 | 3150 | ||
| 3151 | dnl Everybody supports this, except MS-DOS. | ||
| 3152 | AC_DEFINE(subprocesses, 1, [Define to enable asynchronous subprocesses.]) | ||
| 3153 | |||
| 3147 | 3154 | ||
| 3148 | AH_TEMPLATE(NO_EDITRES, [Define if XEditRes should not be used.]) | 3155 | AH_TEMPLATE(NO_EDITRES, [Define if XEditRes should not be used.]) |
| 3149 | 3156 | ||
diff --git a/src/ChangeLog b/src/ChangeLog index 061f15da73d..fccb46f788e 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-07-31 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * conf_post.h (AMPERSAND_FULL_NAME, subprocesses): | ||
| 4 | Move to configure.ac. | ||
| 5 | |||
| 1 | 2012-07-31 Eli Zaretskii <eliz@gnu.org> | 6 | 2012-07-31 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | * .gdbinit (xframe): Adapt to introduction of FVAR and the | 8 | * .gdbinit (xframe): Adapt to introduction of FVAR and the |
diff --git a/src/conf_post.h b/src/conf_post.h index f84d6ae6f42..f8b76a1b19e 100644 --- a/src/conf_post.h +++ b/src/conf_post.h | |||
| @@ -102,19 +102,6 @@ char *_getpty(); | |||
| 102 | #endif | 102 | #endif |
| 103 | #endif /* USG5_4 */ | 103 | #endif /* USG5_4 */ |
| 104 | 104 | ||
| 105 | /* Define AMPERSAND_FULL_NAME if you use the convention | ||
| 106 | that & in the full name stands for the login id. */ | ||
| 107 | /* Turned on June 1996 supposing nobody will mind it. */ | ||
| 108 | #define AMPERSAND_FULL_NAME | ||
| 109 | |||
| 110 | /* `subprocesses' should be defined if you want to | ||
| 111 | have code for asynchronous subprocesses | ||
| 112 | (as used in M-x compile and M-x shell). | ||
| 113 | Only MSDOS does not support this (it overrides | ||
| 114 | this in its config_opsysfile below). */ | ||
| 115 | |||
| 116 | #define subprocesses | ||
| 117 | |||
| 118 | /* Include the os dependent file. */ | 105 | /* Include the os dependent file. */ |
| 119 | #ifdef config_opsysfile | 106 | #ifdef config_opsysfile |
| 120 | # include config_opsysfile | 107 | # include config_opsysfile |