X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=configure.in;h=36028219d14d53c8a7ac663875d3606f35f38535;hb=08413f49a157383b76b52520bd9d69e13250901e;hp=3e3f4dd3ee02aa6d7a01502716033bc50e675e23;hpb=7e640387ba8d21625953d9c14ba4f338337dbe15;p=swftools.git diff --git a/configure.in b/configure.in index 3e3f4dd..3602821 100644 --- a/configure.in +++ b/configure.in @@ -2,12 +2,23 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/) PACKAGE=swftools -VERSION=0.2.3 -CFLAGS="-Winline -Wparentheses -Wimplicit -Wreturn-type -O2 -fomit-frame-pointer" -CXXFLAGS="-Winline -Wparentheses -Wimplicit -Wreturn-type -O2 -fomit-frame-pointer" +VERSION=0.4.3 +# -Winline? +CFLAGS="-Wparentheses -Wimplicit -Wreturn-type -O2 -fomit-frame-pointer $CFLAGS" +CXXFLAGS="-Wparentheses -Wimplicit -Wreturn-type -O2 -fomit-frame-pointer $CXXFLAGS" export PACKAGE VERSION CFLAGS CXXFLAGS dnl Checks for programs. + AC_CANONICAL_HOST +MACOSX= +case $host_os in + *darwin* ) + MACOSX=yes + CFLAGS="$CFLAGS -fno-rtti" + CXXFLAGS="$CXXFLAGS -fno-rtti" + ;; +esac +dnl Checks for programs. AC_PROG_CC AC_PROG_CPP AC_PROG_CXX @@ -15,11 +26,26 @@ dnl Checks for programs. AC_PROG_MAKE_SET AC_PROG_INSTALL AC_PROG_LN_S + AC_PROG_LIBTOOL AC_CHECK_PROGS(UNCOMPRESS, gzip uncompress compress, ) dnl Checks for system services AC_EXEEXT +# The following tries to make use of includes and libraries in +# /usr/local, too. Notice: A -I/usr/local/include might break +# things (MingW, cross-compiling etc.) in the same way as -I/usr/include, +# especially on systems which link /usr/local to /usr, so it has yet +# to be seen how useful this is. +if test -d /usr/local/lib; then + LDFLAGS="$LDFLAGS -L/usr/local/lib" +fi +if test -d /usr/local/include; then +# Leave that alone. It's causing trouble e.g. with gcc 3.2 on gentoo. +# CPPFLAGS="$CPPFLAGS -I/usr/local/include" + echo > /dev/null +fi + dnl Checks for libraries. AC_CHECK_LIB(m, sin,, echo "Error: Math library not found."; @@ -29,6 +55,7 @@ dnl Checks for libraries. echo "Error: The zlib compression library is required." DISABLEPDF2SWF=true; MISSINGLIBS="${MISSINGLIBS} zlib" + exit; ) AC_CHECK_LIB(jpeg, jpeg_write_raw_data,, DISABLEPDF2SWF=true; @@ -40,24 +67,18 @@ dnl Checks for libraries. MISSINGLIBS="${MISSINGLIBS} T1lib" ) -SWF_CHECK_BYTEORDER +RFX_CHECK_BYTEORDER AC_SUBST(WORDS_BIGENDIAN) -SWF_CHECK_SYSTEM_BACKTICKS +RFX_CHECK_SYSTEM_BACKTICKS AC_SUBST(SYSTEM_BACKTICKS) AC_ARG_PROGRAM -dnl do we need those? -dnl AC_CHECK_LIB(pthread, pthread_create) -dnl AC_CHECK_LIB(X11, XFlush) - dnl Checks for header files. AC_CONFIG_HEADER(config.h) -dnl AC_PATH_X -dnl AC_PATH_XTRA AC_HEADER_DIRENT AC_HEADER_STDC - AC_CHECK_HEADERS(zlib.h jpeglib.h t1lib.h sys/stat.h sys/types.h dirent.h sys/ndir.h sys/dir.h ndir.h) + AC_CHECK_HEADERS(zlib.h jpeglib.h t1lib.h sys/stat.h sys/types.h dirent.h sys/bsdtypes.h sys/ndir.h sys/dir.h ndir.h) if test "x${ac_cv_header_jpeglib_h}" != "xyes"; then DISABLEPDF2SWF=true; @@ -88,6 +109,7 @@ dnl Checks for typedefs, structures, and compiler characteristics. AC_TYPE_SIZE_T AC_STRUCT_TM AC_CHECK_TYPE(boolean,int) + AC_CHECK_TYPE(bool,char) dnl AC_CHECK_TYPE(uchar,unsigned char) dnl AC_CHECK_TYPE(schar,signed char) dnl AC_CHECK_TYPE(word,unsigned short int) @@ -96,6 +118,15 @@ dnl Checks for typedefs, structures, and compiler characteristics. dnl Checks for library functions. AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand) + RFX_CHECK_AVI2SWF + +avi2swf="avi2swf/Makefile" +if test "x${AVIFILE}" != "xtrue"; then + echo "* Couldn't compile the avifile test program." + echo "* Disabling avi2swf tool..." + echo all install uninstall clean: > avi2swf/Makefile + avi2swf= +fi if test "x${UNCOMPRESS}" = "xgzip"; then AC_DEFINE_UNQUOTED(USE_GZIP, 1) @@ -109,19 +140,20 @@ if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "The following headers/libraries are missing: " ${MISSINGLIBS} echo "Disabling pdf2swf tool..." rm -f pdf2swf/Makefile - echo all: > pdf2swf/Makefile - echo install: >> pdf2swf/Makefile - echo clean: >> pdf2swf/Makefile + echo all install uninstall clean: > pdf2swf/Makefile if test "x${DISABLEJPEG2SWF}" = "xtrue"; then echo "Disabling jpeg2swf tool..." JPEG2SWF= export JPEG2SWF fi echo "***************************************************" - FILES="./release Makefile lib/bladeenc/Makefile lib/Makefile src/Makefile swfs/Makefile" + FILES="./release Makefile.common ${avi2swf} Makefile lib/lame/Makefile lib/Makefile src/Makefile swfs/Makefile" else - FILES="./release Makefile lib/bladeenc/Makefile lib/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile pdf2swf/fonts/Makefile swfs/Makefile" + FILES="./release Makefile.common ${avi2swf} Makefile lib/lame/Makefile lib/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile swfs/Makefile" fi AC_SUBST(JPEG2SWF) +AR=ar +AC_SUBST(AR) + AC_OUTPUT(${FILES})