Mercurial > emacs
changeset 51110:fca623d011f5
Append * to s390-*-linux-gnu case.
(LIBMAIL) <lockfile>: Don't define.
author | Dave Love <fx@gnu.org> |
---|---|
date | Tue, 20 May 2003 16:32:16 +0000 |
parents | cf8a7f2ef2c3 |
children | ac7ffb802e23 |
files | configure.in |
diffstat | 1 files changed, 12 insertions(+), 5 deletions(-) [+] |
line wrap: on
line diff
--- a/configure.in Tue May 20 16:27:57 2003 +0000 +++ b/configure.in Tue May 20 16:32:16 2003 +0000 @@ -618,7 +618,7 @@ i370-ibm-aix*) machine=ibm370aix opsys=usg5-3 ;; - s390-*-linux-gnu) + s390-*-linux-gnu* ) machine=ibms390 opsys=gnu-linux ;; rs6000-ibm-aix3.1* | powerpc-ibm-aix3.1* ) @@ -2198,10 +2198,10 @@ # On HPUX 9.01, -lm does not contain logb, so check for sqrt. AC_CHECK_LIB(m, sqrt) -# Check for mail-locking functions in a "mail" library +# Check for mail-locking functions in a "mail" library. Probably this should +# have the same check as for liblockfile below. AC_CHECK_LIB(mail, maillock) dnl Debian, at least: -dnl AC_CHECK_LIB(lockfile, maillock, [AC_DEFINE(HAVE_LIBMAIL)]) AC_CHECK_LIB(lockfile, maillock) # If we have the shared liblockfile, assume we must use it for mail # locking (e.g. Debian). If we couldn't link against liblockfile @@ -2215,9 +2215,8 @@ AC_MSG_ERROR([Shared liblockfile found but can't link against it. This probably means that movemail could lose mail. There may be a `development' package to install containing liblockfile.]) - else AC_DEFINE(LIBMAIL, -llockfile, [Define to -llockfile if it is usable.]) + else : fi - else : fi AC_CHECK_FUNCS(touchlock) AC_CHECK_HEADERS(maillock.h) @@ -2483,6 +2482,14 @@ dnl Fixme: AC_SYS_POSIX_TERMIOS should probably be used, but it's not clear dnl how the tty code is related to POSIX and/or other versions of termios. +dnl The following looks like a useful start. +dnl +dnl AC_SYS_POSIX_TERMIOS +dnl if test $ac_cv_sys_posix_termios = yes; then +dnl AC_DEFINE(HAVE_TERMIOS, 1, [Define to 1 if you have POSIX-style functions +dnl and macros for terminal control.]) +dnl AC_DEFINE(HAVE_TCATTR, 1, [Define to 1 if you have tcgetattr and tcsetattr.]) +dnl fi dnl Fixme: Use AC_FUNC_MEMCMP since memcmp is used. (Needs libobj replacement.)