diff options
| author | Glenn Morris | 2010-05-09 17:07:47 -0700 |
|---|---|---|
| committer | Glenn Morris | 2010-05-09 17:07:47 -0700 |
| commit | 7490175bc38099aa093715116b8d96e7319e7ca4 (patch) | |
| tree | 783ea2f527709ca56d1da6cfed56fca2832607aa /lib-src | |
| parent | 79ccd68f683c1e46bc5dcc12f5b232a75a42ea88 (diff) | |
| download | emacs-7490175bc38099aa093715116b8d96e7319e7ca4.tar.gz emacs-7490175bc38099aa093715116b8d96e7319e7ca4.zip | |
Move MAIL_USE_FLOCK, MAIL_USE_LOCKF, BLESSMAIL_TARGET from cpp to configure.
* configure.in (MAIL_USE_FLOCK, MAIL_USE_LOCKF): New AC_DEFINEs.
(BLESSMAIL_TARGET): New output variable.
* lib-src/Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp.
* src/s/aix4-2.h (MAIL_USE_LOCKF):
* src/s/bsd-common.h (MAIL_USE_FLOCK):
* src/s/darwin.h (MAIL_USE_FLOCK):
* src/s/gnu-linux.h (MAIL_USE_FLOCK):
* src/s/irix6-5.h (MAIL_USE_FLOCK):
* src/s/template.h (MAIL_USE_FLOCK):
Move to configure.
* src/s/ms-w32.h: Comment.
* msdos/sed3v2.inp (BLESSMAIL_TARGET): Edit to need-blessmail.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 4 | ||||
| -rw-r--r-- | lib-src/Makefile.in | 10 |
2 files changed, 6 insertions, 8 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 9de05124720..c2a7b6f9ce3 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2010-05-10 Glenn Morris <rgm@gnu.org> | ||
| 2 | |||
| 3 | * Makefile.in (BLESSMAIL_TARGET): Set with configure, not cpp. | ||
| 4 | |||
| 1 | 2010-05-08 Christoph <cschol2112@googlemail.com> (tiny change) | 5 | 2010-05-08 Christoph <cschol2112@googlemail.com> (tiny change) |
| 2 | 6 | ||
| 3 | * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis | 7 | * makefile.w32-in (OTHER_PLATFORM_SUPPORT): Use parenthesis |
diff --git a/lib-src/Makefile.in b/lib-src/Makefile.in index 73953211cd4..cde26a5411f 100644 --- a/lib-src/Makefile.in +++ b/lib-src/Makefile.in | |||
| @@ -131,8 +131,8 @@ EXECUTABLES= ${UTILITIES} ${INSTALLABLES} ${SCRIPTS} ${INSTALLABLE_SCRIPTS} | |||
| 131 | # If neither flag is set, blessmail is used. | 131 | # If neither flag is set, blessmail is used. |
| 132 | MOVE_FLAGS= | 132 | MOVE_FLAGS= |
| 133 | 133 | ||
| 134 | ## May be reset below by cpp. | 134 | ## Empty if either MAIL_USE_FLOCK or MAIL_USE_LOCKF, else need-blessmail. |
| 135 | BLESSMAIL_TARGET= | 135 | BLESSMAIL_TARGET=@BLESSMAIL_TARGET@ |
| 136 | 136 | ||
| 137 | ## -lkrb if HAVE_LIBKRB or -lkrb4 if HAVE_LIBKRB4 | 137 | ## -lkrb if HAVE_LIBKRB or -lkrb4 if HAVE_LIBKRB4 |
| 138 | KRB4LIB=@KRB4LIB@ | 138 | KRB4LIB=@KRB4LIB@ |
| @@ -173,12 +173,6 @@ CPP_CFLAGS = $(C_SWITCH_SYSTEM) $(C_SWITCH_MACHINE) -DHAVE_CONFIG_H -I. -I../src | |||
| 173 | #endif | 173 | #endif |
| 174 | LOADLIBES=LIBS_SYSTEM | 174 | LOADLIBES=LIBS_SYSTEM |
| 175 | 175 | ||
| 176 | #ifndef MAIL_USE_FLOCK | ||
| 177 | #ifndef MAIL_USE_LOCKF | ||
| 178 | BLESSMAIL_TARGET = need-blessmail | ||
| 179 | #endif | ||
| 180 | #endif | ||
| 181 | |||
| 182 | 176 | ||
| 183 | .SUFFIXES: .m | 177 | .SUFFIXES: .m |
| 184 | 178 | ||