X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=configure.in;h=7399dbfe70de95916bfaa8b2edb0a1203da165be;hb=a8614ab4906840c51c03b7a4219fba4b45bcd9b0;hp=41c98ab58d77b5501565d082ac0b318fa4e8b8e9;hpb=2084276836ba3b5b28df8e9a076ec7f6f309ecac;p=swftools.git diff --git a/configure.in b/configure.in index 41c98ab..7399dbf 100644 --- a/configure.in +++ b/configure.in @@ -1,11 +1,11 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/) -export PACKAGE=swftools -export VERSION=0.2.1 - -export CFLAGS="-O2 -fomit-frame-pointer" -export CXXFLAGS="-O2 -fomit-frame-pointer" +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" +export PACKAGE VERSION CFLAGS CXXFLAGS dnl Checks for programs. AC_PROG_CC @@ -29,6 +29,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; @@ -57,7 +58,7 @@ dnl AC_PATH_X dnl AC_PATH_XTRA AC_HEADER_DIRENT AC_HEADER_STDC - AC_CHECK_HEADERS(math.h fcntl.h limits.h malloc.h unistd.h memory.h zlib.h jpeglib.h t1lib.h sys/stat.h sys/types.h) + 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) if test "x${ac_cv_header_jpeglib_h}" != "xyes"; then DISABLEPDF2SWF=true; @@ -88,6 +89,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) @@ -95,17 +97,15 @@ dnl Checks for typedefs, structures, and compiler characteristics. dnl AC_CHECK_TYPE(uint,unsigned long int) dnl Checks for library functions. - AC_FUNC_MEMCMP - AC_FUNC_MMAP - AC_FUNC_VPRINTF - AC_CHECK_FUNCS(getcwd putenv socket strcspn strdup strerror strstr lrand48 rand srand48 srand) + AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand) if test "x${UNCOMPRESS}" = "xgzip"; then AC_DEFINE_UNQUOTED(USE_GZIP, 1) fi AC_SUBST(USE_GZIP) -export JPEG2SWF='jpeg2swf$(EXEEXT)' +JPEG2SWF='jpeg2swf$(EXEEXT)' +export JPEG2SWF if test "x${DISABLEPDF2SWF}" = "xtrue"; then echo "***************************************************" echo "The following headers/libraries are missing: " ${MISSINGLIBS} @@ -113,14 +113,16 @@ if test "x${DISABLEPDF2SWF}" = "xtrue"; then rm -f pdf2swf/Makefile echo all: > pdf2swf/Makefile echo install: >> pdf2swf/Makefile + echo clean: >> pdf2swf/Makefile if test "x${DISABLEJPEG2SWF}" = "xtrue"; then echo "Disabling jpeg2swf tool..." - export JPEG2SWF= + JPEG2SWF= + export JPEG2SWF fi echo "***************************************************" - FILES="./release Makefile lib/Makefile src/Makefile swfs/Makefile" + FILES="./release Makefile lib/bladeenc/Makefile lib/Makefile src/Makefile swfs/Makefile" else - FILES="./release Makefile lib/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile pdf2swf/fonts/Makefile swfs/Makefile" + FILES="./release Makefile lib/bladeenc/Makefile lib/lame/Makefile lib/Makefile src/Makefile pdf2swf/Makefile pdf2swf/xpdf/Makefile pdf2swf/ttf2pt1/Makefile pdf2swf/fonts/Makefile swfs/Makefile" fi AC_SUBST(JPEG2SWF)