summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@gmail.com>2009-10-04 19:04:59 +0000
committerTavian Barnes <tavianator@gmail.com>2009-10-04 19:04:59 +0000
commitc35d5af1c2845ad072525e69f3f7be01994bcc2f (patch)
treec4bc69e26814cc32332340faf29a3e09a6bd1eb5 /configure.ac
parentf8bd4dda645fda617bf37e180d35e4ef82c88e40 (diff)
downloaddimension-c35d5af1c2845ad072525e69f3f7be01994bcc2f.tar.xz
Purge test suite and C++ wrapper - for now.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac17
1 files changed, 1 insertions, 16 deletions
diff --git a/configure.ac b/configure.ac
index df85e2a..4a7c2c7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,6 @@ AM_INIT_AUTOMAKE(dimension, 0.0.0)
dnl Programs
AC_PROG_CC
-AC_PROG_CXX
AM_PROG_CC_C_O
AM_PROG_AS
AC_PROG_INSTALL
@@ -29,23 +28,9 @@ AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_LIBTOOL
-dnl Determine if we can use the fopencookie() implementation of FILE_Cookie
-AC_MSG_CHECKING([for fopencookie()])
-AC_LINK_IFELSE(AC_LANG_PROGRAM(
- [[ #define _GNU_SOURCE
- #include <stdio.h> ]],
- [[ cookie_io_functions_t io_funcs;
- FILE* file = fopencookie(NULL, "r", io_funcs); ]]),
- [fopencookie=yes
- AC_MSG_RESULT([yes])],
- [AC_MSG_RESULT([no])])
-AM_CONDITIONAL([FOPENCOOKIE], [test "$fopencookie" = "yes"])
-
dnl Generate Makefiles
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_FILES([Makefile
doc/Makefile
- libdimension/Makefile
- libdimensionxx/Makefile
- tests/Makefile])
+ libdimension/Makefile])
AC_OUTPUT