ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/vendor/pxys2-2.1.0/libopas/configure.ac
Revision: 3253
Committed: Wed Apr 2 20:46:18 2014 UTC (9 years, 11 months ago) by michael
Content type: application/pkix-attr-cert
File size: 753 byte(s)
Log Message:
- Imported pxys2-2.1.0

File Contents

# Content
1 dnl -*- Autoconf -*-
2 dnl Process this file with autoconf to produce a configure script.
3
4 AC_INIT([OPAS Library], 1.0.1, [mbuna@bugged.org], [opas])
5 AC_CONFIG_SRCDIR([opas/opas.c])
6 AM_INIT_AUTOMAKE
7 AM_MAINTAINER_MODE
8 AC_DEFINE_UNQUOTED(OPAS_MAJOR, 1, [Major version])
9 AC_DEFINE_UNQUOTED(OPAS_MINOR, 0, [Minor version])
10
11 dnl Checks for programs.
12 AC_DISABLE_SHARED
13 AM_PROG_LIBTOOL
14
15 dnl Checks for libraries.
16
17 dnl Checks for header files.
18 AC_HEADER_STDC
19 AC_CHECK_HEADERS([netinet/in.h])
20 AC_CREATE_STDINT_H([opas/opas_stdint.h])
21
22 dnl Checks for typedefs, structures, and compiler characteristics.
23 AC_C_INLINE
24
25 dnl Checks for library functions.
26 AC_FUNC_ALLOCA
27
28 AC_CONFIG_FILES([Makefile opas/Makefile])
29 AC_OUTPUT