added changelog for 1.9.45
[asdcplib.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3 # Copyright (c) 2007-2012 John Hurst. All rights reserved.
4 #
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions
7 # are met:
8 # 1. Redistributions of source code must retain the above copyright
9 #    notice, this list of conditions and the following disclaimer.
10 # 2. Redistributions in binary form must reproduce the above copyright
11 #    notice, this list of conditions and the following disclaimer in the
12 #    documentation and/or other materials provided with the distribution.
13 # 3. The name of the author may not be used to endorse or promote products
14 #    derived from this software without specific prior written permission.
15 #
16 # THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17 # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18 # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19 # IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20 # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21 # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22 # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23 # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25 # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
27 AC_PREREQ([2.59])
28 # If you change this, you should update the libtool version number specified
29 # in src/Makefile.am. Read <http://www.gnu.org/software/libtool/manual.html#Versioning>
30 # for suggestions on doing so.
31
32 # The version number consists of three segments: major, API minor, and
33 # implementation minor. Whenever a change is made to AS_DCP.h, the API minor
34 # version will increment. Changes made to the internal implementation will
35 # result in the incrementing of the implementation minor version.
36 #
37 # For example, if asdcplib version 1.0.0 were modified to accomodate changes
38 # in file format, and if no changes were made to AS_DCP.h, the new version would be
39 # 1.0.1. If changes were also required in AS_DCP.h, the new version would be 1.1.1.
40 AC_INIT([asdcplib], [1.9.44g], [asdcplib@cinecert.com])
41
42 AC_CONFIG_AUX_DIR([build-aux])
43 AC_CONFIG_SRCDIR([src/KM_error.h])
44 #AC_CONFIG_HEADER([src/config.h])
45 AM_INIT_AUTOMAKE([1.9 foreign])
46
47 # Checks for programs.
48 AC_CANONICAL_BUILD
49 AC_CANONICAL_HOST
50 case $host_os in
51        openbsd*) openbsd_host=true ;;
52        *)        openbsd_host=false ;;
53 esac
54 AM_CONDITIONAL([OPENBSD_HOST], [test x$openbsd_host = xtrue])
55 AC_PROG_CC
56 AC_PROG_CXX
57 AC_PROG_LIBTOOL
58 AC_PROG_INSTALL
59 AC_PROG_RANLIB
60
61 AC_SYS_LARGEFILE
62 if test "$ac_cv_sys_largefile_CC" != no; then
63    CXX=$CXX$ac_cv_sys_largefile_CC
64 fi
65
66 AX_LIB_OPENSSL([0.9.7])
67 AX_LIB_EXPAT
68 AX_LIB_XERCES
69 #AM_PATH_PYTHON([2.3], , [:])
70 AZ_PYTHON_DEFAULT
71 AZ_PYTHON_WITH
72 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
73 AC_ARG_ENABLE([freedist],
74      [  --enable-freedist    ensure source distribution is of BSD-licensed code],
75      [case "${enableval}" in
76        yes) freedist=true ;;
77        no)  freedist=false ;;
78        *) AC_MSG_ERROR([bad value ${enableval} for --enable-freedist]) ;;
79      esac],[freedist=false])
80      AM_CONDITIONAL([FREEDIST], [test x$freedist = xtrue])
81 AC_ARG_ENABLE([dev-headers],
82      [  --enable-dev-headers    install development headers],
83      [case "${enableval}" in
84        yes) dev_headers=true ;;
85        no)  dev_headers=false ;;
86        *) AC_MSG_ERROR([bad value ${enableval} for --enable-dev-headers]) ;;
87      esac],[dev_headers=false])
88      AM_CONDITIONAL([DEV_HEADERS], [test x$dev_headers = xtrue])
89 AC_ARG_ENABLE([random-case-UUID],
90      [  --enable-random-case-UUID    allow randomly cased UUID headers when the environment variable KM_USE_RANDOM_UUID is set],
91      [case "${enableval}" in
92        yes) random_case_UUID=true ;;
93        no)  random_case_UUID=false ;;
94        *) AC_MSG_ERROR([bad value ${enableval} for --enable-random-case-UUID]) ;;
95      esac],[random_case_UUID=false])
96      AM_CONDITIONAL([ENABLE_RANDOM_UUID], [test x$random_case_UUID = xtrue])
97
98 # Checks for libraries.
99 AC_CHECK_LIB([pthread], [pthread_create])
100
101 # Checks for header files.
102 #AC_HEADER_DIRENT
103 #AC_HEADER_STDC
104 #AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h wchar.h])
105
106 # Checks for typedefs, structures, and compiler characteristics.
107 #AC_C_CONST
108 #AC_C_INLINE
109 #AC_TYPE_OFF_T
110 #AC_TYPE_SIZE_T
111 #AC_STRUCT_TM
112
113 # Checks for library functions.
114 #AC_FUNC_CLOSEDIR_VOID
115 #AC_FUNC_MALLOC
116 #AC_FUNC_MEMCMP
117 #AC_FUNC_STAT
118 #AC_CHECK_FUNCS([getcwd memset regcomp strchr strerror strrchr strstr strtol])
119
120 AC_CONFIG_FILES([Makefile
121                  src/Makefile
122                  win32/Makefile
123                  win32/Makefile.mak:win32/Makefile.wmk])
124 AC_OUTPUT