~onli/simdock/master

« back to all changes in this revision

Viewing changes to src/configure.scan

  • Committer: onli
  • Date: 2014-05-06 22:08:09 UTC
  • Revision ID: git-v1:ee5891c95270c398184840136e2949639919962c
Replace autoconf-buildsystem with pkg-config/Makefile
The existing build-system was too complicated for me, and I was unable to fix a compile bug in Ubuntu 14.04. In preparation for this fix, the buildystem now is as easy as possible (and hopefully still portable enough).

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#                                               -*- Autoconf -*-
 
2
# Process this file with autoconf to produce a configure script.
 
3
 
 
4
AC_PREREQ([2.68])
 
5
AC_INIT([FULL-PACKAGE-NAME], [VERSION], [BUG-REPORT-ADDRESS])
 
6
AC_CONFIG_SRCDIR([tasks.cc])
 
7
AC_CONFIG_HEADERS([config.h])
 
8
 
 
9
# Checks for programs.
 
10
AC_PROG_CXX
 
11
AC_PROG_CC
 
12
 
 
13
# Checks for libraries.
 
14
 
 
15
# Checks for header files.
 
16
AC_PATH_X
 
17
AC_CHECK_HEADERS([stdlib.h unistd.h])
 
18
 
 
19
# Checks for typedefs, structures, and compiler characteristics.
 
20
AC_HEADER_STDBOOL
 
21
 
 
22
# Checks for library functions.
 
23
AC_FUNC_FORK
 
24
AC_FUNC_MALLOC
 
25
AC_CHECK_FUNCS([pow sqrt])
 
26
 
 
27
AC_OUTPUT