add --use-3dnow argument
[platform/upstream/flac.git] / configure.in
index 4a5473b..5310a84 100644 (file)
@@ -19,7 +19,7 @@
 # instead of FLAC__ since autoconf triggers off 'AC_' in strings
 
 AC_INIT(src/flac/main.c)
-AM_INIT_AUTOMAKE(flac, 1.0)
+AM_INIT_AUTOMAKE(flac, 1.0.1)
 
 # We need two libtools, one that builds both shared and static, and
 # one that builds only static.  This is because the resulting libtool
@@ -40,7 +40,7 @@ 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)
 case "$host" in
-       i[3-6]86-*-openbsd*) OBJ_FORMAT=aoutb ;;
+       i[[3-6]]86-*-openbsd*) OBJ_FORMAT=aoutb ;;
        *) OBJ_FORMAT=elf ;;
 esac
 AC_SUBST(OBJ_FORMAT)
@@ -76,6 +76,25 @@ if test x$sse_os = xtrue ; then
 AC_DEFINE(FLAC__SSE_OS)
 fi
 
+[  --use-3dnow                 Enable 3DNOW! support],
+[case "${enableval}" in
+       yes) use_3dnow=true ;;
+       no)  use_3dnow=false ;;
+       *) AC_MSG_ERROR(bad value ${enableval} for --use-3dnow) ;;
+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
+
+AC_CHECK_LIB(ogg, ogg_stream_init,
+             [LIBS="$LIBS -logg"; have_ogg=yes],
+             [AC_MSG_WARN([*** Ogg development enviroment not installed - ogg support will not be built])])
+AM_CONDITIONAL(FLaC__HAS_OGG, [test x$have_ogg = xyes])
+if test x$have_ogg = xyes ; then
+AC_DEFINE(FLAC__HAS_OGG)
+fi
+
 AM_PATH_XMMS(0.9.5.1, , AC_MSG_WARN([*** XMMS >= 0.9.5.1 not installed - xmms support will not be built]))
 AM_CONDITIONAL(FLaC__HAS_XMMS, test x$XMMS_INPUT_PLUGIN_DIR != x)