mirror of
https://github.com/gnustep/libs-gui.git
synced 2025-05-31 22:40:48 +00:00
* Tools/gsnd/portaudio/pa_unix_oss/pa_unix_oss.c: Fix for FreeBSD
FTBFS (Fixes Bug #12316). Strip DOS LFs. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@20937 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
14d484f4a7
commit
4f6f0405e6
2 changed files with 1392 additions and 1389 deletions
|
@ -1,3 +1,8 @@
|
|||
2005-03-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* Tools/gsnd/portaudio/pa_unix_oss/pa_unix_oss.c: Fix for FreeBSD
|
||||
FTBFS (Fixes Bug #12316). Strip DOS LFs.
|
||||
|
||||
2005-03-21 Adam Fedor <fedor@gnu.org>
|
||||
|
||||
* configure.ac: Check for libgif
|
||||
|
|
|
@ -109,13 +109,11 @@ PaDriverInfo;
|
|||
#include <pthread.h>
|
||||
#include <errno.h>
|
||||
|
||||
#ifdef __linux__
|
||||
#if defined(__linux__)
|
||||
#include <linux/soundcard.h>
|
||||
#else
|
||||
#ifdef __FreeBSD__
|
||||
#elif defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
|
||||
#include <sys/soundcard.h>
|
||||
#else
|
||||
#ifdef __OpenBSD__
|
||||
#elif defined(__OpenBSD__)
|
||||
#include <soundcard.h>
|
||||
#else
|
||||
#include <machine/soundcard.h> /* JH20010905 */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue