From 50c870fbe064fa5ec2d54cd061009163bc842c6a Mon Sep 17 00:00:00 2001 From: Mario Danic Date: Mon, 4 Dec 2006 22:01:21 +0000 Subject: [PATCH] Fixed build system autoconf-related bug --- libburn/trunk/configure.ac | 3 ++- libisofs/trunk/configure.ac | 5 +++-- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/libburn/trunk/configure.ac b/libburn/trunk/configure.ac index f0954c7c..98c9bd57 100644 --- a/libburn/trunk/configure.ac +++ b/libburn/trunk/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libburn], [0.2.7], [http://libburn.pykix.org]) +AC_INIT([libburn], [0.2.7], [http://libburnia.pykix.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -63,6 +63,7 @@ AC_C_BIGENDIAN dnl Large file support AC_SYS_LARGEFILE AC_FUNC_FSEEKO +AC_CHECK_FUNC([fseeko]) if test ! $ac_cv_func_fseeko; then AC_ERROR([Libburn requires largefile support.]) fi diff --git a/libisofs/trunk/configure.ac b/libisofs/trunk/configure.ac index a3677358..633f27d1 100644 --- a/libisofs/trunk/configure.ac +++ b/libisofs/trunk/configure.ac @@ -1,4 +1,4 @@ -AC_INIT([libisofs], [0.2.3], [http://libburn.pykix.org]) +AC_INIT([libisofs], [0.2.4], [http://libburnia.pykix.org]) AC_PREREQ([2.50]) dnl AC_CONFIG_HEADER([config.h]) @@ -63,8 +63,9 @@ AC_C_BIGENDIAN dnl Large file support AC_SYS_LARGEFILE AC_FUNC_FSEEKO +AC_CHECK_FUNC([fseeko]) if test ! $ac_cv_func_fseeko; then - AC_ERROR([Libburn requires largefile support.]) + AC_ERROR([Libisofs requires largefile support.]) fi AC_PROG_LIBTOOL