Blame configure.ac

Packit a4aae4
Packit a4aae4
dnl -*- autoconf -*-
Packit a4aae4
dnl Process this file with autoconf to produce a configure script.
Packit a4aae4
Packit a4aae4
AC_PREREQ(2.63)
Packit a4aae4
dnl Update version here and below at LIB_CURRENT, ..., if needed.
Packit a4aae4
AC_INIT(libdap, 3.19.1, opendap-tech@opendap.org)
Packit a4aae4
AC_DEFINE(DAP_PROTOCOL_VERSION, ["4.0"], [Highest DAP version implemented?])
Packit a4aae4
AC_SUBST(DAP_PROTOCOL_VERSION)
Packit a4aae4
Packit a4aae4
AC_CONFIG_SRCDIR([Connect.cc])
Packit a4aae4
AC_CONFIG_AUX_DIR(conf)
Packit a4aae4
AC_CONFIG_HEADERS([config.h dods-datatypes-config.h xdr-datatypes-config.h])
Packit a4aae4
AC_CONFIG_MACRO_DIR([conf])
Packit a4aae4
Packit a4aae4
AM_INIT_AUTOMAKE
Packit a4aae4
AC_CONFIG_TESTDIR(tests, [.])
Packit a4aae4
Packit a4aae4
AC_DEFINE(CNAME, "libdap", [What sort of HTTP client is this?])
Packit a4aae4
AC_DEFINE_UNQUOTED(CVER, "$PACKAGE_VERSION", [Client version number])
Packit a4aae4
AC_DEFINE_UNQUOTED(DVR, "libdap/$PACKAGE_VERSION", [Client name and version combined])
Packit a4aae4
AC_SUBST(DVR)
Packit a4aae4
Packit a4aae4
PACKAGE_MAJOR_VERSION=`echo $PACKAGE_VERSION | sed 's@^\([[0-9]]\)*\.\([[0-9]]*\)\.\([[0-9]]*\)$@\1@'`
Packit a4aae4
PACKAGE_MINOR_VERSION=`echo $PACKAGE_VERSION | sed 's@^\([[0-9]]\)*\.\([[0-9]]*\)\.\([[0-9]]*\)$@\2@'`
Packit a4aae4
PACKAGE_SUBMINOR_VERSION=`echo $PACKAGE_VERSION | sed 's@^\([[0-9]]\)*\.\([[0-9]]*\)\.\([[0-9]]*\)$@\3@'`
Packit a4aae4
AC_MSG_NOTICE(Package Major Version:     $PACKAGE_MAJOR_VERSION)
Packit a4aae4
AC_MSG_NOTICE(Package Minor Version:     $PACKAGE_MINOR_VERSION)
Packit a4aae4
AC_MSG_NOTICE(Package SubMinor Version:  $PACKAGE_SUBMINOR_VERSION)
Packit a4aae4
AC_SUBST(PACKAGE_MAJOR_VERSION)
Packit a4aae4
AC_SUBST(PACKAGE_MINOR_VERSION)
Packit a4aae4
AC_SUBST(PACKAGE_SUBMINOR_VERSION)
Packit a4aae4
Packit a4aae4
dnl flags for the compilers and linkers - set these before locating the
Packit a4aae4
dnl actual tools since some of the AC_PROG macros set these `flag variables'
Packit a4aae4
dnl to default values otherwise.
Packit a4aae4
Packit a4aae4
AC_CANONICAL_HOST
Packit a4aae4
AC_SUBST(host)
Packit a4aae4
Packit a4aae4
dnl How to set these SO variables:
Packit a4aae4
dnl No interfaces changed, only implementations (good): ==> Increment REVISION.
Packit a4aae4
dnl Interfaces added, none removed (good): ==> Increment CURRENT,
Packit a4aae4
dnl increment AGE, set REVISION to 0.
Packit a4aae4
dnl Interfaces removed or changed (BAD, breaks upward compatibility):
Packit a4aae4
dnl ==> Increment CURRENT, set AGE and REVISION to 0.
Packit a4aae4
Packit a4aae4
DAPLIB_CURRENT=25
Packit a4aae4
DAPLIB_AGE=0
Packit a4aae4
DAPLIB_REVISION=1
Packit a4aae4
AC_SUBST(DAPLIB_CURRENT)
Packit a4aae4
AC_SUBST(DAPLIB_AGE)
Packit a4aae4
AC_SUBST(DAPLIB_REVISION)
Packit a4aae4
Packit a4aae4
LIBDAP_VERSION="$DAPLIB_CURRENT:$DAPLIB_REVISION:$DAPLIB_AGE"
Packit a4aae4
AC_SUBST(LIBDAP_VERSION)
Packit a4aae4
Packit a4aae4
CLIENTLIB_CURRENT=7
Packit a4aae4
CLIENTLIB_AGE=1
Packit a4aae4
CLIENTLIB_REVISION=7
Packit a4aae4
AC_SUBST(CLIENTLIB_CURRENT)
Packit a4aae4
AC_SUBST(CLIENTLIB_AGE)
Packit a4aae4
AC_SUBST(CLIENTLIB_REVISION)
Packit a4aae4
Packit a4aae4
CLIENTLIB_VERSION="$CLIENTLIB_CURRENT:$CLIENTLIB_REVISION:$CLIENTLIB_AGE"
Packit a4aae4
AC_SUBST(CLIENTLIB_VERSION)
Packit a4aae4
Packit a4aae4
SERVERLIB_CURRENT=13
Packit a4aae4
SERVERLIB_AGE=6
Packit a4aae4
SERVERLIB_REVISION=7
Packit a4aae4
AC_SUBST(SERVERLIB_CURRENT)
Packit a4aae4
AC_SUBST(SERVERLIB_AGE)
Packit a4aae4
AC_SUBST(SERVERLIB_REVISION)
Packit a4aae4
Packit a4aae4
SERVERLIB_VERSION="$SERVERLIB_CURRENT:$SERVERLIB_REVISION:$SERVERLIB_AGE"
Packit a4aae4
AC_SUBST(SERVERLIB_VERSION)
Packit a4aae4
Packit a4aae4
dnl Checks for programs.
Packit a4aae4
AC_PROG_AWK
Packit a4aae4
AC_PROG_CXX
Packit a4aae4
AC_PROG_CC
Packit a4aae4
Packit a4aae4
dnl Call this gnulib macro right after a working C Compiler is found
Packit a4aae4
gl_EARLY
Packit a4aae4
Packit a4aae4
dnl echo "CC = $CC"
Packit a4aae4
AS_IF([test x$CC = xgcc],
Packit a4aae4
      [AM_CONDITIONAL([COMPILER_IS_GCC],[true])],
Packit a4aae4
      [AM_CONDITIONAL([COMPILER_IS_GCC],[false])])
Packit a4aae4
Packit a4aae4
dnl AC_PROG_YACC
Packit a4aae4
dnl AC_PROG_LEX
Packit a4aae4
AM_PROG_LEX
Packit a4aae4
AC_PROG_INSTALL
Packit a4aae4
AC_PROG_LN_S
Packit a4aae4
AC_PROG_MAKE_SET
Packit a4aae4
AC_PROG_LIBTOOL
Packit a4aae4
Packit a4aae4
dnl We really need bison and not yacc. If you use AC_PROG_YACC, the resulting 
Packit a4aae4
dnl Makefile will call bison -y which doesn't know how to make the parsers 
Packit a4aae4
dnl we require. jhrg 6/15/05
Packit a4aae4
AC_CHECK_PROG(YACC,[bison],[bison])
Packit a4aae4
Packit a4aae4
dnl We have found bison; get its version
Packit a4aae4
bison_version=`bison --version | sed -n '/^bison.*/p' | sed 's@.* \(.*\)@\1@'`
Packit a4aae4
Packit a4aae4
AC_MSG_CHECKING([for bison 3.0])
Packit a4aae4
Packit a4aae4
# This was used to set a conditional in the d4_ce/Makefile.am to build
Packit a4aae4
# the DAP4 parsers using bison 3 or get pre-built sources from a set
Packit a4aae4
# of template files. That didn't work on some linux machines, so bison
Packit a4aae4
# 3 is a requirement for building until that gets sorted out. jhrg 4/5/15
Packit a4aae4
dnl AS_VERSION_COMPARE(["$bison_version"], ["3.0"], 
Packit a4aae4
dnl 	[AM_CONDITIONAL([BISON3], [false])],
Packit a4aae4
dnl 	[AM_CONDITIONAL([BISON3], [true])],
Packit a4aae4
dnl 	[AM_CONDITIONAL([BISON3], [true])])
Packit a4aae4
        
Packit a4aae4
AS_VERSION_COMPARE(["$bison_version"], ["3.0"], 
Packit a4aae4
	[AC_MSG_ERROR([not found])],
Packit a4aae4
	[ ],
Packit a4aae4
	[ ])
Packit a4aae4
Packit a4aae4
AC_MSG_RESULT([found vesion $bison_version])
Packit a4aae4
Packit a4aae4
dnl Checks for header files.
Packit a4aae4
AC_HEADER_DIRENT
Packit a4aae4
AC_HEADER_STDC
Packit a4aae4
AC_HEADER_SYS_WAIT
Packit a4aae4
Packit a4aae4
AC_CHECK_HEADERS_ONCE([fcntl.h malloc.h memory.h stddef.h stdlib.h string.h strings.h unistd.h pthread.h])
Packit a4aae4
AC_CHECK_HEADERS_ONCE([sys/param.h sys/time.h])
Packit a4aae4
AC_CHECK_HEADERS_ONCE([netinet/in.h])
Packit a4aae4
Packit a4aae4
dnl AC_CHECK_HEADERS_ONCE([uuid/uuid.h uuid.h])
Packit a4aae4
dnl Do this because we have had a number of problems with the UUID header/library
Packit a4aae4
AC_CHECK_HEADERS([uuid/uuid.h],[found_uuid_uuid_h=true],[found_uuid_uuid_h=false])
Packit a4aae4
AC_CHECK_HEADERS([uuid.h],[found_uuid_h=true],[found_uuid_h=false])
Packit a4aae4
Packit a4aae4
AS_IF([test $found_uuid_uuid_h = true -o $found_uuid_h = true], [], [AC_MSG_ERROR([Could not find uuid.h])])
Packit a4aae4
Packit a4aae4
dnl Checks for typedefs, structures, and compiler characteristics.
Packit a4aae4
AC_C_CONST
Packit a4aae4
AC_C_INLINE
Packit a4aae4
AC_TYPE_SIZE_T
Packit a4aae4
AC_CHECK_MEMBERS([struct stat.st_blksize])
Packit a4aae4
AC_HEADER_TIME
Packit a4aae4
AC_STRUCT_TM
Packit a4aae4
AC_C_VOLATILE
Packit a4aae4
AC_C_BIGENDIAN
Packit a4aae4
Packit a4aae4
# This is used byt eh DMR tests which must choose the correct set of baselines
Packit a4aae4
# based on word order given that DAP4 uses 'reader make right' and thus the 
Packit a4aae4
# DAP4 data responses are different for different word order machines. jhrg 9/29/15
Packit a4aae4
AS_IF([test $ac_cv_c_bigendian = yes], [ac_word_order=big-endian], [ac_word_order=little-endian])
Packit a4aae4
AC_SUBST([ac_word_order])
Packit a4aae4
        
Packit a4aae4
DODS_CHECK_SIZES
Packit a4aae4
Packit a4aae4
AC_ARG_ENABLE([runtime-endian-check],
Packit a4aae4
    AC_HELP_STRING([--enable-runtime-endian-check], [Enable runtime tests for big- or little-endian byte order (default is NO)])
Packit a4aae4
)
Packit a4aae4
Packit a4aae4
AS_IF([test "x$enable_runtime_endian_check" = "xyes"], [
Packit a4aae4
    dnl Do the stuff needed for enabling the feature
Packit a4aae4
    AC_DEFINE([COMPUTE_ENDIAN_AT_RUNTIME], 1, [Should a function (run-time) be used to determine the byte order?])
Packit a4aae4
])
Packit a4aae4
Packit a4aae4
# Checks for library functions.
Packit a4aae4
Packit a4aae4
dnl using AC_CHECK_FUNCS does not run macros from gnulib.
Packit a4aae4
AC_CHECK_FUNCS([alarm atexit bzero dup2 getcwd getpagesize localtime_r memmove memset pow putenv setenv strchr strerror strtol strtoul timegm mktime])
Packit a4aae4
Packit a4aae4
gl_SOURCE_BASE(gl)
Packit a4aae4
gl_M4_BASE(gl/m4)
Packit a4aae4
gl_MODULES(regex btyeswap)
Packit a4aae4
Packit a4aae4
gl_INIT
Packit a4aae4
Packit a4aae4
AC_ARG_WITH(curl,[  --with-curl=PFX   Prefix where curl/libcurl is installed (optional). This will override pkgconfig, etc.],
Packit a4aae4
            with_curl_prefix="$withval", with_curl_prefix="")
Packit a4aae4
Packit a4aae4
dnl I wrote these checks because we need the *-config scripts to build, so 
Packit a4aae4
dnl the AC_CHECK_LIB macro is not needed.
Packit a4aae4
Packit a4aae4
curlprivatereq=
Packit a4aae4
curlprivatelibs=
Packit a4aae4
curl_set=
Packit a4aae4
Packit a4aae4
if test -n "$with_curl_prefix" -a -x $with_curl_prefix/bin/curl-config
Packit a4aae4
then
Packit a4aae4
    AC_MSG_NOTICE([Using $with_curl_prefix as the curl prefix directory.])
Packit a4aae4
    CURL_LIBS="`$with_curl_prefix/bin/curl-config --libs`"
Packit a4aae4
    CURL_STATIC_LIBS=$CURL_LIBS
Packit a4aae4
    curlprivatelibs="`$with_curl_prefix/bin/curl-config --libs`"
Packit a4aae4
    CURL_CFLAGS="`$with_curl_prefix/bin/curl-config --cflags`"
Packit a4aae4
    curl_set="yes"
Packit a4aae4
elif test -n "$with_curl_prefix"
Packit a4aae4
then
Packit a4aae4
    AC_MSG_ERROR([You set the curl-prefix directory to $with_curl_prefix, but curl-config is not there.])
Packit a4aae4
fi
Packit a4aae4
Packit a4aae4
if test -z "$curl_set"
Packit a4aae4
then
Packit a4aae4
    # curlprivatereq=
Packit a4aae4
    # curlprivatelibs=
Packit a4aae4
    libdap_pkgconfig_libcurl=yes
Packit a4aae4
    libdap_libcurl_module='libcurl >= 7.19.0'
Packit a4aae4
    PKG_CHECK_MODULES([CURL],[$libdap_libcurl_module],,
Packit a4aae4
        [libdap_pkgconfig_libcurl=no])
Packit a4aae4
    AC_MSG_CHECKING([for libcurl])
Packit a4aae4
    
Packit a4aae4
    if test $libdap_pkgconfig_libcurl = 'yes'
Packit a4aae4
    then
Packit a4aae4
	   curlprivatereq=$libdap_libcurl_module
Packit a4aae4
	   CURL_STATIC_LIBS="`$PKG_CONFIG --static --libs libcurl`"
Packit a4aae4
	   AC_MSG_RESULT([yes; used pkg-config])
Packit a4aae4
    elif curl-config --version > /dev/null 2>&1
Packit a4aae4
    then
Packit a4aae4
	   version_libcurl=`curl-config --version | sed 's@libcurl \(.*\)@\1@'`
Packit a4aae4
Packit a4aae4
       AS_VERSION_COMPARE(["$version_libcurl"], ["7.19.0"], 
Packit a4aae4
                [AC_MSG_ERROR([I could not find libcurl 7.19.0 or newer, found $version_libcurl])])
Packit a4aae4
        
Packit a4aae4
	   CURL_LIBS="`curl-config --libs`"
Packit a4aae4
	   CURL_STATIC_LIBS=$CURL_LIBS
Packit a4aae4
	   curlprivatelibs="`curl-config --libs`"
Packit a4aae4
	   CURL_CFLAGS="`curl-config --cflags`"
Packit a4aae4
	   AC_MSG_RESULT([yes; used curl-config and found version $version_libcurl])
Packit a4aae4
    else
Packit a4aae4
	   AC_MSG_ERROR([I could not find libcurl])
Packit a4aae4
    fi
Packit a4aae4
fi
Packit a4aae4
Packit a4aae4
AC_SUBST([curlprivatereq])
Packit a4aae4
AC_SUBST([curlprivatelibs])
Packit a4aae4
AC_SUBST([CURL_LIBS])
Packit a4aae4
AC_SUBST([CURL_STATIC_LIBS])
Packit a4aae4
AC_SUBST([CURL_CFLAGS])
Packit a4aae4
Packit a4aae4
AC_ARG_WITH(xml2,[  --with-xml2=PFX   Prefix where libxml2 is installed (optional). This will override pkgconfig, etc.],
Packit a4aae4
            with_xml2_prefix="$withval", with_xml2_prefix="")
Packit a4aae4
Packit a4aae4
xmlprivatereq=
Packit a4aae4
xmlprivatelibs=
Packit a4aae4
xml_set=
Packit a4aae4
Packit a4aae4
if test -n "$with_xml2_prefix" -a -x $with_xml2_prefix/bin/xml2-config
Packit a4aae4
then
Packit a4aae4
    AC_MSG_NOTICE([Using $with_xml2_prefix as the libxml2 prefix directory.])
Packit a4aae4
    XML2_LIBS="`$with_xml2_prefix/bin/xml2-config --libs`"
Packit a4aae4
    dnl XML2_STATIC_LIBS=$XML2_LIBS
Packit a4aae4
    xmlprivatelibs="`$with_xml2_prefix/bin/xml2-config --libs`"
Packit a4aae4
    XML2_CFLAGS="`$with_xml2_prefix/bin/xml2-config --cflags`"
Packit a4aae4
    xml_set="yes"
Packit a4aae4
elif test -n "$with_xml2_prefix"
Packit a4aae4
then
Packit a4aae4
    AC_MSG_ERROR([You set the libxml2 prefix directory to $with_xml2_prefix, but xml2-config is not there.])
Packit a4aae4
fi
Packit a4aae4
Packit a4aae4
if test -z "$xml_set"
Packit a4aae4
then
Packit a4aae4
libdap_pkgconfig_libxml2=yes
Packit a4aae4
libdap_libxml2_module='libxml-2.0 >= 2.7.0'
Packit a4aae4
PKG_CHECK_MODULES([XML2],[$libdap_libxml2_module], ,[libdap_pkgconfig_libxml2=no])
Packit a4aae4
AC_MSG_CHECKING([for libxml2])
Packit a4aae4
if test $libdap_pkgconfig_libxml2 = 'yes'
Packit a4aae4
then
Packit a4aae4
	xmlprivatereq=$libdap_libxml2_module
Packit a4aae4
	dnl XML2_STATIC_LIBS="`$PKG_CONFIG --static --libs libxml-2.0`"
Packit a4aae4
	XML2_LIBS="`$PKG_CONFIG --libs libxml-2.0`"
Packit a4aae4
	AC_MSG_RESULT([yes; used pkg-config])
Packit a4aae4
elif xml2-config --version > /dev/null 2>&1
Packit a4aae4
then
Packit a4aae4
	version_libxml2=`xml2-config --version`
Packit a4aae4
Packit a4aae4
        AS_VERSION_COMPARE(["$version_libxml2"], ["2.7.0"], 
Packit a4aae4
                [AC_MSG_ERROR([I could not find libxml2 2.7.0 or newer])])
Packit a4aae4
        
Packit a4aae4
	XML2_LIBS="`xml2-config --libs`"
Packit a4aae4
	dnl XML2_STATIC_LIBS=$XML2_LIBS
Packit a4aae4
	XML2_CFLAGS="`xml2-config --cflags`"
Packit a4aae4
	xmlprivatelibs="`xml2-config --libs `"
Packit a4aae4
	dnl `
