Added version checks for libburn and libisofs (by Vreixo)

This commit is contained in:
Thomas Schmitt 2008-02-02 13:11:38 +00:00
parent 4d22da734c
commit 7306759d68
2 changed files with 6 additions and 1 deletions

View File

@ -89,6 +89,11 @@ dnl >>> would need libisofs-0.6.1 or higher .so.6
AC_CHECK_HEADER(libburn/libburn.h)
AC_CHECK_HEADER(libisofs/libisofs.h)
dnl Check for proper library versions
LIBBURN_REQUIRED=0.4.2
LIBISOFS_REQUIRED=0.6.1
PKG_CHECK_MODULES(LIBBURN, libburn-1 >= $LIBBURN_REQUIRED)
PKG_CHECK_MODULES(LIBISOFS, libisofs-1 >= $LIBISOFS_REQUIRED)
dnl Add compiler-specific flags

View File

@ -1 +1 @@
#define Xorriso_timestamP "2008.02.01.200153"
#define Xorriso_timestamP "2008.02.02.131049"