diff options
| author | msheby <msheby@cinecert.com> | 2008-03-19 19:52:16 +0000 |
|---|---|---|
| committer | msheby <> | 2008-03-19 19:52:16 +0000 |
| commit | 3bb652da6ea2765b1538d0713cefa284238c8bdb (patch) | |
| tree | e47a1485aa576a40d4af4244ee16d666b7001d81 | |
| parent | 16de4d4c6de6a350766a040c99fd98a8f22b94b7 (diff) | |
Permit 64-bit builds.
| -rw-r--r-- | configure.ac | 5 | ||||
| -rw-r--r-- | src/KM_xml.cpp | 4 |
2 files changed, 6 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index 1103a0a..e109d51 100644 --- a/configure.ac +++ b/configure.ac @@ -8,7 +8,7 @@ AC_PREREQ([2.59]) AC_INIT([asdcplib], [1.3.19], [asdcplib@cinecert.com]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_SRCDIR([src/KM_error.h]) -AC_CONFIG_HEADER([src/config.h]) +#AC_CONFIG_HEADER([src/config.h]) AM_INIT_AUTOMAKE([1.9 foreign]) # Checks for programs. @@ -21,6 +21,9 @@ AC_PROG_INSTALL AC_PROG_RANLIB AC_SYS_LARGEFILE +if test "$ac_cv_sys_largefile_CC" != no; then + CXX=$CXX$ac_cv_sys_largefile_CC +fi CHECK_SSL AX_LIB_EXPAT diff --git a/src/KM_xml.cpp b/src/KM_xml.cpp index 2286d9b..8705ccf 100644 --- a/src/KM_xml.cpp +++ b/src/KM_xml.cpp @@ -34,7 +34,7 @@ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #include <stack> #include <map> -#ifdef ASDCP_USE_EXPAT +#ifdef HAVE_EXPAT #include <expat.h> #endif @@ -271,7 +271,7 @@ Kumu::XMLElement::GetChildrenWithName(const char* name, ElementList& outList) co //---------------------------------------------------------------------------------------------------- -#ifdef ASDCP_USE_EXPAT +#ifdef HAVE_EXPAT class ExpatParseContext |