Packit a4aae4
	AC_MSG_RESULT([yes; used xml2-config and found version $version_libxml2])
Packit a4aae4
else
Packit a4aae4
	AC_MSG_ERROR([I could not find ml2-config])
Packit a4aae4
fi
Packit a4aae4
fi
Packit a4aae4
Packit a4aae4
AC_SUBST([xmlprivatereq])
Packit a4aae4
AC_SUBST([xmlprivatelibs])
Packit a4aae4
AC_SUBST([XML2_LIBS])
Packit a4aae4
dnl AC_SUBST([XML2_STATIC_LIBS])
Packit a4aae4
AC_SUBST([XML2_CFLAGS])
Packit a4aae4
Packit a4aae4
AC_CHECK_LIB([pthread], [pthread_kill], 
Packit a4aae4
	[PTHREAD_LIBS="-lpthread"],
Packit a4aae4
	[AC_MSG_ERROR([I could not find pthreads])])
Packit a4aae4
AC_SUBST([PTHREAD_LIBS])
Packit a4aae4
Packit a4aae4
AC_CHECK_LIB([uuid], [uuid_generate], 
Packit a4aae4
	[UUID_LIBS="-luuid"],
Packit a4aae4
	[UUID_LIBS=""])
Packit a4aae4
AC_SUBST([UUID_LIBS])
Packit a4aae4
Packit a4aae4
AM_PATH_CPPUNIT(1.12.0,
Packit a4aae4
	[AM_CONDITIONAL([CPPUNIT], [true])],
Packit a4aae4
	[
Packit a4aae4
	    PKG_CHECK_MODULES(CPPUNIT, [cppunit >= 1.12.0],
Packit a4aae4
		[AM_CONDITIONAL([CPPUNIT], [true])],
Packit a4aae4
		[AM_CONDITIONAL([CPPUNIT], [false])]
Packit a4aae4
	    )
Packit a4aae4
	]
Packit a4aae4
)
Packit a4aae4
Packit a4aae4
DODS_DEBUG_OPTION
Packit a4aae4
Packit a4aae4
dnl See util.cc:dods_root()
Packit a4aae4
AS_IF([test "$prefix" = "NONE"],
Packit a4aae4
      [AC_DEFINE([LIBDAP_ROOT], ["/usr/local"], [Set to the prefix directory])],
Packit a4aae4
	  [AC_DEFINE_UNQUOTED([LIBDAP_ROOT], ["$prefix"], [Set to the prefix directory])])
