summaryrefslogtreecommitdiff
path: root/net/ekiga/files
diff options
context:
space:
mode:
authorRoger Hardiman <roger@FreeBSD.org>2003-08-28 20:38:22 +0000
committerRoger Hardiman <roger@FreeBSD.org>2003-08-28 20:38:22 +0000
commit0afc54a430fb52117c924d3422b766aa3c82f904 (patch)
tree734194a1feee7f2c74b74297f00bbcbc869e95e4 /net/ekiga/files
parentAdd p5-Net-Printer 0.32, perl extension for direct-to-lpd printing. (diff)
Add patch to make the port compile.
Notes
Notes: svn path=/head/; revision=87928
Diffstat (limited to 'net/ekiga/files')
-rw-r--r--net/ekiga/files/patch-soundhandling41
1 files changed, 41 insertions, 0 deletions
diff --git a/net/ekiga/files/patch-soundhandling b/net/ekiga/files/patch-soundhandling
new file mode 100644
index 000000000000..ca30a8b9d74d
--- /dev/null
+++ b/net/ekiga/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);