diff options
author | roger <roger@FreeBSD.org> | 2003-08-28 20:38:22 +0000 |
---|---|---|
committer | roger <roger@FreeBSD.org> | 2003-08-28 20:38:22 +0000 |
commit | 5000404490f9f440088ba039cecd42b35e5d484b (patch) | |
tree | f05e732b8500605087c6dc5c7acd37c041c492c8 /net/gnomemeeting | |
parent | 1b4e5292e5f64a29e997c39146485da08f61ab73 (diff) | |
download | FreeBSD-ports-5000404490f9f440088ba039cecd42b35e5d484b.zip FreeBSD-ports-5000404490f9f440088ba039cecd42b35e5d484b.tar.gz |
Add patch to make the port compile.
Diffstat (limited to 'net/gnomemeeting')
-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 0000000..ca30a8b --- /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); |