-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfigure.ac
28 lines (28 loc) · 904 Bytes
/
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
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([C++UnitX], [1-alpha.6],
[https://github.com/vx68k/cppunitx/issues/new], [cppunitx],
[https://www.vx68k.org/cppunitx])
AC_CONFIG_SRCDIR([libcppunitx/registry.cpp])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign no-define tar-ustar parallel-tests subdir-objects])
# Checks for programs.
AC_PROG_CC
AC_PROG_CXX
gl_EARLY
# Checks for libraries.
AC_SEARCH_LIBS([dlopen], [dl])
# Checks for header files.
AC_CHECK_HEADERS([dlfcn.h])
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
# Checks for other features.
LT_PREREQ([2.4.6])
LT_INIT([win32-dll])
gl_INIT
# Configuration actions.
AC_CONFIG_FILES([Makefile cppunitx/Makefile libcppunitx/Makefile
libgnu/Makefile test/Makefile doc/Makefile])
AC_CONFIG_HEADERS([config.h])
AC_OUTPUT