2001-06-08 04:13:21 +04:00
|
|
|
# FLAC - Free Lossless Audio Codec
|
2002-01-26 21:05:12 +03:00
|
|
|
# Copyright (C) 2001,2002 Josh Coalson
|
2001-06-08 04:13:21 +04:00
|
|
|
#
|
|
|
|
# This program is part of FLAC; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# as published by the Free Software Foundation; either version 2
|
|
|
|
# of the License, or (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program; if not, write to the Free Software
|
|
|
|
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
2001-05-25 04:07:51 +04:00
|
|
|
# NOTE that for many of the AM_CONDITIONALs we use the prefix FLaC__
|
2001-05-24 00:59:48 +04:00
|
|
|
# instead of FLAC__ since autoconf triggers off 'AC_' in strings
|
|
|
|
|
2001-01-20 01:39:39 +03:00
|
|
|
AC_INIT(src/flac/main.c)
|
2002-07-03 02:23:55 +04:00
|
|
|
AM_INIT_AUTOMAKE(flac, 1.0.3)
|
2001-01-20 01:39:39 +03:00
|
|
|
|
|
|
|
# We need two libtools, one that builds both shared and static, and
|
|
|
|
# one that builds only static. This is because the resulting libtool
|
|
|
|
# does not allow us to choose which to build at runtime.
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
sed -e 's/^build_old_libs=yes/build_old_libs=no/' libtool > libtool-disable-static
|
|
|
|
chmod +x libtool-disable-static
|
|
|
|
|
2002-06-07 09:27:37 +04:00
|
|
|
AC_PROG_CXX
|
2001-01-20 01:39:39 +03:00
|
|
|
AC_PROG_MAKE_SET
|
|
|
|
|
2002-05-17 10:08:13 +04:00
|
|
|
dnl check for getopt in standard library
|
|
|
|
dnl AC_CHECK_FUNCS(getopt_long , , [LIBOBJS="$LIBOBJS getopt.o getopt1.o"] )
|
|
|
|
AC_CHECK_FUNCS(getopt_long, [], [])
|
|
|
|
|
2001-05-24 02:08:27 +04:00
|
|
|
AC_CANONICAL_HOST
|
2002-05-17 10:08:13 +04:00
|
|
|
case "$host_cpu" in
|
2001-05-25 04:07:51 +04:00
|
|
|
i*86) cpu_ia32=true ; AC_DEFINE(FLAC__CPU_IA32) ;;
|
|
|
|
powerpc) cpu_ppc=true ; AC_DEFINE(FLAC__CPU_PPC) ;;
|
|
|
|
sparc) cpu_sparc=true ; AC_DEFINE(FLAC__CPU_SPARC) ;;
|
2001-05-24 00:59:48 +04:00
|
|
|
esac
|
|
|
|
AM_CONDITIONAL(FLaC__CPU_IA32, test x$cpu_ia32 = xtrue)
|
|
|
|
AM_CONDITIONAL(FLaC__CPU_PPC, test x$cpu_ppc = xtrue)
|
|
|
|
AM_CONDITIONAL(FLaC__CPU_SPARC, test x$cpu_sparc = xtrue)
|
2001-06-19 03:07:19 +04:00
|
|
|
case "$host" in
|
2001-08-14 01:58:49 +04:00
|
|
|
i[[3-6]]86-*-openbsd*) OBJ_FORMAT=aoutb ;;
|
2001-06-19 03:07:19 +04:00
|
|
|
*) OBJ_FORMAT=elf ;;
|
|
|
|
esac
|
|
|
|
AC_SUBST(OBJ_FORMAT)
|
2001-05-24 00:59:48 +04:00
|
|
|
|
2001-05-25 04:07:51 +04:00
|
|
|
if test x$cpu_ia32 = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__ALIGN_MALLOC_DATA)
|
|
|
|
fi
|
2001-05-24 00:59:48 +04:00
|
|
|
|
|
|
|
AC_ARG_ENABLE(asm-optimizations, [ --disable-asm-optimizations Don't use any assembly optimization routines], asm_opt=no, asm_opt=yes)
|
|
|
|
AM_CONDITIONAL(FLaC__NO_ASM, test x$asm_opt = xno)
|
2001-05-25 04:07:51 +04:00
|
|
|
if test x$asm_opt = xno ; then
|
|
|
|
AC_DEFINE(FLAC__NO_ASM)
|
|
|
|
fi
|
2001-05-24 00:59:48 +04:00
|
|
|
|
2001-01-20 01:39:39 +03:00
|
|
|
AC_ARG_ENABLE(debug,
|
2001-06-19 03:07:19 +04:00
|
|
|
[ --enable-debug Turn on debugging],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) debug=true ;;
|
|
|
|
no) debug=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-debug) ;;
|
|
|
|
esac],[debug=false])
|
2001-01-20 01:39:39 +03:00
|
|
|
AM_CONDITIONAL(DEBUG, test x$debug = xtrue)
|
|
|
|
|
2001-12-04 09:46:35 +03:00
|
|
|
AC_ARG_ENABLE(sse,
|
|
|
|
[ --enable-sse Enable SSE support by asserting that the OS supports SSE instructions],
|
2001-07-18 04:27:06 +04:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) sse_os=true ;;
|
|
|
|
no) sse_os=false ;;
|
2001-12-04 09:46:35 +03:00
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-sse) ;;
|
2001-07-18 04:27:06 +04:00
|
|
|
esac],[sse_os=false])
|
|
|
|
AM_CONDITIONAL(FLaC__SSE_OS, test x$sse_os = xtrue)
|
|
|
|
if test x$sse_os = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__SSE_OS)
|
|
|
|
fi
|
|
|
|
|
2001-12-04 09:46:35 +03:00
|
|
|
AC_ARG_ENABLE(3dnow,
|
|
|
|
[ --enable-3dnow Enable 3DNOW! support],
|
2001-11-14 02:08:22 +03:00
|
|
|
[case "${enableval}" in
|
|
|
|
yes) use_3dnow=true ;;
|
|
|
|
no) use_3dnow=false ;;
|
2001-12-04 09:46:35 +03:00
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-3dnow) ;;
|
2001-11-14 02:08:22 +03:00
|
|
|
esac],[use_3dnow=false])
|
|
|
|
AM_CONDITIONAL(FLaC__USE_3DNOW, test x$use_3dnow = xtrue)
|
|
|
|
if test x$use_3dnow = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__USE_3DNOW)
|
|
|
|
fi
|
|
|
|
|
2002-08-30 09:39:36 +04:00
|
|
|
AC_ARG_ENABLE(exhaustive-tests,
|
|
|
|
[ --enable-exhaustive-tests Enable exhaustive testing ("make check" will take a LONG time!)],
|
|
|
|
[case "${enableval}" in
|
|
|
|
yes) exhaustive_tests=true ;;
|
|
|
|
no) exhaustive_tests=false ;;
|
|
|
|
*) AC_MSG_ERROR(bad value ${enableval} for --enable-exhaustive-tests) ;;
|
|
|
|
esac],[exhaustive_tests=false])
|
|
|
|
AM_CONDITIONAL(FLaC__EXHAUSTIVE_TESTS, test x$exhaustive_tests = xtrue)
|
|
|
|
if test x$exhaustive_tests = xtrue ; then
|
|
|
|
AC_DEFINE(FLAC__EXHAUSTIVE_TESTS)
|
|
|
|
fi
|
|
|
|
|
2002-09-05 09:40:58 +04:00
|
|
|
XIPH_PATH_OGG(have_ogg=yes, AC_MSG_WARN([*** Ogg development enviroment not installed - Ogg support will not be built]))
|
2001-11-11 06:59:46 +03:00
|
|
|
AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
|
|
|
|
if test x$have_ogg = xyes ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_OGG)
|
|
|
|
fi
|
2001-10-31 21:31:36 +03:00
|
|
|
|
2001-01-20 01:39:39 +03:00
|
|
|
AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
|
2001-05-24 00:59:48 +04:00
|
|
|
AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)
|
|
|
|
|
2002-05-17 10:08:13 +04:00
|
|
|
SHARE_LIBS='$(top_builddir)/src/share/libutf8.a $(top_builddir)/src/share/libgetopt.a'
|
|
|
|
|
2002-07-16 20:12:27 +04:00
|
|
|
dnl check for i18n(internationalization); these are from libiconv/gettext
|
2002-08-27 09:51:19 +04:00
|
|
|
AM_GNU_GETTEXT
|
2002-07-11 10:15:30 +04:00
|
|
|
AM_ICONV
|
|
|
|
AM_LANGINFO_CODESET
|
|
|
|
|
2002-07-16 20:12:27 +04:00
|
|
|
dnl check id3lib libraries
|
2002-07-11 10:15:30 +04:00
|
|
|
LIBS_save_blah_blah_blah=$LIBS
|
|
|
|
LIBS=""
|
|
|
|
AC_SEARCH_LIBS(ID3Tag_Link,"id3" "id3 -lstdc++" "id3 -lz" "id3 -lz -lstdc++",
|
|
|
|
[have_id3lib=yes],
|
2002-09-06 10:07:40 +04:00
|
|
|
[AC_MSG_WARN([id3lib not found - ID3v2 will not be supported, internal functions support only id3v1])])
|
2002-07-11 10:15:30 +04:00
|
|
|
AM_CONDITIONAL(FLaC__HAS_ID3LIB, [test x$have_id3lib = xyes])
|
|
|
|
if test x$have_id3lib = xyes ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_ID3LIB)
|
|
|
|
ID3LIBS=$LIBS
|
|
|
|
fi
|
|
|
|
AC_SUBST(ID3LIBS)
|
|
|
|
|
|
|
|
dnl expected version for cross compiling
|
|
|
|
ID3LIB_MAJOR=3
|
|
|
|
ID3LIB_MINOR=8
|
|
|
|
ID3LIB_PATCH=0
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(for id3lib version)
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <id3.h>
|
|
|
|
#include <stdio.h>
|
2002-08-27 09:51:19 +04:00
|
|
|
int
|
2002-07-11 10:15:30 +04:00
|
|
|
main ()
|
|
|
|
{
|
2002-08-27 09:51:19 +04:00
|
|
|
FILE *output;
|
|
|
|
output=fopen("conftest.id3","w");
|
|
|
|
fprintf(output,"ID3LIB_MAJOR=%d\nID3LIB_MINOR=%d\nID3LIB_PATCH=%d\n",ID3LIB_MAJOR_VERSION,ID3LIB_MINOR_VERSION,ID3LIB_PATCH_VERSION);
|
|
|
|
fclose(output);
|
|
|
|
exit(0);
|
2002-07-11 10:15:30 +04:00
|
|
|
}
|
|
|
|
], . conftest.id3; echo "${ID3LIB_MAJOR}.${ID3LIB_MINOR}.${ID3LIB_PATCH}", AC_MSG_WARN(could not determine id3lib version),[echo $ac_n "cross compiling; assuming ${ID3LIB_MAJOR}.${ID3LIB_MINOR}.${ID3LIB_PATCH} $ac_c"])
|
|
|
|
AC_DEFINE_UNQUOTED(ID3LIB_MAJOR, $ID3LIB_MAJOR)
|
|
|
|
AC_DEFINE_UNQUOTED(ID3LIB_MINOR, $ID3LIB_MINOR)
|
|
|
|
AC_DEFINE_UNQUOTED(ID3LIB_PATCH, $ID3LIB_PATCH)
|
|
|
|
|
|
|
|
LIBS=$LIBS_save_blah_blah_blah
|
|
|
|
|
2001-05-24 00:59:48 +04:00
|
|
|
AC_CHECK_PROGS(NASM, nasm)
|
|
|
|
AM_CONDITIONAL(FLaC__HAS_NASM, test -n "$NASM")
|
2001-05-25 04:07:51 +04:00
|
|
|
if test -n "$NASM" ; then
|
|
|
|
AC_DEFINE(FLAC__HAS_NASM)
|
|
|
|
fi
|
2001-01-20 01:39:39 +03:00
|
|
|
|
2001-06-29 06:54:59 +04:00
|
|
|
dnl Check for type sizes
|
|
|
|
|
|
|
|
AC_CHECK_SIZEOF(short)
|
|
|
|
AC_CHECK_SIZEOF(int)
|
|
|
|
AC_CHECK_SIZEOF(long)
|
|
|
|
AC_CHECK_SIZEOF(long long)
|
|
|
|
|
|
|
|
case 2 in
|
|
|
|
$ac_cv_sizeof_short) FLaC__SIZE16="short" ; FLaC__USIZE16="unsigned short";;
|
|
|
|
$ac_cv_sizeof_int) FLaC__SIZE16="int" ; FLaC__USIZE16="unsigned int";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case 4 in
|
|
|
|
$ac_cv_sizeof_short) FLaC__SIZE32="short" ; FLaC__USIZE32="unsigned short";;
|
|
|
|
$ac_cv_sizeof_int) FLaC__SIZE32="int" ; FLaC__USIZE32="unsigned int";;
|
|
|
|
$ac_cv_sizeof_long) FLaC__SIZE32="long" ; FLaC__USIZE32="unsigned long";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
case 8 in
|
|
|
|
$ac_cv_sizeof_int) FLaC__SIZE64="int" ; FLaC__USIZE64="unsigned int";;
|
|
|
|
$ac_cv_sizeof_long) FLaC__SIZE64="long" ; FLaC__USIZE64="unsigned long";;
|
|
|
|
$ac_cv_sizeof_long_long) FLaC__SIZE64="long long" ; FLaC__USIZE64="unsigned long long";;
|
|
|
|
esac
|
|
|
|
|
|
|
|
if test -z "$FLaC__SIZE16"; then
|
|
|
|
AC_MSG_ERROR(No 16 bit type found on this platform!)
|
|
|
|
fi
|
|
|
|
if test -z "$FLaC__USIZE16"; then
|
|
|
|
AC_MSG_ERROR(No unsigned 16 bit type found on this platform!)
|
|
|
|
fi
|
|
|
|
if test -z "$FLaC__SIZE32"; then
|
|
|
|
AC_MSG_ERROR(No 32 bit type found on this platform!)
|
|
|
|
fi
|
|
|
|
if test -z "$FLaC__USIZE32"; then
|
|
|
|
AC_MSG_ERROR(No unsigned 32 bit type found on this platform!)
|
|
|
|
fi
|
|
|
|
if test -z "$FLaC__SIZE64"; then
|
|
|
|
AC_MSG_WARN(No 64 bit type found on this platform!)
|
|
|
|
fi
|
|
|
|
if test -z "$FLaC__USIZE64"; then
|
|
|
|
AC_MSG_ERROR(No unsigned 64 bit type found on this platform!)
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_SUBST(FLaC__SIZE16)
|
|
|
|
AC_SUBST(FLaC__USIZE16)
|
|
|
|
AC_SUBST(FLaC__SIZE32)
|
|
|
|
AC_SUBST(FLaC__USIZE32)
|
|
|
|
AC_SUBST(FLaC__SIZE64)
|
|
|
|
AC_SUBST(FLaC__USIZE64)
|
|
|
|
|
2002-05-17 10:08:13 +04:00
|
|
|
AC_SUBST(SHARE_LIBS)
|
|
|
|
|
2002-06-07 09:27:37 +04:00
|
|
|
OUR_CFLAGS_HEAD='-I$(top_builddir) -I$(srcdir)/include -I$(top_srcdir)/include'
|
2001-01-20 01:39:39 +03:00
|
|
|
if test x$debug = xtrue; then
|
2002-06-07 09:27:37 +04:00
|
|
|
OUR_CFLAGS_TAIL="-g -O0 -DDEBUG"
|
2001-01-20 01:39:39 +03:00
|
|
|
else
|
2002-06-07 09:27:37 +04:00
|
|
|
OUR_CFLAGS_TAIL="-O3 -DNDEBUG"
|
2001-06-19 03:07:19 +04:00
|
|
|
if test x$GCC = xyes; then
|
2002-06-07 09:27:37 +04:00
|
|
|
OUR_CFLAGS_TAIL="$OUR_CFLAGS_TAIL -fomit-frame-pointer -funroll-loops -finline-functions -Wall -W -Winline -DFLaC__INLINE=__inline__"
|
2001-06-19 03:07:19 +04:00
|
|
|
fi
|
2001-01-20 01:39:39 +03:00
|
|
|
fi
|
2002-06-07 09:27:37 +04:00
|
|
|
CFLAGS="$OUR_CFLAGS_HEAD $CFLAGS $OUR_CFLAGS_TAIL"
|
|
|
|
CXXFLAGS="$OUR_CFLAGS_HEAD $CXXFLAGS $OUR_CFLAGS_TAIL"
|
2001-01-20 01:39:39 +03:00
|
|
|
|
2002-09-06 10:07:40 +04:00
|
|
|
AC_OUTPUT( po/Makefile.in m4/Makefile intl/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
Makefile \
|
|
|
|
src/Makefile \
|
|
|
|
src/libFLAC/Makefile \
|
|
|
|
src/libFLAC/ia32/Makefile \
|
|
|
|
src/libFLAC/include/Makefile \
|
|
|
|
src/libFLAC/include/private/Makefile \
|
|
|
|
src/libFLAC/include/protected/Makefile \
|
|
|
|
src/libFLAC++/Makefile \
|
2002-08-07 21:38:08 +04:00
|
|
|
src/libOggFLAC/Makefile \
|
|
|
|
src/libOggFLAC/include/Makefile \
|
|
|
|
src/libOggFLAC/include/protected/Makefile \
|
|
|
|
src/libOggFLAC++/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/flac/Makefile \
|
|
|
|
src/metaflac/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
src/monkeys_audio_utilities/flac_mac/Makefile \
|
|
|
|
src/monkeys_audio_utilities/flac_ren/Makefile \
|
|
|
|
src/monkeys_audio_utilities/Makefile \
|
|
|
|
src/plugin_common/Makefile \
|
|
|
|
src/plugin_winamp2/Makefile \
|
|
|
|
src/plugin_winamp3/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/plugin_xmms/Makefile \
|
|
|
|
src/share/Makefile \
|
|
|
|
src/test_libFLAC/Makefile \
|
|
|
|
src/test_libFLAC++/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
src/test_libOggFLAC/Makefile \
|
|
|
|
src/test_libOggFLAC++/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
src/test_streams/Makefile \
|
2001-06-19 03:07:19 +04:00
|
|
|
include/Makefile \
|
|
|
|
include/FLAC/Makefile \
|
2001-06-29 06:54:59 +04:00
|
|
|
include/FLAC/ordinals.h \
|
2002-05-17 10:08:13 +04:00
|
|
|
include/FLAC++/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
include/OggFLAC/Makefile \
|
|
|
|
include/OggFLAC++/Makefile \
|
2002-05-17 10:08:13 +04:00
|
|
|
include/share/Makefile \
|
2001-07-22 11:27:45 +04:00
|
|
|
doc/Makefile \
|
2002-07-16 20:12:27 +04:00
|
|
|
doc/html/Makefile \
|
|
|
|
doc/html/images/Makefile \
|
|
|
|
doc/html/ru/Makefile \
|
2001-07-22 11:27:45 +04:00
|
|
|
man/Makefile \
|
2002-07-24 10:13:33 +04:00
|
|
|
test/Makefile \
|
2002-08-23 10:45:23 +04:00
|
|
|
build/Makefile \
|
|
|
|
obj/bin/Makefile \
|
|
|
|
obj/lib/Makefile \
|
|
|
|
obj/Makefile \
|
|
|
|
flac.pbproj/Makefile \
|
2001-06-19 03:07:19 +04:00
|
|
|
)
|