jengelh-datetimespielwiese
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:
879 bytes
|
Line | |
---|
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 | AM_INIT_AUTOMAKE |
---|
7 | AC_CONFIG_SRCDIR([rmodulon.h]) |
---|
8 | AC_CONFIG_HEADERS([config.h]) |
---|
9 | |
---|
10 | #check for host: |
---|
11 | AC_CANONICAL_HOST |
---|
12 | case $host_os in |
---|
13 | *cygwin* ) LIBPREFIX="-Xlinker -Bdynamic";; |
---|
14 | * ) LIBPREFIX="";; |
---|
15 | esac |
---|
16 | |
---|
17 | # Checks for programs. |
---|
18 | AC_PROG_CXX |
---|
19 | AC_PROG_CC |
---|
20 | AC_PROG_LN_S |
---|
21 | AC_PROG_INSTALL |
---|
22 | AC_PROG_RANLIB |
---|
23 | |
---|
24 | # Checks for libraries. |
---|
25 | |
---|
26 | # Checks for header files. |
---|
27 | AC_CHECK_HEADERS([float.h stdlib.h string.h]) |
---|
28 | |
---|
29 | # Checks for typedefs, structures, and compiler characteristics. |
---|
30 | AC_HEADER_STDBOOL |
---|
31 | AC_C_INLINE |
---|
32 | AC_TYPE_SIZE_T |
---|
33 | |
---|
34 | # Checks for library functions. |
---|
35 | AC_FUNC_ERROR_AT_LINE |
---|
36 | AC_CHECK_FUNCS([memmove memset pow sqrt strchr]) |
---|
37 | |
---|
38 | AC_SUBST(LIBPREFIX) |
---|
39 | |
---|
40 | AC_CONFIG_FILES([Makefile]) |
---|
41 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.