File: configure.ac

package info (click to toggle)
unrar-free 1%3A0.0.1%2Bcvs20140707-4
  • links: PTS
  • area: main
  • in suites: bullseye, buster
  • size: 832 kB
  • ctags: 1,032
  • sloc: sh: 3,466; ansic: 2,890; makefile: 14
file content (30 lines) | stat: -rw-r--r-- 696 bytes parent folder | download | duplicates (5)
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
#                                               -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.

AC_PREREQ(2.59)
AC_INIT([unrar],[0.0.1],[benasselstine@canada.com])
AM_INIT_AUTOMAKE
AM_CONFIG_HEADER(config.h)

# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET

# Checks for header files.
AC_HEADER_STDC
AC_CHECK_HEADERS([limits.h stdlib.h string.h unistd.h])

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

# Checks for library functions.
AC_FUNC_MALLOC
AC_FUNC_REALLOC
AC_CHECK_FUNCS([atexit realpath setenv strchr])

AC_CONFIG_FILES([Makefile
                 src/Makefile])
AC_OUTPUT