From 2a10b31ff00050bb4cece8ab90ec25ed55f59fae Mon Sep 17 00:00:00 2001 From: Henning Heinold Date: Sun, 20 Jul 2008 20:56:57 +0000 Subject: alsa-oss: fix stdioemu.c for uclibc *on none glibc systems libio.h is not there and FILE._fileno is not defined *on uclibc _fileno is _filedes *provide autoconf magic which check for structure *bump PR --- packages/alsa/files/libio.patch | 43 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 packages/alsa/files/libio.patch (limited to 'packages/alsa/files') diff --git a/packages/alsa/files/libio.patch b/packages/alsa/files/libio.patch new file mode 100644 index 0000000000..83345a98d3 --- /dev/null +++ b/packages/alsa/files/libio.patch @@ -0,0 +1,43 @@ +Index: alsa-oss-1.0.15/alsa/stdioemu.c +=================================================================== +--- alsa-oss-1.0.15.orig/alsa/stdioemu.c 2007-10-15 10:50:40.000000000 +0200 ++++ alsa-oss-1.0.15/alsa/stdioemu.c 2008-07-20 22:29:46.767474560 +0200 +@@ -37,7 +37,9 @@ + #endif + + #include ++#ifdef HAVE_LIBIO_H + #include ++#endif + + struct fd_cookie { + int fd; +@@ -99,7 +101,11 @@ + + if (open_mode && fdc->fd > 0) { + result = fopencookie (fdc,"w", fns); ++#ifdef HAVE_FILENO + result->_fileno = fdc->fd; /* ugly patchy slimy kludgy hack */ ++else ++ result->_filedes = fdc->fd; ++#endif + } + return result; + } +Index: alsa-oss-1.0.15/configure.in +=================================================================== +--- alsa-oss-1.0.15.orig/configure.in 2007-10-15 10:50:40.000000000 +0200 ++++ alsa-oss-1.0.15/configure.in 2008-07-20 22:49:45.455837502 +0200 +@@ -33,6 +33,12 @@ + LIBS="$OLD_LIBS" + fi + ++AC_CHECK_HEADERS_ONCE([libio.h]) ++ ++AC_CHECK_MEMBER([struct _IO_FILE._fileno], ++ [AC_DEFINE([HAVE_FILENO], [1],[Define if _fileno exists.])], ++ [],[]) ++ + AC_OUTPUT(Makefile alsa/Makefile alsa/aoss alsa/aoss.old \ + oss-redir/Makefile test/Makefile \ + alsa/testaoss test/testaoss) -- cgit v1.2.3