source: git/resource/configure.ac @ b9b41a

spielwiese
Last change on this file since b9b41a was b9b41a, checked in by Hans Schoenemann <hannes@…>, 14 years ago
definies for feResource
  • Property mode set to 100644
File size: 822 bytes
Line 
1#                                               -*- Autoconf -*-
2# Process this file with autoconf to produce a configure script.
3
4AC_PREREQ([2.65])
5AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
6AC_CONFIG_SRCDIR([feFopen.h])
7AC_CONFIG_HEADERS([config.h])
8
9# Checks for programs.
10AC_PROG_CC
11AC_PROG_CXX
12AC_PROG_LN_S
13AC_PROG_INSTALL
14
15# Checks for libraries.
16
17# Checks for header files.
18AC_HEADER_STDC
19AC_CHECK_HEADERS([sys/param.h])
20
21# Checks for typedefs, structures, and compiler characteristics.
22AC_C_INLINE
23
24AC_MSG_RESULT($ac_cv_singuname)
25if test "$ac_cv_singuname" = unknown; then
26  AC_MSG_WARN(Unknown architecture: Check singuname.sh)
27  ac_cv_singuname="unknown"
28fi
29AC_DEFINE_UNQUOTED(S_UNAME, "$ac_cv_singuname")
30SINGUNAME=$ac_cv_singuname
31AC_SUBST(SINGUNAME)
32
33AC_CONFIG_FILES([Makefile])
34AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.