spielwiese
Last change
on this file since 6bec87 was
6bec87,
checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
|
. started migrating polys to automake
. further fixes to the include paths
|
-
Property mode set to
100644
|
File size:
661 bytes
|
Rev | Line | |
---|
[6ed0df1] | 1 | # -*- Autoconf -*- |
---|
| 2 | # Process this file with autoconf to produce a configure script. |
---|
| 3 | |
---|
| 4 | AC_PREREQ([2.65]) |
---|
| 5 | AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS]) |
---|
[6bec87] | 6 | AM_INIT_AUTOMAKE |
---|
| 7 | AC_CONFIG_SRCDIR([polys.cc]) |
---|
[6ed0df1] | 8 | AC_CONFIG_HEADERS([config.h]) |
---|
| 9 | |
---|
| 10 | # Checks for programs. |
---|
| 11 | AC_PROG_CXX |
---|
| 12 | AC_PROG_CC |
---|
| 13 | AC_PROG_LN_S |
---|
[6bec87] | 14 | AC_PROG_RANLIB |
---|
[6ed0df1] | 15 | |
---|
| 16 | # Checks for libraries. |
---|
| 17 | |
---|
| 18 | # Checks for header files. |
---|
| 19 | AC_CHECK_HEADERS([stdlib.h string.h]) |
---|
| 20 | |
---|
| 21 | # Checks for typedefs, structures, and compiler characteristics. |
---|
| 22 | AC_HEADER_STDBOOL |
---|
| 23 | AC_C_INLINE |
---|
| 24 | |
---|
| 25 | # Checks for library functions. |
---|
| 26 | AC_FUNC_MALLOC |
---|
| 27 | AC_CHECK_FUNCS([memset]) |
---|
| 28 | |
---|
| 29 | AC_CONFIG_FILES([Makefile]) |
---|
| 30 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.