ref: 518af042028c91e17c4b29aaf4b55c3c56c9f0e2
parent: 19b4b232666fe3107eb0adef1e4706669cba6bed
author: robs <robs>
date: Wed Aug 19 12:52:26 EDT 2009
fix glob detect
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,7 +5,7 @@
sox-11gamma, followed by a list of prior authors and features.
-sox-14.x.x 2009-xx-xx
+sox-14.0.1 2009-xx-xx
----------
Previously deprecated features that have been removed in this release:
@@ -46,6 +46,9 @@
o Added libSoX example #4: concatenating audio files. (robs)
Other bug fixes:
+
+ o Fix build so that grouped files (e.g. play -r 6k "*.vox" plays all
+ at 6k) works. (robs)
Internal improvements:
--- a/configure.ac
+++ b/configure.ac
@@ -153,10 +153,10 @@
dnl Checks for header files.
AC_HEADER_STDC
-AC_CHECK_HEADERS(fcntl.h unistd.h byteswap.h sys/time.h sys/timeb.h sys/types.h sys/utsname.h termios.h)
+AC_CHECK_HEADERS(fcntl.h unistd.h byteswap.h sys/time.h sys/timeb.h sys/types.h sys/utsname.h termios.h glob.h)
dnl Checks for library functions.
-AC_CHECK_FUNCS(strcasecmp strdup popen vsnprintf gettimeofday glob mkstemp)
+AC_CHECK_FUNCS(strcasecmp strdup popen vsnprintf gettimeofday mkstemp)
dnl Check if math library is needed.
AC_CHECK_FUNC(pow)