Packit a4aae4
Packit a4aae4
dnl By default, DAP4 is enabled. Use this to disable. jhrg 5/12/15
Packit a4aae4
AC_ARG_ENABLE([dap4], 
Packit a4aae4
    [AC_HELP_STRING([--enable-dap4], [Enable DAP4 types and responses (default is Yes)])],
Packit a4aae4
    [enable_dap4=${enableval}], [enable_dap4=yes])
Packit a4aae4
Packit a4aae4
AS_IF([test x$enable_dap4 = xyes], [
Packit a4aae4
    dnl Do the stuff needed for enabling the feature
Packit a4aae4
    dnl echo "Defining DAP4! "
Packit a4aae4
    AC_DEFINE([DAP4], 1, [Should DAP4 support be enabled?])
Packit a4aae4
    AM_CONDITIONAL([DAP4_DEFINED], [true]) ],
Packit a4aae4
    [ dnl else enable_dap4 is false
Packit a4aae4
    AM_CONDITIONAL([DAP4_DEFINED], [false])
Packit a4aae4
])
Packit a4aae4
Packit a4aae4
AC_ARG_ENABLE([developer],
Packit a4aae4
	[AS_HELP_STRING([--enable-developer],
Packit a4aae4
				    [Build a debug (-g3 -O0) version of this code and include assert() calls in the code (default is no)])],
Packit a4aae4
    [build_developer=${enableval}],
Packit a4aae4
    [build_developer=no])
