spielwiese
Last change
on this file since ce2120e was
ce2120e,
checked in by Mohamed Barakat <mohamed.barakat@…>, 12 years ago
|
created for_Hans_with_love.sh build script
. added polys to libpolys/Makefile.am and to libpolys/configure.ac
. updated libpolys/polys/Makefile.am
. updated libpolys/polys/configure.ac
. cleaned up libpolys/resources/configure.ac
. updated libpolys/resources/feResource.h
|
-
Property mode set to
100644
|
File size:
995 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([polys.cc]) |
---|
8 | AC_CONFIG_HEADERS([config.h]) |
---|
9 | |
---|
10 | # Checks for programs. |
---|
11 | AC_PROG_CXX |
---|
12 | AC_PROG_CC |
---|
13 | AC_PROG_LN_S |
---|
14 | AC_PROG_RANLIB |
---|
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 | |
---|
31 | case $DL_KERNEL in |
---|
32 | static) DL_KERNEL_OBJECT='p_Procs_Static.$(OBJEXT)' |
---|
33 | DL_KERNEL_OBJECT_DEBUG='p_Procs_Static.$(OBJEXT)g' ;; |
---|
34 | dynamic) DL_KERNEL_OBJECT='p_Procs_Dynamic.$(OBJEXT)' |
---|
35 | DL_KERNEL_OBJECT_DEBUG='p_Procs_Dynamic.$(OBJEXT)g' ;; |
---|
36 | esac |
---|
37 | |
---|
38 | AC_SUBST([DL_KERNEL_OBJECT]) |
---|
39 | AC_SUBST([DL_KERNEL_OBJECT_DEBUG]) |
---|
40 | |
---|
41 | AC_OUTPUT |
---|
Note: See
TracBrowser
for help on using the repository browser.