[xiph-cvs] cvs commit: ao configure.in

Stan Seibert volsung at xiph.org
Fri Aug 17 10:50:29 PDT 2001



volsung     01/08/17 10:50:29

  Modified:    .        Tag: release_0_7_1 configure.in
  Log:
  Minor fixes to the 0.7.0 release to allow libao 0.7 to coexist with later
  versions.  Also made the alsa drive detection not confuse ALSA 0.5 with 0.9.

Revision  Changes    Path
No                   revision

No                   revision

1.21.4.1  +6 -3      ao/configure.in

Index: configure.in
===================================================================
RCS file: /usr/local/cvsroot/ao/configure.in,v
retrieving revision 1.21
retrieving revision 1.21.4.1
diff -u -r1.21 -r1.21.4.1
--- configure.in	2001/06/18 00:07:20	1.21
+++ configure.in	2001/08/17 17:50:28	1.21.4.1
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 AC_INIT(src/audio_out.c)
 
-AM_INIT_AUTOMAKE(libao,0.7.0)
+AM_INIT_AUTOMAKE(libao,0.7.1)
 AM_DISABLE_STATIC
 
 dnl Library versioning
@@ -14,7 +14,10 @@
 
 AC_CANONICAL_HOST
 
-plugindir=$libdir/ao
+dnl Plugin versioning.  We use an integer version number much like LIB_CURRENT.
+PLUGIN_VERSION=0
+
+plugindir=$libdir/ao$PLUGIN_VERSION
 AC_SUBST(plugindir)
 
 dnl ====================================
@@ -140,7 +143,7 @@
 [ BUILD_ALSA="$enableval" ],[ BUILD_ALSA="yes" ])
 
 if test "$BUILD_ALSA" = "yes"; then
-   AC_CHECK_LIB(asound, snd_pcm_open, have_alsa=yes, have_alsa=no)
+   AC_CHECK_LIB(asound, snd_pcm_channel_params, have_alsa=yes, have_alsa=no)
    AM_CONDITIONAL(HAVE_ALSA,test "x$have_alsa" = xyes)
 fi
 

--- >8 ----
List archives:  http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from this list, send a message to 'cvs-request at xiph.org'
containing only the word 'unsubscribe' in the body.  No subject is needed.
Unsubscribe messages sent to the list will be ignored/filtered.



More information about the commits mailing list