davfs2/configure.ac

98 lines
2.7 KiB
Plaintext
Raw Normal View History

2009-04-14 19:54:53 +00:00
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
2020-08-13 17:54:17 +00:00
# Copyright (C) 2006, 2007, 2008, 2009, 2012, 2020 Werner Baumann
2009-04-14 19:54:53 +00:00
#
# This file is part of davfs2.
#
# davfs2 is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# davfs2 is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with davfs2; if not, write to the Free Software Foundation,
# Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA. */
2012-01-07 19:17:13 +00:00
AC_PREREQ(2.67)
2010-04-30 19:48:55 +00:00
AC_INIT(davfs2, 1.4.6, http://savannah.nongnu.org/projects/davfs2)
2009-04-14 19:54:53 +00:00
AC_CONFIG_SRCDIR([src/cache.c])
AC_CONFIG_AUX_DIR([config])
AM_INIT_AUTOMAKE
AC_CONFIG_HEADER([config.h])
# Checks for programs.
AC_PROG_CC
2011-01-02 21:26:10 +00:00
AC_PROG_GCC_TRADITIONAL
2009-04-14 19:54:53 +00:00
AC_PROG_INSTALL
AC_PROG_LN_S
# Checks for libraries.
2015-04-20 10:21:54 +00:00
AM_GNU_GETTEXT_VERSION(0.19)
2009-04-14 19:54:53 +00:00
AM_GNU_GETTEXT([external])
2020-06-05 09:50:07 +00:00
NE_REQUIRE_VERSIONS([0], [27 28 29 30 31])
2009-04-14 19:54:53 +00:00
DAV_CHECK_NEON
# Checks for header files.
AC_HEADER_DIRENT
2011-01-02 21:26:10 +00:00
AC_HEADER_MAJOR
2009-04-14 19:54:53 +00:00
AC_HEADER_STDC
2011-01-02 21:26:10 +00:00
AC_HEADER_TIME
2014-04-05 18:27:36 +00:00
AC_CHECK_HEADERS([fcntl.h langinfo.h libintl.h limits.h locale.h mntent.h stddef.h stdint.h stdlib.h string.h sys/file.h sys/mount.h sys/time.h syslog.h termios.h unistd.h utime.h])
2009-04-14 19:54:53 +00:00
# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_UID_T
AC_C_INLINE
AC_TYPE_INT16_T
AC_TYPE_INT32_T
AC_TYPE_INT8_T
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
AC_TYPE_SSIZE_T
AC_CHECK_MEMBERS([struct stat.st_blksize])
AC_STRUCT_TM
AC_TYPE_UINT32_T
AC_TYPE_UINT64_T
AC_C_VOLATILE
AC_CHECK_SIZEOF([void *])
# Checks for library functions.
AC_FUNC_CHOWN
AC_FUNC_CLOSEDIR_VOID
AC_FUNC_ERROR_AT_LINE
AC_FUNC_FORK
2014-04-20 09:12:27 +00:00
AC_FUNC_GETGROUPS
2009-04-14 19:54:53 +00:00
AC_FUNC_GETMNTENT
AC_FUNC_MALLOC
AC_FUNC_SELECT_ARGTYPES
AC_FUNC_STRFTIME
AC_FUNC_STAT
AC_FUNC_UTIME_NULL
2012-01-07 19:44:24 +00:00
AC_CHECK_FUNCS([ftruncate getmntent memset mkdir nl_langinfo rpmatch select setlocale strcasecmp strchr strdup strerror strndup strpbrk strrchr strstr strtol strtoull utime])
2009-04-14 19:54:53 +00:00
# Misc.
DAV_DEFAULTS
DAV_LFS
2011-01-02 21:26:10 +00:00
DAV_LINGUAS([])
2009-04-14 19:54:53 +00:00
AC_DEFINE([_GNU_SOURCE], 1, [Define to enable GNU extensions])
AC_CONFIG_FILES([Makefile
po/Makefile.in
etc/Makefile
man/Makefile
man/de/Makefile
man/es/Makefile
2020-08-12 10:40:55 +00:00
src/Makefile])
2009-04-14 19:54:53 +00:00
AC_OUTPUT
DAV_MESSAGE