removed ttf2pt1 Makefile.
[swftools.git] / configure.in
1 dnl Process this file with autoconf to produce a configure script.
2
3 dnl AC_INIT(src/) # old autoconf
4 AC_INIT
5 AC_CONFIG_SRCDIR([src/])
6
7 AC_ARG_ENABLE(checkmem,
8 [  --enable-checkmem       turn on ccmalloc debugging], CHECKMEM=true)
9 AC_ARG_ENABLE(debug,
10 [  --enable-debug          turn on debugging], DEBUG=true)
11 AC_ARG_ENABLE(warnings,
12 [  --enable-warnings       turn on compiler warnings], ENABLE_WARNINGS=true)
13 AC_ARG_ENABLE(optimizations,
14 [  --enable-optimizations  turn on compiler optimizations (recommended for avi2swf)], OPTIMIZE=true)
15 AC_ARG_ENABLE(lame,
16 [  --disable-lame          don't compile any L.A.M.E. mp3 encoding code in], DISABLE_LAME=true)
17
18 PACKAGE=swftools
19 VERSION=0.6.0
20
21 # ------------------------------------------------------------------
22
23 if test "x${srcdir}" != "x."; then
24     echo "--srcdir is not supported"
25     exit 1
26 fi
27
28 WARNINGS="-Wparentheses -Wimplicit -Wreturn-type"
29 if test "x$ENABLE_WARNINGS" '!=' "x";then
30     WARNINGS="-Wall -Wno-unused -Wno-format -Wno-redundant-decls"
31 fi
32
33 if test "x$CHECKMEM" '!=' "x";then
34     DEBUG=yes
35 fi
36 if test "x$DEBUG" '!=' "x";then
37     CFLAGS="$WARNINGS -g $CFLAGS"
38     CXXFLAGS="$WARNINGS -g $CXXFLAGS"
39 else if test "x$OPTIMIZE" '!=' "x"; then
40     CFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CFLAGS"
41     CXXFLAGS="$WARNINGS -O3 -fomit-frame-pointer -Winline $CXXFLAGS"
42 else
43     CFLAGS="$WARNINGS -O -fomit-frame-pointer $CFLAGS"
44     CXXFLAGS="$WARNINGS -O -fomit-frame-pointer $CXXFLAGS"
45 fi
46 fi
47 #OLDGCC=1
48 #if test "x$OLDGCC" '!=' "x";then
49 #     #CFLAGS="$CFLAGS --std=c89 -ansi -pendantic"
50 #     #CXXFLAGS="$CXXFLAGS --std=c89 -ansi -pendantic"
51 #     CFLAGS="$CFLAGS -ansi -pendantic"
52 #     CXXFLAGS="$CXXFLAGS -ansi -pendantic"
53 #fi
54
55 export PACKAGE VERSION CFLAGS CXXFLAGS
56
57 dnl Checks for programs.
58  AC_CANONICAL_HOST
59 MACOSX=
60 case $host_os in
61     *darwin* ) 
62         MACOSX=yes
63         CFLAGS="$CFLAGS -fno-rtti"
64         CXXFLAGS="$CXXFLAGS -fno-rtti"
65         ;;
66 esac
67 dnl Checks for programs.
68  AC_PROG_CC
69  AC_PROG_CXX
70     
71 if test "x$CHECKMEM" '!=' "x";then
72     CC="ccmalloc $CC"
73     CXX="ccmalloc $CXX"
74     #echo running again
75     #unset ac_cv_prog_CC
76     #unset ac_cv_prog_CXX
77     #AC_PROG_CC
78     #AC_PROG_CXX
79 fi
80  AC_PROG_CPP
81
82  AC_PROG_RANLIB
83  AC_PROG_MAKE_SET
84  AC_PROG_INSTALL
85  AC_PROG_LN_S
86  AC_PROG_LIBTOOL
87  AC_CHECK_PROGS(UNCOMPRESS, gzip uncompress compress, )
88
89 dnl Checks for system services
90  AC_EXEEXT
91
92 RFX_CHECK_MING
93
94 SLEXT="so"
95 if test "x${MINGW}" != "xyes"; then
96     # no mingW
97     AC_DEFINE_UNQUOTED(O_BINARY, 0)
98 else
99     # mingW
100     SLEXT="dll"
101 fi
102 export SLEXT
103 AC_SUBST(SLEXT)
104
105 # The following tries to make use of includes and libraries in
106 # /usr/local, too. Notice: A -I/usr/local/include might break
107 # things (MingW, cross-compiling etc.) in the same way as -I/usr/include, 
108 # especially on systems which link /usr/local to /usr, so it has yet
109 # to be seen how useful this is.
110 if test -d /usr/local/lib; then
111     LDFLAGS="$LDFLAGS -L/usr/local/lib"
112 fi
113 if test -d /usr/local/include; then
114 # Leave that alone. It's causing trouble e.g. with gcc 3.2 on gentoo.
115 #   CPPFLAGS="$CPPFLAGS -I/usr/local/include"
116     echo > /dev/null
117 fi
118 if test "$prefix" != "NONE" -a "$prefix" != "/usr/local" -a "$prefix" != "/usr/local/"; then
119     # if the user has a special prefix (like /opt), there might also be $prefix/lib
120     # and $prefix/include, which should be included in our search paths for libraries
121     # and includes.
122     LDFLAGS="$LDFLAGS -L${libdir}"
123     CPPFLAGS="$CPPFLAGS -I${includedir}"
124     # TODO- test whether gcc still works after this
125 fi
126
127 # this must be done after (I believe) AC_PROG_MAKE_SET
128 if test "x$DEBUG" '!=' "x";then
129     STRIP="@echo debug enabled, not stripping "
130     export STRIP
131     AC_SUBST(STRIP)
132 fi
133
134 dnl Checks for libraries.
135  AC_CHECK_LIB(m, sin,, 
136  echo "Error: Math library not found.";
137  exit;
138  )
139  AC_CHECK_LIB(z, deflate,, ZLIBMISSING=true)
140  AC_CHECK_LIB(jpeg, jpeg_write_raw_data,, JPEGLIBMISSING=true)
141  AC_CHECK_LIB(t1, T1_LoadFont,, T1LIBMISSING=true)
142
143 RFX_CHECK_BYTEORDER
144 AC_SUBST(WORDS_BIGENDIAN)
145 RFX_CHECK_SYSTEM_BACKTICKS
146 AC_SUBST(SYSTEM_BACKTICKS)
147
148 AC_ARG_PROGRAM
149
150 dnl Checks for header files.
151  AC_CONFIG_HEADER(config.h)
152  AC_HEADER_DIRENT
153  AC_HEADER_STDC
154  AC_CHECK_HEADERS(zlib.h jpeglib.h t1lib.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)
155
156 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
157 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
158 AC_SUBST(PACKAGE)
159 AC_SUBST(VERSION)
160
161 AC_SUBST(HAVE_UNISTD_H)
162 AC_SUBST(EXEEXT)
163
164 dnl Checks for typedefs, structures, and compiler characteristics.
165  AC_C_CONST
166  AC_C_INLINE
167  AC_TYPE_OFF_T
168  AC_TYPE_SIZE_T
169  AC_STRUCT_TM
170  AC_CHECK_TYPE(boolean,int)
171  AC_CHECK_TYPE(bool,char)
172  dnl AC_CHECK_TYPE(uchar,unsigned char)
173  dnl AC_CHECK_TYPE(schar,signed char)
174  dnl AC_CHECK_TYPE(word,unsigned short int)
175  dnl AC_CHECK_TYPE(sword,unsigned short int)
176  dnl AC_CHECK_TYPE(uint,unsigned long int)
177
178 dnl Checks for library functions.
179  AC_CHECK_FUNCS(popen mkstemp stat lrand48 rand srand48 srand bcopy bzero time)
180
181 # ------------------------------------------------------------------
182
183 RFX_CHECK_FREETYPE
184
185 # ------------------------------------------------------------------
186  
187 lame_objects= 
188 lame_makefile=
189 if test "x${DISABLE_LAME}" = "xtrue"; then
190     echo "*" Disabling lame support...
191 else
192     # old lame code at lib/lame
193     if test -f lib/lame/Makefile.in; then
194         lame_objects="lame/psymodel.o lame/fft.o lame/newmdct.o lame/quantize.o lame/takehiro.o lame/reservoir.o lame/quantize_pvt.o lame/vbrquantize.o lame/encoder.o lame/id3tag.o lame/version.o lame/tables.o lame/util.o lame/bitstream.o lame/set_get.o lame/VbrTag.o lame/lame.o"
195         lame_makefile="lib/lame/Makefile"
196         CPPFLAGS="$CPPFLAGS -Ilame"
197         AC_DEFINE_UNQUOTED(HAVE_LAME, 1)
198     else
199         if test -d /usr/include/lame; then
200             CPPFLAGS="$CPPFLAGS -I /usr/include/lame"
201         else
202             if test -d /usr/local/include/lame; then
203                 CPPFLAGS="$CPPFLAGS -I /usr/local/include/lame"
204             fi
205         fi
206         AC_CHECK_LIB(mp3lame, lame_init,, NO_LIBMP3LAME=1)
207         AC_CHECK_HEADERS(lame.h)
208         if test "x$NO_LIBMP3LAME" "!=" "x1" -a "x$ac_cv_header_lame_h" "!=" "x";then
209             AC_DEFINE_UNQUOTED(HAVE_LAME, 1)
210         fi
211     fi
212 fi
213 AC_SUBST(lame_objects)
214
215 # ------------------------------------------------------------------
216  
217 RFX_CHECK_AVI2SWF
218
219 # ------------------------------------------------------------------
220
221 if test "x${UNCOMPRESS}" = "xgzip"; then
222     AC_DEFINE_UNQUOTED(USE_GZIP, 1)
223 fi
224 AC_SUBST(USE_GZIP)
225
226 # ------------------------------------------------------------------
227
228 RFX_CHECK_PYTHON
229
230 if test "x$PYTHON_OK" '!=' "xyes";then
231     echo all install uninstall clean: > lib/python/Makefile
232     # fail silently- the most users won't have any need for the
233     # python interface anyway
234 fi
235
236 # ------------------------------------------------------------------
237
238 AC_MSG_CHECKING([for missing libraries])
239  
240 if test "x$ZLIBMISSING" = "xtrue";then
241     MISSINGLIBS="${MISSINGLIBS} zlib"
242     DISABLEPNG2SWF=true;
243 fi
244 if test "x$JPEGLIBMISSING" = "xtrue";then
245     MISSINGLIBS="${MISSINGLIBS} jpeglib"
246     DISABLEPDF2SWF=true;
247     DISABLEJPEG2SWF=true;
248 fi
249 #if test "x$T1LIBMISSING" = "xtrue";then
250 #    MISSINGLIBS="${MISSINGLIBS} t1lib"
251 #    DISABLEPDF2SWF=true;
252 #fi
253
254 if test "x${ac_cv_header_jpeglib_h}" != "xyes"; then
255  DISABLEPDF2SWF=true;
256  DISABLEJPEG2SWF=true;
257  MISSINGLIBS="${MISSINGLIBS} jpeglib.h"
258 fi
259 if test "x$HAVE_FREETYPE" != "x1"; then
260  DISABLEPDF2SWF=true;
261  MISSINGLIBS="${MISSINGLIBS} freetype"
262 fi
263 if test "x${ac_cv_header_t1lib_h}" != "xyes"; then
264  DISABLEPDF2SWF=true;
265  MISSINGLIBS="${MISSINGLIBS} t1lib.h"
266 fi
267 if test "x${ac_cv_header_zlib_h}" != "xyes"; then
268  DISABLEPNG2SWF=true;
269  MISSINGLIBS="${MISSINGLIBS} zlib.h"
270 fi
271 if test "x${AVIFILE}" != "xtrue"; then
272  MISSINGLIBS="${MISSINGLIBS} avifile"
273 fi
274
275 AC_MSG_RESULT(${MISSINGLIBS})
276
277 # ------------------------------------------------------------------
278
279 if test "x${MISSINGLIBS}" '!=' "x"; then
280   echo "***************************************************"
281   echo "* The following headers/libraries are missing: " ${MISSINGLIBS}
282 fi
283
284 avi2swf="avi2swf/Makefile"
285 if test "x${AVIFILE}" != "xtrue"; then
286  echo "* Disabling avi2swf tool..."
287  echo all install uninstall clean: > avi2swf/Makefile
288  avi2swf=
289 fi
290
291 pdf2swf_makefile="pdf2swf/Makefile pdf2swf/xpdf/Makefile"
292 if test "x${DISABLEPDF2SWF}" = "xtrue"; then
293   echo "* Disabling pdf2swf tool..."
294   rm -f pdf2swf/Makefile
295   echo all install uninstall clean: > pdf2swf/Makefile
296   pdf2swf_makefile=""
297 fi
298
299 if test "x${ZLIBMISSING}" = "xtrue"; then
300   echo
301   echo "* Warning! Without zlib, you will not be able to read"
302   echo "* or write compressed Flash MX files!"
303 fi
304
305 JPEG2SWF='jpeg2swf$(E)'
306 if test "x${DISABLEJPEG2SWF}" = "xtrue"; then
307   echo "* Disabling jpeg2swf tool..."
308   JPEG2SWF=
309 fi
310 export JPEG2SWF
311 AC_SUBST(JPEG2SWF)
312
313 PNG2SWF='png2swf$(E)'
314 if test "x${DISABLEPNG2SWF}" = "xtrue"; then
315   echo "* Disabling png2swf tool..."
316   PNG2SWF=
317 fi
318 export PNG2SWF
319 AC_SUBST(PNG2SWF)
320
321 if test "x${MISSINGLIBS}" '!=' "x"; then
322   echo "***************************************************"
323 fi
324
325 # ------------------------------------------------------------------
326
327 FILES="./release Makefile.common ${avi2swf} Makefile lib/Makefile lib/action/Makefile src/Makefile ${pdf2swf_makefile} swfs/Makefile ${pythonrfxswf} ${lame_makefile}"
328
329 dnl AC_OUTPUT(${FILES}) old autoconf
330 AC_CONFIG_FILES([${FILES}])
331 AC_OUTPUT
332