-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
34 lines (27 loc) · 869 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
29
30
31
32
33
34
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.63])
AC_INIT([xmlplus], [0.2], [[email protected]])
AC_CONFIG_SRCDIR([src/DOM/Node.cpp])
AC_CONFIG_HEADERS([config.h])
# do we need following two?
AM_INIT_AUTOMAKE(xmlplus, 0.2)
AC_PROG_LIBTOOL
AC_CONFIG_MACRO_DIR([m4])
#LT_INIT([disable-static])
# Checks for programs.
if test -z $CXXFLAGS; then
CXXFLAGS='-O2'
fi
AC_PROG_CXX
AC_PROG_CC
AC_PROG_CPP
AC_PROG_MAKE_SET
# Checks for libraries.
AC_CONFIG_FILES([ src/Makefile include/Makefile src/XPlus/Makefile src/Poco/Makefile src/DOM/Makefile src/XSD/Makefile src/tools/Makefile Makefile])
# Checks for header files.
AC_CHECK_HEADERS([stdlib.h string.h])
# Checks for typedefs, structures, and compiler characteristics.
AC_HEADER_STDBOOL
AC_C_INLINE
AC_OUTPUT