spielwiese
Last change
on this file since 014b65 was
014b65,
checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
|
- moved misc,reporter,resources,coeffs,polys -> (new) libpolys (Hans agreed)
- migrated to automake in coeffs, misc
status: everything builds (except polys)
todo: . migrate resources and reporter to automake
. create autoconf macros for omalloc, factory, and libpolys
|
-
Property mode set to
100644
|
File size:
631 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]) |
---|
| 6 | AC_CONFIG_SRCDIR([longalg.cc]) |
---|
| 7 | AC_CONFIG_HEADERS([config.h]) |
---|
| 8 | |
---|
| 9 | # Checks for programs. |
---|
| 10 | AC_PROG_CXX |
---|
| 11 | AC_PROG_CC |
---|
| 12 | AC_PROG_LN_S |
---|
| 13 | |
---|
| 14 | # Checks for libraries. |
---|
| 15 | |
---|
| 16 | # Checks for header files. |
---|
| 17 | AC_CHECK_HEADERS([stdlib.h string.h]) |
---|
| 18 | |
---|
| 19 | # Checks for typedefs, structures, and compiler characteristics. |
---|
| 20 | AC_HEADER_STDBOOL |
---|
| 21 | AC_C_INLINE |
---|
| 22 | |
---|
| 23 | # Checks for library functions. |
---|
| 24 | AC_FUNC_MALLOC |
---|
| 25 | AC_CHECK_FUNCS([memset]) |
---|
| 26 | |
---|
| 27 | AC_CONFIG_FILES([Makefile]) |
---|
| 28 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.