polygon intersector: added horizontal line reconstruction
[swftools.git] / configure.in
index c4391df..7d35992 100644 (file)
@@ -25,7 +25,7 @@ AC_ARG_WITH([poppler],
 [  --with-poppler          use poppler instead of internal xpdf (currently broken)], [USE_POPPLER=true])
 
 PACKAGE=swftools
-VERSION=2008-07-11-0020
+VERSION=0.9.0
 
 
 # ------------------------------------------------------------------
@@ -236,7 +236,7 @@ dnl Checks for header files.
  AC_HEADER_DIRENT
  AC_HEADER_STDC
 
- AC_CHECK_HEADERS(zlib.h gif_lib.h io.h wchar.h jpeglib.h assert.h signal.h pthread.h sys/stat.h sys/types.h dirent.h sys/bsdtypes.h sys/ndir.h sys/dir.h ndir.h time.h sys/time.h sys/resource.h)
+ AC_CHECK_HEADERS(zlib.h gif_lib.h io.h wchar.h jpeglib.h assert.h signal.h pthread.h sys/stat.h sys/mman.h sys/types.h dirent.h sys/bsdtypes.h sys/ndir.h sys/dir.h ndir.h time.h sys/time.h sys/resource.h)
 
 AC_DEFINE_UNQUOTED([PACKAGE], ["$PACKAGE"], [Name of package])
 AC_DEFINE_UNQUOTED([VERSION], ["$VERSION"], [Version number of package])
@@ -253,14 +253,13 @@ dnl Checks for typedefs, structures, and compiler characteristics.
  AC_TYPE_SIZE_T
  AC_STRUCT_TM
  AC_CHECK_TYPE(boolean,int) #needed for jpeglib
- AC_CHECK_FUNCS(popen wcschr wcsdup mkstemp stat lrand48 rand srand48 srand bcopy bzero time getrusage mallinfo)
+ AC_CHECK_FUNCS(popen wcschr wcsdup mkstemp stat mmap lrand48 rand srand48 srand bcopy bzero time getrusage mallinfo)
 
+AC_CHECK_SIZEOF([signed char])
+AC_CHECK_SIZEOF([signed short])
 AC_CHECK_SIZEOF([signed])
-AC_CHECK_SIZEOF([unsigned])
-AC_CHECK_SIZEOF([signed long])
-AC_CHECK_SIZEOF([unsigned long])
 AC_CHECK_SIZEOF([signed long long])
-AC_CHECK_SIZEOF([unsigned long long])
+AC_CHECK_SIZEOF([void*])
 
 RFX_CHECK_FREETYPE
 
@@ -281,7 +280,7 @@ else
     if test -f lib/lame/Makefile.in; then
        lame_in_source='$(lame_objects)'
        lame_makefile="lib/lame/Makefile"
-       CPPFLAGS="$CPPFLAGS -Ilame"
+       CPPFLAGS="$CPPFLAGS -Ilame -Ilib/lame"
        AC_DEFINE([HAVE_LAME], [1], [have/use internal l.a.m.e. mp3 library])
     else
        if test -d /usr/include/lame; then
@@ -292,8 +291,9 @@ else
            fi
        fi
        AC_CHECK_LIB(mp3lame, lame_init,, NO_LIBMP3LAME=1)
-       AC_CHECK_HEADERS(lame.h)
-       if test "x$NO_LIBMP3LAME" "!=" "x1" -a "x$ac_cv_header_lame_h" "!=" "x";then
+        HASLAMEHEADER=
+       AC_CHECK_HEADERS(lame.h,HASLAMEHEADER=1)
+       if test "x$NO_LIBMP3LAME" "!=" "x1" -a "x$HASLAMEHEADER" '!=' "x";then
            AC_DEFINE([HAVE_LAME], [1])
        fi
     fi
@@ -456,7 +456,7 @@ LIBPDF='libpdf$(A)'
 if test "x${DISABLEPDF2SWF}" = "xtrue"; then
   echo "* Disabling pdf2swf tool..."
   rm -f lib/pdf/Makefile
-  echo all install uninstall clean: > lib/pdf/Makefile
+  echo all install uninstall clean libpdf: > lib/pdf/Makefile
   pdf2swf_makefile=""
   PDF2SWF=
   LIBPDF=
@@ -533,17 +533,17 @@ AH_BOTTOM([
 #endif
 #endif
 
-#endif // __config_h__
-])
-
 #ifdef HAVE_POPPLER
 #define GString GooString
 #define GHash GooHash
 #endif
 
+#endif // __config_h__
+])
 
 if test -f "release.in"; then release_in="./release"; fi
-FILES="$release_in Makefile.common ${avi2swf} Makefile lib/Makefile lib/action/Makefile src/Makefile ${pdf2swf_makefile} swfs/Makefile pdf2swf/fonts/Makefile ${pythonrfxswf} ${lame_makefile} lib/art/Makefile lib/readers/Makefile"
+if test -f "Makefile.new.in"; then mk_in="./Makefile.new"; fi
+FILES="$release_in $mk_in Makefile.common ${avi2swf} Makefile lib/Makefile lib/action/Makefile src/Makefile ${pdf2swf_makefile} swfs/Makefile ${pythonrfxswf} ${lame_makefile} lib/art/Makefile lib/readers/Makefile"
 AC_OUTPUT(${FILES})
 
 dnl new autoconf