fix -I paths
[platform/upstream/flac.git] / configure.in
1 #  FLAC - Free Lossless Audio Codec
2 #  Copyright (C) 2001,2002  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.3)
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_CXX
32 AC_PROG_MAKE_SET
33
34 dnl check for getopt in standard library
35 dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
36 AC_CHECK_FUNCS(getopt_long, [], [])
37
38 AC_CANONICAL_HOST
39 case "$host_cpu" in
40         i*86)   cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
41         powerpc)        cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
42         sparc)  cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
43 esac
44 AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
45 AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
46 AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
47 case "$host" in
48         i[[3-6]]86-*-openbsd*) OBJ_FORMAT=aoutb ;;
49         *) OBJ_FORMAT=elf ;;
50 esac
51 AC_SUBST(OBJ_FORMAT)
52
53 if test x$cpu_ia32 = xtrue ; then
54 AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
55 fi
56
57 AC_ARG_ENABLE(asm-optimizations, [  --disable-asm-optimizations    Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
58 AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
59 if test x$asm_opt = xno ; then
60 AC_DEFINE(FLAC__NO_ASM)
61 fi
62
63 AC_ARG_ENABLE(debug,
64 [  --enable-debug                 Turn on debugging],
65 [case "${enableval}" in
66         yes) debug=true ;;
67         no)  debug=false ;;
68         *) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
69 esac],[debug=false])
70 AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
71
72 AC_ARG_ENABLE(sse,
73 [  --enable-sse                   Enable SSE support by asserting that the OS supports SSE instructions],
74 [case "${enableval}" in
75         yes) sse_os=true ;;
76         no)  sse_os=false ;;
77         *) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
78 esac],[sse_os=false])
79 AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
80 if test x$sse_os = xtrue ; then
81 AC_DEFINE(FLAC__SSE_OS)
82 fi
83
84 AC_ARG_ENABLE(3dnow,
85 [  --enable-3dnow                 Enable 3DNOW! support],
86 [case "${enableval}" in
87         yes) use_3dnow=true ;;
88         no)  use_3dnow=false ;;
89         *) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
90 esac],[use_3dnow=false])
91 AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
92 if test x$use_3dnow = xtrue ; then
93 AC_DEFINE(FLAC__USE_3DNOW)
94 fi
95
96 AM_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
97 AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
98 if test x$have_ogg = xyes ; then
99 AC_DEFINE(FLAC__HAS_OGG)
100 fi
101
102 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
103 AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
104
105 SHARE_LIBS='$(top_builddir)/src/share/libutf8.a $(top_builddir)/src/share/libgetopt.a'
106
107 AC_CHECK_PROGS(NASM, nasm)
108 AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
109 if test -n "$NASM" ; then
110 AC_DEFINE(FLAC__HAS_NASM)
111 fi
112
113 dnl Check for type sizes
114
115 AC_CHECK_SIZEOF(short)
116 AC_CHECK_SIZEOF(int)
117 AC_CHECK_SIZEOF(long)
118 AC_CHECK_SIZEOF(long long)
119
120 case 2 in
121         $ac_cv_sizeof_short) FLaC__SIZE16="short" ; FLaC__USIZE16="unsigned short";;
122         $ac_cv_sizeof_int) FLaC__SIZE16="int" ; FLaC__USIZE16="unsigned int";;
123 esac
124
125 case 4 in
126         $ac_cv_sizeof_short) FLaC__SIZE32="short" ; FLaC__USIZE32="unsigned short";;
127         $ac_cv_sizeof_int) FLaC__SIZE32="int" ; FLaC__USIZE32="unsigned int";;
128         $ac_cv_sizeof_long) FLaC__SIZE32="long" ; FLaC__USIZE32="unsigned long";;
129 esac
130
131 case 8 in
132         $ac_cv_sizeof_int) FLaC__SIZE64="int" ; FLaC__USIZE64="unsigned int";;
133         $ac_cv_sizeof_long) FLaC__SIZE64="long" ; FLaC__USIZE64="unsigned long";;
134         $ac_cv_sizeof_long_long) FLaC__SIZE64="long long" ; FLaC__USIZE64="unsigned long long";;
135 esac
136
137 if test -z "$FLaC__SIZE16"; then
138         AC_MSG_ERROR(No 16 bit type found on this platform!)
139 fi
140 if test -z "$FLaC__USIZE16"; then
141         AC_MSG_ERROR(No unsigned 16 bit type found on this platform!)
142 fi
143 if test -z "$FLaC__SIZE32"; then
144         AC_MSG_ERROR(No 32 bit type found on this platform!)
145 fi
146 if test -z "$FLaC__USIZE32"; then
147         AC_MSG_ERROR(No unsigned 32 bit type found on this platform!)
148 fi
149 if test -z "$FLaC__SIZE64"; then
150         AC_MSG_WARN(No 64 bit type found on this platform!)
151 fi
152 if test -z "$FLaC__USIZE64"; then
153         AC_MSG_ERROR(No unsigned 64 bit type found on this platform!)
154 fi
155
156 AC_SUBST(FLaC__SIZE16)
157 AC_SUBST(FLaC__USIZE16)
158 AC_SUBST(FLaC__SIZE32)
159 AC_SUBST(FLaC__USIZE32)
160 AC_SUBST(FLaC__SIZE64)
161 AC_SUBST(FLaC__USIZE64)
162
163 AC_SUBST(SHARE_LIBS)
164
165 OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
166 if test x$debug = xtrue; then
167         OUR_CFLAGS_TAIL="-g -O0 -DDEBUG"
168 else
169         OUR_CFLAGS_TAIL="-O3 -DNDEBUG"
170         if test x$GCC = xyes; then
171                 OUR_CFLAGS_TAIL="$OUR_CFLAGS_TAIL -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
172         fi
173 fi
174 CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS $OUR_CFLAGS_TAIL"
175 CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS $OUR_CFLAGS_TAIL"
176
177 AC_OUTPUT(      Makefile        \
178         src/Makefile    \
179         src/libFLAC/Makefile    \
180         src/libFLAC/ia32/Makefile       \
181         src/libFLAC/include/Makefile    \
182         src/libFLAC/include/private/Makefile    \
183         src/libFLAC/include/protected/Makefile  \
184         src/libFLAC++/Makefile  \
185         src/flac/Makefile       \
186         src/metaflac/Makefile   \
187         src/plugin_xmms/Makefile        \
188         src/share/Makefile      \
189         src/test_libFLAC/Makefile       \
190         src/test_libFLAC++/Makefile     \
191         src/test_streams/Makefile       \
192         include/Makefile \
193         include/FLAC/Makefile \
194         include/FLAC/ordinals.h \
195         include/FLAC++/Makefile \
196         include/share/Makefile \
197         doc/Makefile \
198         doc/images/Makefile \
199         doc/ru/Makefile \
200         man/Makefile \
201         test/Makefile   \
202 )