Packit a4aae4
Packit a4aae4
AS_IF([test x$build_developer = xyes],
Packit a4aae4
      [AC_MSG_NOTICE([Building developer version])
Packit a4aae4
       AM_CONDITIONAL([BUILD_DEVELOPER], [true])],
Packit a4aae4
      [AC_MSG_NOTICE([Not building developer version])
Packit a4aae4
       AM_CONDITIONAL([BUILD_DEVELOPER], [false])
Packit a4aae4
       AC_DEFINE([NDEBUG], [1], [Define this to suppres assert() calls.])])
Packit a4aae4
Packit a4aae4
DODS_GCOV_VALGRIND
Packit a4aae4
Packit a4aae4
dnl autoheader macros; tack some text at the top and bottom of config_dap.h.in
Packit a4aae4
Packit a4aae4
AH_TOP([#ifndef _config_h
Packit a4aae4
#define _config_h])
Packit a4aae4
Packit a4aae4
AH_BOTTOM([#endif /* _config_h */])
Packit a4aae4
Packit a4aae4
AC_CONFIG_FILES([Makefile
Packit a4aae4
                 libdap.pc
Packit a4aae4
                 libdapclient.pc
Packit a4aae4
                 libdapserver.pc
Packit a4aae4
                 main_page.doxygen
Packit a4aae4
	             doxy.conf
Packit a4aae4
	             abi_checker.xml
Packit a4aae4
Packit a4aae4
                 gl/Makefile
Packit a4aae4
                 d4_ce/Makefile
Packit a4aae4
                 d4_function/Makefile
Packit a4aae4
                 
Packit a4aae4
                 tests/Makefile
Packit a4aae4
                 tests/atlocal
Packit a4aae4
                 
Packit a4aae4
                 unit-tests/Makefile
Packit a4aae4
                 unit-tests/cache-testsuite/Makefile])
Packit a4aae4
Packit a4aae4
AC_CONFIG_FILES([dap-config], [chmod +x dap-config]) 
Packit a4aae4
	
Packit a4aae4
AC_OUTPUT