12345678910111213141516171819202122232425262728293031 |
- # -*- Autoconf -*-
- # Process this file with autoconf to produce a configure script.
- AC_PREREQ(2.59)
- AC_INIT(gcctree2gml, 0.6, mingjie.xing@gmail.com)
- AC_CONFIG_HEADERS(config.h)
- # automake
- AM_INIT_AUTOMAKE
- # Checks for programs.
- AC_PROG_YACC
- AC_PROG_CC
- AC_PROG_LEX
- #LIBS="$saved_LIBS"
- # Checks for header files.
- AC_HEADER_STDC
- AC_CHECK_HEADERS([stdlib.h string.h unistd.h])
- # Checks for typedefs, structures, and compiler characteristics.
- AC_C_CONST
- AC_FUNC_OBSTACK
- # Checks for library functions.
- AC_FUNC_ERROR_AT_LINE
- AC_CONFIG_FILES([Makefile src/Makefile])
- AC_OUTPUT
|