Fix a type-punning warning.
[asdcplib-cth.git] / configure.ac
1 #                                               -*- Autoconf -*-
2 # Process this file with autoconf to produce a configure script.
3 # Copyright (c) 2007-2015 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], [2.5.11], [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 AC_CONFIG_MACRO_DIR([m4])
48
49 # Checks for programs.
50 AC_CANONICAL_BUILD
51 AC_CANONICAL_HOST
52 case $host_os in
53        openbsd*) openbsd_host=true ;;
54        *)        openbsd_host=false ;;
55 esac
56 AM_CONDITIONAL([OPENBSD_HOST], [test x$openbsd_host = xtrue])
57 AC_PROG_CC
58 AC_PROG_CXX
59 AC_PROG_LIBTOOL
60 AC_PROG_INSTALL
61 AC_PROG_RANLIB
62
63 AC_SYS_LARGEFILE
64 if test "$ac_cv_sys_largefile_CC" != no; then
65    CXX=$CXX$ac_cv_sys_largefile_CC
66 fi
67
68 AX_LIB_OPENSSL([0.9.7])
69 AX_LIB_EXPAT
70 AX_LIB_XERCES
71 #AM_PATH_PYTHON([2.3], , [:])
72 AZ_PYTHON_DEFAULT
73 AZ_PYTHON_WITH
74 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
75 AC_ARG_ENABLE([freedist],
76      [  --enable-freedist    ensure source distribution is of BSD-licensed code],
77      [case "${enableval}" in
78        yes) freedist=true
79        AC_MSG_WARN([BSD licensed ASDCPlib creation ENABLED.]) ;;
80        no)  freedist=false ;;
81        *) AC_MSG_ERROR([bad value ${enableval} for --enable-freedist]) ;;
82      esac],[freedist=false])
83      AM_CONDITIONAL([FREEDIST], [test x$freedist = xtrue])
84 AC_ARG_ENABLE([dev-headers],
85      [  --enable-dev-headers    install development headers],
86      [case "${enableval}" in
87        yes) dev_headers=true ;;
88        no)  dev_headers=false ;;
89        *) AC_MSG_ERROR([bad value ${enableval} for --enable-dev-headers]) ;;
90      esac],[dev_headers=false])
91      AM_CONDITIONAL([DEV_HEADERS], [test x$dev_headers = xtrue])
92 AC_ARG_ENABLE([random-case-UUID],
93      [  --enable-random-case-UUID    encode randomly-cased UUID values when the environment variable KM_USE_RANDOM_UUID is set],
94      [case "${enableval}" in
95        yes) random_case_UUID=true ;;
96        no)  random_case_UUID=false ;;
97        *) AC_MSG_ERROR([bad value ${enableval} for --enable-random-case-UUID]) ;;
98      esac],[random_case_UUID=false])
99      AM_CONDITIONAL([ENABLE_RANDOM_UUID], [test x$random_case_UUID = xtrue])
100 AC_ARG_ENABLE([as-02],
101      [  --enable-as-02    enable support for SMPTE ST 2067-5 MXF files, A.K.A. AS-02],
102      [case "${enableval}" in
103        yes) as_02_use=true ;;
104        no)  as_02_use=false ;;
105        *) AC_MSG_ERROR([bad value ${enableval} for --enable-as-02]) ;;
106      esac],[as_02_use=false])
107      AM_CONDITIONAL([USE_AS_02], [test x$as_02_use = xtrue])
108 AC_ARG_ENABLE([phdr],
109      [  --enable-phdr    enable support for Prototype for High Dyamic Range in AS-02],
110      [case "${enableval}" in
111        yes) phdr_use=true ;;
112        no)  phdr_use=false ;;
113        *) AC_MSG_ERROR([bad value ${enableval} for --enable-phdr]) ;;
114      esac],[phdr_use=false])
115      AM_CONDITIONAL([USE_PHDR], [test x$phdr_use = xtrue])
116
117 # Checks for libraries.
118 AC_CHECK_LIB([pthread], [pthread_create])
119
120 # Checks for header files.
121 #AC_HEADER_DIRENT
122 #AC_HEADER_STDC
123 #AC_CHECK_HEADERS([arpa/inet.h fcntl.h limits.h netinet/in.h stdlib.h string.h sys/socket.h unistd.h wchar.h])
124
125 # Checks for typedefs, structures, and compiler characteristics.
126 #AC_C_CONST
127 #AC_C_INLINE
128 #AC_TYPE_OFF_T
129 #AC_TYPE_SIZE_T
130 #AC_STRUCT_TM
131
132 # Checks for library functions.
133 #AC_FUNC_CLOSEDIR_VOID
134 #AC_FUNC_MALLOC
135 #AC_FUNC_MEMCMP
136 #AC_FUNC_STAT
137 #AC_CHECK_FUNCS([getcwd memset regcomp strchr strerror strrchr strstr strtol])
138
139 AC_CONFIG_FILES([Makefile
140                  src/Makefile
141                  win32/Makefile
142                  win32/Makefile.mak:win32/Makefile.wmk])
143 AC_OUTPUT