File: configure.in

package info (click to toggle)
desproxy 0.1.0~pre3-10
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 432 kB
  • sloc: ansic: 1,753; makefile: 81; sh: 29
file content (26 lines) | stat: -rw-r--r-- 675 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
# Process this file with autoconf to produce a configure script.
AC_INIT
AC_CONFIG_SRCDIR([src/desproxy.c])
AC_CONFIG_HEADER([config.h])

# Checks for programs.
AC_PROG_CC
AC_PROG_INSTALL
AC_PROG_MAKE_SET

# Checks for libraries.

# Checks for header files.
AC_CHECK_HEADERS([arpa/inet.h errno.h libintl.h locale.h netdb.h netinet/in.h stdlib.h string.h sys/socket.h sys/time.h unistd.h])

# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_TIME

# Checks for library functions.
AC_FUNC_MEMCMP
AC_HEADER_STDC
AC_CHECK_FUNCS([gethostbyname inet_ntoa memset select setlocale socket])

AC_CONFIG_FILES([Makefile
                 src/Makefile])
AC_OUTPUT