diff options
| author | jhurst <jhurst@cinecert.com> | 2015-01-22 21:05:58 +0000 |
|---|---|---|
| committer | jhurst <> | 2015-01-22 21:05:58 +0000 |
| commit | 665b2e2e5dcf2266e636d29bcf4ef281da65117f (patch) | |
| tree | 1c9ddb0c0433f369817dc196e6b8a3502b4a1122 /configure.ac | |
| parent | c37d749945eba6b8922ecf58ef886f32ee55b38e (diff) | |
phdr
Diffstat (limited to 'configure.ac')
| -rw-r--r-- | configure.ac | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 03379a8..19b4057 100644 --- a/configure.ac +++ b/configure.ac @@ -1,6 +1,6 @@ # -*- Autoconf -*- # Process this file with autoconf to produce a configure script. -# Copyright (c) 2007-2013 John Hurst. All rights reserved. +# Copyright (c) 2007-2015 John Hurst. All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions @@ -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], [2.2.7], [asdcplib@cinecert.com]) +AC_INIT([asdcplib], [2.3.8], [asdcplib@cinecert.com]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/KM_error.h]) @@ -105,6 +105,14 @@ AC_ARG_ENABLE([as-02], *) AC_MSG_ERROR([bad value ${enableval} for --enable-as-02]) ;; esac],[as_02_use=false]) AM_CONDITIONAL([USE_AS_02], [test x$as_02_use = xtrue]) +AC_ARG_ENABLE([phdr], + [ --enable-phdr enable support for Prototype for High Dyamic Range in AS-02], + [case "${enableval}" in + yes) phdr_use=true ;; + no) phdr_use=false ;; + *) AC_MSG_ERROR([bad value ${enableval} for --enable-phdr]) ;; + esac],[phdr_use=false]) + AM_CONDITIONAL([USE_PHDR], [test x$phdr_use = xtrue]) # Checks for libraries. AC_CHECK_LIB([pthread], [pthread_create]) |
