diff options
Diffstat (limited to 'net/gnomemeeting/files/patch-soundhandling')
-rw-r--r-- | net/gnomemeeting/files/patch-soundhandling | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net/gnomemeeting/files/patch-soundhandling b/net/gnomemeeting/files/patch-soundhandling new file mode 100644 index 000000000000..ca30a8b9d74d --- /dev/null +++ b/net/gnomemeeting/files/patch-soundhandling @@ -0,0 +1,41 @@ +*** src/sound_handling.cpp.orig Thu Aug 28 07:18:16 2003 +--- src/sound_handling.cpp Thu Aug 28 07:20:23 2003 +*************** +*** 46,55 **** + #include "dialog.h" + + +! #ifdef __FreeBSD__ +! #include <sys/types.h> +! #include <signal.h> +! #endif + + #ifdef HAS_IXJ + #include <ixjlid.h> +--- 46,55 ---- + #include "dialog.h" + + +! //#ifdef __FreeBSD__ +! //#include <sys/types.h> +! //#include <signal.h> +! //#endif + + #ifdef HAS_IXJ + #include <ixjlid.h> +*************** +*** 59,64 **** +--- 59,71 ---- + #include <linux/soundcard.h> + #endif + ++ #ifdef __FreeBSD__ ++ #if (__FreeBSD__ >= 5) ++ #include <sys/soundcard.h> ++ #else ++ #include <machine/soundcard.h> ++ #endif ++ #endif + + + static void dialog_response_cb (GtkWidget *, gint, gpointer); |