blob: 929bb48c04628fe603b5e6b14f7f7f7289017d26 [file] [log] [blame]
Harald Welte4b233b42012-11-07 08:32:31 +01001# -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ(2.57)
5AC_INIT(libsmpp34, 1.10, ultraismo@yahoo.com)
6AC_CONFIG_AUX_DIR(aux_config)
7AM_INIT_AUTOMAKE
8AM_CONFIG_HEADER([aux_config/config.h])
9
10# Checks for programs.
11AC_PROG_CC
12AM_PROG_CC_C_O
13AC_PROG_LIBTOOL
14AC_PROG_INSTALL
15
16# Checks for libraries.
17
18# Checks for header files.
19AC_HEADER_STDC
20AC_CHECK_HEADERS([malloc.h netinet/in.h stdint.h string.h])
21
22# Checks for typedefs, structures, and compiler characteristics.
23
24# Checks for library functions.
25AC_FUNC_MALLOC
26AC_CHECK_FUNCS([memset])
27AC_OUTPUT([Makefile
28 def_frame/Makefile
29 def_list/Makefile
30 binary/Makefile])