1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- dnl
- dnl Process this file with autoconf to produce a configure script.
- dnl
- dnl Copyright (C) 2015 Alexander Andrejevic <theflash AT sdf DOT lonestar DOT org>
- dnl
- dnl This program is free software: you can redistribute it and/or modify
- dnl it under the terms of the GNU Affero General Public License as published
- dnl by the Free Software Foundation, either version 3 of the License, or
- dnl (at your option) any later version.
- dnl
- dnl This program is distributed in the hope that it will be useful,
- dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
- dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- dnl GNU Affero General Public License for more details.
- dnl
- dnl You should have received a copy of the GNU Affero General Public License
- dnl along with this program. If not, see <http://www.gnu.org/licenses/>
- dnl
- AC_PREREQ([2.69])
- AC_INIT([intfictest], [0.1])
- AC_CONFIG_HEADERS([src/config.h])
- AM_INIT_AUTOMAKE([1.11.6 foreign])
- AC_CONFIG_FILES([Makefile src/Makefile])
- dnl Checks for programs
- AC_PROG_CC
- dnl Checks for header files.
- AC_CHECK_HEADERS([inttypes.h libintl.h malloc.h stddef.h stdlib.h string.h unistd.h])
- dnl Checks for typedefs, structures, and compiler characteristics.
- AC_TYPE_INT16_T
- AC_TYPE_INT32_T
- AC_TYPE_INT8_T
- AC_TYPE_SIZE_T
- AC_TYPE_UINT16_T
- AC_TYPE_UINT32_T
- AC_TYPE_UINT8_T
- dnl Checks for library functions.
- dnl Checks for required libraries
- PKG_CHECK_MODULES(INTFIC, [libintfic >= 0.1])
- AC_SUBST([INTFIC_CFLAGS])
- AC_SUBST([INTFIC_LIBS])
- AC_OUTPUT
|