diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/s/gnu-linux.h | 6 |
2 files changed, 9 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index b08fde7317e..12a6ef0dd1c 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2006-09-23 Romain Francoise <romain@orebokech.com> | ||
| 2 | |||
| 3 | * s/gnu-linux.h (MAIL_USE_FLOCK): Check for HAVE_LIBLOCKFILE too. | ||
| 4 | |||
| 1 | 2006-09-23 Kenichi Handa <handa@m17n.org> | 5 | 2006-09-23 Kenichi Handa <handa@m17n.org> |
| 2 | 6 | ||
| 3 | * keymap.c (Fmap_keymap): Docstring mentions about generic | 7 | * keymap.c (Fmap_keymap): Docstring mentions about generic |
diff --git a/src/s/gnu-linux.h b/src/s/gnu-linux.h index 817f1facdee..55d9a725293 100644 --- a/src/s/gnu-linux.h +++ b/src/s/gnu-linux.h | |||
| @@ -142,8 +142,12 @@ Boston, MA 02110-1301, USA. */ | |||
| 142 | movemail.c will use `maillock' when MAILDIR, HAVE_LIBMAIL and | 142 | movemail.c will use `maillock' when MAILDIR, HAVE_LIBMAIL and |
| 143 | HAVE_MAILLOCK_H are defined, so the following appears to be the | 143 | HAVE_MAILLOCK_H are defined, so the following appears to be the |
| 144 | correct logic. -- fx */ | 144 | correct logic. -- fx */ |
| 145 | /* We must check for HAVE_LIBLOCKFILE too, as movemail does. | ||
| 146 | liblockfile is a Free Software replacement for libmail, used on | ||
| 147 | Debian systems and elsewhere. -rfr */ | ||
| 145 | 148 | ||
| 146 | #if !(defined (HAVE_LIBMAIL) && defined (HAVE_MAILLOCK_H)) | 149 | #if !((defined (HAVE_LIBMAIL) || defined (HAVE_LIBLOCKFILE)) && \ |
| 150 | defined (HAVE_MAILLOCK_H)) | ||
| 147 | #define MAIL_USE_FLOCK | 151 | #define MAIL_USE_FLOCK |
| 148 | #endif | 152 | #endif |
| 149 | 153 | ||