1 # $Id: configure.in,v 1.13 2000/06/19 10:05:57 xiphmont Exp $
4 #AC_CONFIG_HEADER(config.h)
6 cp configure.guess config.guess
7 cp configure.sub config.sub
11 dnl If we're on IRIX, we wanna use cc even if gcc is there (unless the user
12 dnl has overriden us)...
15 if test -z "$CC"; then
18 AC_CHECK_LIB(audio, ALwritesamps)
22 if test -z "$CC"; then
26 AC_CHECK_PROG(AR,ar,ar)
27 AC_CHECK_PROG(INSTALL,install,install)
29 dnl Set some target options
30 if test -z "$GCC"; then
35 PROFILE="-p -g3 -O2" ;;
38 OPT="-xO4 -fast -w -fsingle -fsimple -native -xcg92"
39 PROFILE="-v -xpg -g -xO4 -fast -fsingle -native -fsimple -xcg92 -Dsuncc" ;;
47 # -D__NO_MATH_INLINES avoids some serious FP assembly related bugs in
52 DEBUG="-g -Wall -D_REENTRANT -D__NO_MATH_INLINES -fsigned-char"
53 OPT="-O20 -ffast-math -D_REENTRANT -fsigned-char"
54 PROFILE="-pg -g -O20 -ffast-math -D_REENTRANT -fsigned-char";;
56 DEBUG="-g -Wall -D__NO_MATH_INLINES -fsigned-char -mv8"
57 OPT="-O20 -ffast-math -D__NO_MATH_INLINES -fsigned-char -mv8"
58 PROFILE="-pg -g -O20 -D__NO_MATH_INLINES -fsigned-char -mv8" ;;
60 DEBUG="-g -Wall -D__NO_MATH_INLINES -fsigned-char"
61 OPT="-O20 -D__NO_MATH_INLINES -fsigned-char"
62 PROFILE="-O20 -g -pg -D__NO_MATH_INLINES -fsigned-char" ;;
73 AC_CHECK_LIB(pthread, pthread_create,
74 pthread_lib="-lpthread"; AC_DEFINE(HAVE_LIBPTHREAD), :)
76 dnl Linuxthreads require you to define _REENTRANT in all threaded
77 dnl code. Bogus, bogus...
79 if test -n "$pthread_lib"; then
87 #if test -n "$x_libraries"; then
90 # dnl If we find libgtk installed, great; otherwise assume we have
91 # dnl to build it ourselves.
93 # AC_CHECK_LIB(gtk, gtk_main, :, LIBGTKDIR="libgtk", $X_LIBS -lglib -lgdk -lX11 -lXext -lm)
95 # dnl libpthread is required for xogg.
97 # if test -z "$pthread_lib"; then XOGG=""; fi
99 # dnl If we don't have libgtk installed, and we don't have a libgtk
100 # dnl subdirectory to build the library ourself, we can't build xogg.
102 # if test -n "$LIBGTKDIR" -a ! -d "$LIBGTKDIR"; then
108 dnl This seems to be the only way to make autoconf only *sometimes* configure
109 dnl a subdirectory with AC_CONFIG_SUBDIRS. "__noconf" is assumed to not
110 dnl exist as a directory, so configure won't try to recursively enter it, unless
111 dnl the shell variable $dummy is reset to an existing directory inside the
116 #if test -d "$LIBGTKDIR"; then
117 # enable_shared="no"; export enable_shared
119 # AC_CONFIG_SUBDIRS("$dummy")
120 # X_LIBS="-L${srcdir}/libgtk/gtk/.libs -L${srcdir}/libgtk/gdk/.libs -L${srcdir}/libgtk/glib/.libs $X_LIBS"
123 AC_CHECK_SIZEOF(short)
125 AC_CHECK_SIZEOF(long)
126 AC_CHECK_SIZEOF(long long)
129 $ac_cv_sizeof_short) SIZE16="short";;
130 $ac_cv_sizeof_int) SIZE16="int";;
134 $ac_cv_sizeof_short) SIZE32="short";;
135 $ac_cv_sizeof_int) SIZE32="int";;
136 $ac_cv_sizeof_long) SIZE32="long";;
140 $ac_cv_sizeof_int) SIZE64="int";;
141 $ac_cv_sizeof_long) SIZE64="long";;
142 $ac_cv_sizeof_long_long) SIZE64="long long";;
145 AC_CHECK_TYPE(int16_t,$SIZE16)
146 AC_CHECK_TYPE(int32_t,$SIZE32)
147 AC_CHECK_TYPE(int64_t,$SIZE64)
148 AC_CHECK_TYPE(u_int16_t,unsigned $SIZE16)
149 AC_CHECK_TYPE(u_int32_t,unsigned $SIZE32)
150 AC_CHECK_TYPE(u_int64_t,unsigned $SIZE64)
152 if test -z "$SIZE16"; then
153 AC_MSG_ERROR(No 16 bit type found on this platform!)
155 if test -z "$SIZE32"; then
156 AC_MSG_ERROR(No 32 bit type found on this platform!)
158 if test -z "$SIZE64"; then
159 AC_MSG_WARN(No 64 bit type found on this platform!)
163 AC_CHECK_HEADERS(fcntl.h limits.h sys/ioctl.h sys/time.h unistd.h)
172 AC_CHECK_FUNCS(gettimeofday select strcspn strerror strspn sigaction)
182 AC_SUBST(pthread_lib)
184 AC_OUTPUT(Makefile lib/Makefile examples/Makefile vorbis-tools/Makefile\
185 vq/Makefile huff/Makefile cmdline/Makefile xmms/Makefile kmpg/Makefile)