source: git/resources/configure.ac @ ea5f3f6

spielwiese
Last change on this file since ea5f3f6 was ea5f3f6, checked in by Oleksandr Motsak <motsak@…>, 11 years ago
Improved BS (configuring)
  • Property mode set to 100644
File size: 1.0 KB
Line 
1AC_INIT([libresources], [3.1.4.sw])
2
3AC_CONFIG_MACRO_DIR([../m4])
4AC_CONFIG_AUX_DIR([.])
5AC_CONFIG_SRCDIR([omFindExec.h])
6AC_CONFIG_HEADER([config.h])
7
8AM_MAINTAINER_MODE
9AM_INIT_AUTOMAKE([-Wall foreign subdir-objects]) # -Wno-extra-portability -Werror silent-rules
10m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES])
11m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
12
13dnl Check if build env is sane
14AM_SANITY_CHECK
15
16SING_RESET_FLAGS()
17SING_CHECK_SET_ARGS()
18
19AM_PROG_CC_C_O
20# AM_PROG_AR
21
22AC_PROG_LN_S
23AC_PROG_INSTALL
24
25AC_FUNC_MALLOC
26AC_HEADER_STDC
27AC_CHECK_HEADERS([stdlib.h string.h unistd.h pwd.h sys/param.h sys/stat.h sys/types.h])
28AC_CHECK_FUNCS(readlink getcwd getwd getpwnam setenv putenv)
29
30# Checks for typedefs, structures, and compiler characteristics.
31AC_C_CONST
32AC_C_INLINE
33AC_HEADER_STDBOOL
34AC_TYPE_SIZE_T
35
36# Turn off shared libraries during beta-testing, since they
37# make the build process take too long.
38LT_INIT
39# ([shared])
40# LT_INIT(dlopen disable-static) # doesn't work on PowerPC!
41
42# SING_CHECK_PIPE
43
44AC_CONFIG_FILES([Makefile])
45AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.