comparison configure.in @ 41853:2d94a7f54504

(AC_PREREQ): Bump from 2.50 to 2.51; needed for vfork. (AC_FUNC_VFORK): Remove. (AC_FUNC_FORK): Add. (HAVE_DES_H, HAVE_KRB5_H): Properly quote args of AC_CHECK_HEADERS; this is required by recent Autoconf versions.
author Paul Eggert <eggert@twinsun.com>
date Fri, 07 Dec 2001 05:50:16 +0000
parents 6a354e487a71
children c7e803b60fc6
comparison
equal deleted inserted replaced
41852:4330aadac353 41853:2d94a7f54504
21 dnl You should have received a copy of the GNU General Public License 21 dnl You should have received a copy of the GNU General Public License
22 dnl along with GNU Emacs; see the file COPYING. If not, write to the 22 dnl along with GNU Emacs; see the file COPYING. If not, write to the
23 dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330, 23 dnl Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 dnl Boston, MA 02111-1307, USA. 24 dnl Boston, MA 02111-1307, USA.
25 25
26 AC_PREREQ(2.50)dnl 26 AC_PREREQ(2.51)dnl
27 AC_INIT(src/lisp.h) 27 AC_INIT(src/lisp.h)
28 AC_CONFIG_HEADER(src/config.h:src/config.in) 28 AC_CONFIG_HEADER(src/config.h:src/config.in)
29 29
30 dnl Support for --program-prefix, --program-suffix and 30 dnl Support for --program-prefix, --program-suffix and
31 dnl --program-transform-name options 31 dnl --program-transform-name options
2012 2012
2013 if test "${with_kerberos5+set}" = set; then 2013 if test "${with_kerberos5+set}" = set; then
2014 AC_CHECK_HEADERS(krb5.h) 2014 AC_CHECK_HEADERS(krb5.h)
2015 else 2015 else
2016 AC_CHECK_HEADERS(des.h,, 2016 AC_CHECK_HEADERS(des.h,,
2017 AC_CHECK_HEADERS(kerberosIV/des.h,, 2017 [AC_CHECK_HEADERS(kerberosIV/des.h,,
2018 AC_CHECK_HEADERS(kerberos/des.h))) 2018 [AC_CHECK_HEADERS(kerberos/des.h)])])
2019 AC_CHECK_HEADERS(krb.h,, 2019 AC_CHECK_HEADERS(krb.h,,
2020 AC_CHECK_HEADERS(kerberosIV/krb.h,, 2020 [AC_CHECK_HEADERS(kerberosIV/krb.h,,
2021 AC_CHECK_HEADERS(kerberos/krb.h))) 2021 [AC_CHECK_HEADERS(kerberos/krb.h)])])
2022 fi 2022 fi
2023 AC_CHECK_HEADERS(com_err.h) 2023 AC_CHECK_HEADERS(com_err.h)
2024 fi 2024 fi
2025 2025
2026 # Solaris requires -lintl if you want strerror (which calls dgettext) 2026 # Solaris requires -lintl if you want strerror (which calls dgettext)
2146 AC_DEFINE(HAVE_DEV_PTMX) 2146 AC_DEFINE(HAVE_DEV_PTMX)
2147 else 2147 else
2148 AC_MSG_RESULT(no) 2148 AC_MSG_RESULT(no)
2149 fi 2149 fi
2150 2150
2151 AC_FUNC_VFORK 2151 AC_FUNC_FORK
2152 2152
2153 # Fixme: This should be replaced when we have autoconf 2.14. 2153 # Fixme: This should be replaced when we have autoconf 2.14.
2154 AC_SIZE_T 2154 AC_SIZE_T
2155 2155
2156 # Set up the CFLAGS for real compilation, so we can substitute it. 2156 # Set up the CFLAGS for real compilation, so we can substitute it.