source: gtest-1.7.0/configure.ac@ 12775

Last change on this file since 12775 was 12746, checked in by hock@…, 10 years ago

integrated the Google Testing Framework (gtest)

and wrote an Hello World test, to ensure the framework is working..

File size: 2.5 KB
Line 
1m4_include(m4/acx_pthread.m4)
2
3# At this point, the Xcode project assumes the version string will be three
4# integers separated by periods and surrounded by square brackets (e.g.
5# "[1.0.1]"). It also asumes that there won't be any closing parenthesis
6# between "AC_INIT(" and the closing ")" including comments and strings.
7AC_INIT([Google C++ Testing Framework],
8 [1.7.0],
9 [googletestframework@googlegroups.com],
10 [gtest])
11
12# Provide various options to initialize the Autoconf and configure processes.
13AC_PREREQ([2.59])
14AC_CONFIG_SRCDIR([./LICENSE])
15AC_CONFIG_MACRO_DIR([m4])
16AC_CONFIG_AUX_DIR([build-aux])
17AC_CONFIG_HEADERS([build-aux/config.h])
18AC_CONFIG_FILES([Makefile])
19AC_CONFIG_FILES([scripts/gtest-config], [chmod +x scripts/gtest-config])
20
21# Initialize Automake with various options. We require at least v1.9, prevent
22# pedantic complaints about package files, and enable various distribution
23# targets.
24AM_INIT_AUTOMAKE([1.9 dist-bzip2 dist-zip foreign subdir-objects])
25
26# Check for programs used in building Google Test.
27AC_PROG_CC
28AC_PROG_CXX
29AC_LANG([C++])
30AC_PROG_LIBTOOL
31
32# TODO(chandlerc@google.com): Currently we aren't running the Python tests
33# against the interpreter detected by AM_PATH_PYTHON, and so we condition
34# HAVE_PYTHON by requiring "python" to be in the PATH, and that interpreter's
35# version to be >= 2.3. This will allow the scripts to use a "/usr/bin/env"
36# hashbang.
37PYTHON= # We *do not* allow the user to specify a python interpreter
38AC_PATH_PROG([PYTHON],[python],[:])
39AS_IF([test "$PYTHON" != ":"],
40 [AM_PYTHON_CHECK_VERSION([$PYTHON],[2.3],[:],[PYTHON=":"])])
41AM_CONDITIONAL([HAVE_PYTHON],[test "$PYTHON" != ":"])
42
43# Configure pthreads.
44AC_ARG_WITH([pthreads],
45 [AS_HELP_STRING([--with-pthreads],
46 [use pthreads (default is yes)])],
47 [with_pthreads=$withval],
48 [with_pthreads=check])
49
50have_pthreads=no
51AS_IF([test "x$with_pthreads" != "xno"],
52 [ACX_PTHREAD(
53 [],
54 [AS_IF([test "x$with_pthreads" != "xcheck"],
55 [AC_MSG_FAILURE(
56 [--with-pthreads was specified, but unable to be used])])])
57 have_pthreads="$acx_pthread_ok"])
58AM_CONDITIONAL([HAVE_PTHREADS],[test "x$have_pthreads" = "xyes"])
59AC_SUBST(PTHREAD_CFLAGS)
60AC_SUBST(PTHREAD_LIBS)
61
62# TODO(chandlerc@google.com) Check for the necessary system headers.
63
64# TODO(chandlerc@google.com) Check the types, structures, and other compiler
65# and architecture characteristics.
66
67# Output the generated files. No further autoconf macros may be used.
68AC_OUTPUT
Note: See TracBrowser for help on using the repository browser.