add --use-3dnow argument
[platform/upstream/flac.git] / configure.in
1 #  FLAC - Free Lossless Audio Codec
2 #  Copyright (C) 2001  Josh Coalson
3 #
4 #  This program is part of FLAC; you can redistribute it and/or
5 #  modify it under the terms of the GNU General Public License
6 #  as published by the Free Software Foundation; either version 2
7 #  of the License, or (at your option) any later version.
8 #
9 #  This program is distributed in the hope that it will be useful,
10 #  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 #  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 #  GNU General Public License for more details.
13 #
14 #  You should have received a copy of the GNU General Public License
15 #  along with this program; if not, write to the Free Software
16 #  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
17
18 # NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
19 # instead of FLAC__ since autoconf triggers off 'AC_' in strings
20
21 AC_INIT(src/flac/main.c)
22 AM_INIT_AUTOMAKE(flac, 1.0.1)
23
24 # We need two libtools, one that builds both shared and static, and
25 # one that builds only static.  This is because the resulting libtool
26 # does not allow us to choose which to build at runtime.
27 AM_PROG_LIBTOOL
28 sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
29 chmod +x libtool-disable-static
30
31 AC_PROG_MAKE_SET
32
33 AC_CANONICAL_HOST
34 case $host_cpu in
35         i*86)   cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
36         powerpc)        cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
37         sparc)  cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
38 esac
39 AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
40 AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
41 AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
42 case "$host" in
43         i[[3-6]]86-*-openbsd*) OBJ_FORMAT=aoutb ;;
44         *) OBJ_FORMAT=elf ;;
45 esac
46 AC_SUBST(OBJ_FORMAT)
47
48 if test x$cpu_ia32 = xtrue ; then
49 AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
50 fi
51
52 AC_ARG_ENABLE(asm-optimizations, [  --disable-asm-optimizations    Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
53 AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
54 if test x$asm_opt = xno ; then
55 AC_DEFINE(FLAC__NO_ASM)
56 fi
57
58 AC_ARG_ENABLE(debug,
59 [  --enable-debug                 Turn on debugging],
60 [case "${enableval}" in
61         yes) debug=true ;;
62         no)  debug=false ;;
63         *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
64 esac],[debug=false])
65 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
66
67 AC_ARG_ENABLE(sse_os,
68 [  --sse-os                 Enable SSE support by asserting that the OS supports SSE instructions],
69 [case "${enableval}" in
70         yes) sse_os=true ;;
71         no)  sse_os=false ;;
72         *) AC_MSG_ERROR(bad value ${enableval} for --sse-os) ;;
73 esac],[sse_os=false])
74 AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
75 if test x$sse_os = xtrue ; then
76 AC_DEFINE(FLAC__SSE_OS)
77 fi
78
79 [  --use-3dnow                 Enable 3DNOW! support],
80 [case "${enableval}" in
81         yes) use_3dnow=true ;;
82         no)  use_3dnow=false ;;
83         *) AC_MSG_ERROR(bad value ${enableval} for --use-3dnow) ;;
84 esac],[use_3dnow=false])
85 AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
86 if test x$use_3dnow = xtrue ; then
87 AC_DEFINE(FLAC__USE_3DNOW)
88 fi
89
90 AC_CHECK_LIB(ogg, ogg_stream_init,
91              [LIBS="$LIBS -logg"; have_ogg=yes],
92              [AC_MSG_WARN([*** Ogg development enviroment not installed - ogg support will not be built])])
93 AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
94 if test x$have_ogg = xyes ; then
95 AC_DEFINE(FLAC__HAS_OGG)
96 fi
97
98 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
99 AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
100
101 AC_CHECK_PROGS(NASM, nasm)
102 AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
103 if test -n "$NASM" ; then
104 AC_DEFINE(FLAC__HAS_NASM)
105 fi
106
107 dnl Check for type sizes
108
109 AC_CHECK_SIZEOF(short)
110 AC_CHECK_SIZEOF(int)
111 AC_CHECK_SIZEOF(long)
112 AC_CHECK_SIZEOF(long long)
113
114 case 2 in
115         $ac_cv_sizeof_short) FLaC__SIZE16="short" ; FLaC__USIZE16="unsigned short";;
116         $ac_cv_sizeof_int) FLaC__SIZE16="int" ; FLaC__USIZE16="unsigned int";;
117 esac
118
119 case 4 in
120         $ac_cv_sizeof_short) FLaC__SIZE32="short" ; FLaC__USIZE32="unsigned short";;
121         $ac_cv_sizeof_int) FLaC__SIZE32="int" ; FLaC__USIZE32="unsigned int";;
122         $ac_cv_sizeof_long) FLaC__SIZE32="long" ; FLaC__USIZE32="unsigned long";;
123 esac
124
125 case 8 in
126         $ac_cv_sizeof_int) FLaC__SIZE64="int" ; FLaC__USIZE64="unsigned int";;
127         $ac_cv_sizeof_long) FLaC__SIZE64="long" ; FLaC__USIZE64="unsigned long";;
128         $ac_cv_sizeof_long_long) FLaC__SIZE64="long long" ; FLaC__USIZE64="unsigned long long";;
129 esac
130
131 if test -z "$FLaC__SIZE16"; then
132         AC_MSG_ERROR(No 16 bit type found on this platform!)
133 fi
134 if test -z "$FLaC__USIZE16"; then
135         AC_MSG_ERROR(No unsigned 16 bit type found on this platform!)
136 fi
137 if test -z "$FLaC__SIZE32"; then
138         AC_MSG_ERROR(No 32 bit type found on this platform!)
139 fi
140 if test -z "$FLaC__USIZE32"; then
141         AC_MSG_ERROR(No unsigned 32 bit type found on this platform!)
142 fi
143 if test -z "$FLaC__SIZE64"; then
144         AC_MSG_WARN(No 64 bit type found on this platform!)
145 fi
146 if test -z "$FLaC__USIZE64"; then
147         AC_MSG_ERROR(No unsigned 64 bit type found on this platform!)
148 fi
149
150 AC_SUBST(FLaC__SIZE16)
151 AC_SUBST(FLaC__USIZE16)
152 AC_SUBST(FLaC__SIZE32)
153 AC_SUBST(FLaC__USIZE32)
154 AC_SUBST(FLaC__SIZE64)
155 AC_SUBST(FLaC__USIZE64)
156
157 SAVE_CFLAGS="$CFLAGS"
158 CFLAGS='-I$(top_builddir) -I$(srcdir)/include -I $(top_srcdir)/include -Wall -W'
159 if test x$debug = xtrue; then
160         CFLAGS="$CFLAGS -g -O0 -DDEBUG"
161 else
162         CFLAGS="$CFLAGS -O3 -DNDEBUG"
163         if test x$GCC = xyes; then
164                 CFLAGS="$CFLAGS -fomit-frame-pointer -funroll-loops -finline-functions -Winline -DFLaC__INLINE=__inline__"
165         fi
166 fi
167 CFLAGS="$CFLAGS $SAVE_CFLAGS"
168
169 AC_OUTPUT(      Makefile        \
170         src/Makefile    \
171         src/libFLAC/Makefile    \
172         src/libFLAC/ia32/Makefile       \
173         src/libFLAC/include/Makefile    \
174         src/libFLAC/include/private/Makefile    \
175         src/libFLAC/include/protected/Makefile  \
176         src/flac/Makefile       \
177         src/metaflac/Makefile   \
178         src/plugin_xmms/Makefile        \
179         src/test_streams/Makefile       \
180         src/test_unit/Makefile  \
181         include/Makefile \
182         include/FLAC/Makefile \
183         include/FLAC/ordinals.h \
184         doc/Makefile \
185         doc/images/Makefile \
186         doc/ru/Makefile \
187         man/Makefile \
188         test/Makefile   \
189 )