Remove asdcp_wrappers from free distribution.
[asdcplib.git] / configure.ac
index b8597a0cb9a44c402a7e7f9d92519f0e2fcbf7c7..24bca1138e75866c142dbb725236395fc001bd44 100644 (file)
@@ -37,7 +37,7 @@ AC_PREREQ([2.59])
 # For example, if asdcplib version 1.0.0 were modified to accomodate changes
 # in file format, and if no changes were made to AS_DCP.h, the new version would be
 # 1.0.1. If changes were also required in AS_DCP.h, the new version would be 1.1.1.
-AC_INIT([asdcplib], [1.3.20], [asdcplib@cinecert.com])
+AC_INIT([asdcplib], [1.4.22], [asdcplib@cinecert.com])
 
 AC_CONFIG_AUX_DIR([build-aux])
 AC_CONFIG_SRCDIR([src/KM_error.h])
@@ -71,7 +71,7 @@ AZ_PYTHON_DEFAULT
 AZ_PYTHON_WITH
 AM_CONDITIONAL([HAVE_PYTHON], [test "$PYTHON" != :])
 AC_ARG_ENABLE([freedist],
-     [  --enable-freedist    Ensure source distribution is of BSD-licensed code.],
+     [  --enable-freedist    ensure source distribution is of BSD-licensed code],
      [case "${enableval}" in
        yes) freedist=true ;;
        no)  freedist=false ;;
@@ -79,13 +79,21 @@ AC_ARG_ENABLE([freedist],
      esac],[freedist=false])
      AM_CONDITIONAL([FREEDIST], [test x$freedist = xtrue])
 AC_ARG_ENABLE([dev-headers],
-     [  --enable-dev-headers    Install development headers],
+     [  --enable-dev-headers    install development headers],
      [case "${enableval}" in
        yes) dev_headers=true ;;
        no)  dev_headers=false ;;
        *) AC_MSG_ERROR([bad value ${enableval} for --enable-dev-headers]) ;;
      esac],[dev_headers=false])
      AM_CONDITIONAL([DEV_HEADERS], [test x$dev_headers = xtrue])
+AC_ARG_ENABLE([random-case-UUID],
+     [  --enable-random-case-UUID    allow randomly cased UUID headers when the environment variable KM_USE_RANDOM_UUID is set],
+     [case "${enableval}" in
+       yes) random_case_UUID=true ;;
+       no)  random_case_UUID=false ;;
+       *) AC_MSG_ERROR([bad value ${enableval} for --enable-random-case-UUID]) ;;
+     esac],[random_case_UUID=false])
+     AM_CONDITIONAL([ENABLE_RANDOM_UUID], [test x$random_case_UUID = xtrue])
 
 # Checks for libraries.
 AC_CHECK_LIB([pthread], [pthread_create])