Changeset 6643
- Timestamp:
- 06/18/09 15:10:14 (9 months ago)
- Location:
- branches/bugfix-0.9.1
- Files:
-
- 3 modified
-
CHANGES (modified) (1 diff)
-
configure.ac (modified) (1 diff)
-
src/io/oss_io_c.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/bugfix-0.9.1/CHANGES
r6642 r6643 6 6 - Fixed math.h usage in rgb_c.c. 7 7 - Fixed append operator. (#284) 8 - fixed OSS compilation for non-linux systems. 8 9 9 10 0.9.0 (01-03-2009) -
branches/bugfix-0.9.1/configure.ac
r6640 r6643 1135 1135 1136 1136 if test "x$enable_oss" != "xno" ; then 1137 AC_CHECK_HEADERS([ linux/sound.h],[W_OSS="yes"])1137 AC_CHECK_HEADERS([sys/soundcard.h],[W_OSS="yes"]) 1138 1138 fi 1139 1139 -
branches/bugfix-0.9.1/src/io/oss_io_c.c
r3597 r6643 6 6 #include <caml/mlvalues.h> 7 7 8 #include < linux/soundcard.h>8 #include <sys/soundcard.h> 9 9 #include <sys/ioctl.h> 10 10 #include <assert.h>
