source: git/libpolys/resources/configure.ac @ 7f2454a

spielwiese
Last change on this file since 7f2454a was 7f2454a, checked in by Mohamed Barakat <mohamed.barakat@…>, 13 years ago
migrated resources to automake
  • Property mode set to 100644
File size: 897 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])
6AM_INIT_AUTOMAKE
7AC_CONFIG_SRCDIR([feFopen.h])
8AC_CONFIG_HEADERS([config.h])
9
10# Checks for programs.
11AC_PROG_CC
12AC_PROG_CXX
13AC_PROG_LN_S
14AC_PROG_INSTALL
15AC_PROG_RANLIB
16
17# Checks for libraries.
18
19# Checks for header files.
20AC_HEADER_STDC
21AC_CHECK_HEADERS([sys/param.h])
22
23# Checks for typedefs, structures, and compiler characteristics.
24AC_C_INLINE
25
26AC_MSG_RESULT($ac_cv_singuname)
27if test "$ac_cv_singuname" = unknown; then
28  AC_MSG_WARN(Unknown architecture: Check singuname.sh)
29  ac_cv_singuname="unknown"
30fi
31AC_DEFINE_UNQUOTED(S_UNAME, "$ac_cv_singuname", Singular's own uname\, believe it or not)
32SINGUNAME=$ac_cv_singuname
33AC_SUBST(SINGUNAME)
34
35
36AC_CONFIG_FILES([Makefile])
37AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.