-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
44 lines (36 loc) · 1.19 KB
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
dnl Process this file with autoconf to produce a configure script.
AC_INIT([Virtual M68000 Toolkit], [1.1.0], [vx68k@googlegroups.com], [libvm68k])
AC_CONFIG_SRCDIR([lib/processor.cpp])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE
dnl Checks for programs.
AC_PROG_CC
AC_PROG_CC_STDC
AC_PROG_CXX
AC_USE_SYSTEM_EXTENSIONS
# Checks for libraries.
# Checks for header files.
dnl Checks for typedefs, structures, and compiler characteristics.
AC_TYPE_SIZE_T
AC_CXX_EXCEPTIONS
AC_CXX_TEMPLATES
AC_CXX_NAMESPACES
AC_LIBLTDL_INSTALLABLE
AC_LIBTOOL_DLOPEN
AC_PROG_LIBTOOL
if test "$ac_cv_cxx_exceptions" != yes; then
AC_MSG_WARN([the C++ compiler does not support exceptions])
AC_MSG_WARN([this program cannot be built without exceptions])
fi
if test "$ac_cv_cxx_templates" != yes; then
AC_MSG_WARN([the C++ compiler does not support templates])
AC_MSG_WARN([this program cannot be built without templates])
fi
if test "$ac_cv_cxx_namespaces" != yes; then
AC_MSG_WARN([the C++ compiler does not implement namespaces])
AC_MSG_WARN([this program cannot be built without namespaces])
fi
AC_CONFIG_FILES([Makefile doc/Makefile lib/Makefile])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_SUBDIRS([libltdl])
AC_OUTPUT