source: git/libpolys/polys/configure.ac @ 57c6ed2

spielwiese
Last change on this file since 57c6ed2 was 57c6ed2, checked in by Oleksandr Motsak <motsak@…>, 13 years ago
fix: debug/optimized for polys
  • Property mode set to 100644
File size: 1.0 KB
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([polys], [3.1.2.sw])
6AC_CONFIG_AUX_DIR([.])
7AM_INIT_AUTOMAKE
8AC_CONFIG_SRCDIR([pDebug.cc])
9AC_CONFIG_HEADERS([config.h])
10AC_CONFIG_MACRO_DIR([m4])
11
12# Checks for programs.
13AC_PROG_CXX
14AC_PROG_CC
15AC_PROG_LN_S
16#AC_PROG_RANLIB
17AC_LIBTOOL_DLOPEN
18AC_PROG_LIBTOOL
19AM_PROG_CC_C_O
20
21# Checks for libraries.
22
23# Checks for header files.
24AC_CHECK_HEADERS([stdlib.h string.h])
25
26# Checks for typedefs, structures, and compiler characteristics.
27AC_HEADER_STDBOOL
28AC_C_INLINE
29
30# Checks for library functions.
31AC_FUNC_MALLOC
32AC_CHECK_FUNCS([memset])
33
34AC_CONFIG_FILES([Makefile])
35
36case $DL_KERNEL in
37 static)        DL_KERNEL_OBJECT='p_Procs_Static.$(OBJEXT)'
38                DL_KERNEL_OBJECT_DEBUG='p_Procs_Static.$(OBJEXT)g' ;;
39 dynamic)       DL_KERNEL_OBJECT='p_Procs_Dynamic.$(OBJEXT)'
40                DL_KERNEL_OBJECT_DEBUG='p_Procs_Dynamic.$(OBJEXT)g' ;;
41esac
42
43AC_SUBST([DL_KERNEL_OBJECT])
44AC_SUBST([DL_KERNEL_OBJECT_DEBUG])
45
46AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.