File: configure.in

package info (click to toggle)
libxcrypt 1%3A2.4-3.1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,672 kB
  • ctags: 286
  • sloc: sh: 8,666; ansic: 2,905; makefile: 98
file content (32 lines) | stat: -rw-r--r-- 758 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# Process this file with autoconf to produce a configure script.
AC_INIT(xcrypt, 2.4, http://www.suse.de/feedback, libxcrypt)
AM_INIT_AUTOMAKE
AC_CONFIG_SRCDIR([src/xcrypt.h])
AM_CONFIG_HEADER([config.h])
AC_PREFIX_DEFAULT(/usr)

# Checks for programs.
AC_PROG_CC
AM_PROG_AS
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL

# Checks for libraries.

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([limits.h stdint.h stdlib.h string.h sys/param.h sys/time.h])
AC_CHECK_HEADERS([bits/libc-lock.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_C_CONST
AC_TYPE_SIZE_T

# Checks for library functions.
AC_FUNC_ALLOCA
AC_FUNC_FORK
AC_FUNC_MEMCMP
AC_TYPE_SIGNAL
AC_CHECK_FUNCS([memchr memset strcspn strdup])

AC_OUTPUT([Makefile src/Makefile])