12345678910111213141516171819202122232425262728293031323334 |
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- AC_PREREQ([2.69])
- AC_INIT([isibasic], [1.0], [mooigraph@gmail.com])
- AC_CONFIG_SRCDIR([src/parse.c])
- AC_CONFIG_HEADERS([config.h])
- AM_INIT_AUTOMAKE
- # Checks for programs.
- AC_PROG_CXX
- AC_PROG_AWK
- AC_PROG_CC
- AC_PROG_MAKE_SET
- # Checks for libraries.
- # Checks for header files.
- AC_CHECK_HEADERS([stddef.h stdlib.h])
- # Checks for typedefs, structures, and compiler characteristics.
- # Checks for library functions.
- AC_FUNC_MALLOC
- AC_CHECK_FUNCS([memset])
- # final compiler settings
- AC_SUBST(PACKAGE_CFLAGS)
- AC_SUBST(WARNING_CFLAGS)
- AC_CONFIG_FILES([Makefile src/Makefile])
- AC_OUTPUT
|