aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/voip_calls.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-10 18:03:22 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-09-10 18:03:22 +0000
commit9c48850ee0682cb1f705e9443ac84c879a384ecd (patch)
tree3877ee8d86bf3e15cd83f7ac92a04dd43e46ca8e /gtk/voip_calls.c
parent8f582aae857f17974db6b9c5ed3a6f70dfcb1fcc (diff)
From Alejandro Vaquero:
Need to use HAVE_LIBPORTAUDIO instead of PORTAUDIO_DIR in voip_calls.c And build the windows version with Port audio. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@19187 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'gtk/voip_calls.c')
-rw-r--r--gtk/voip_calls.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/voip_calls.c b/gtk/voip_calls.c
index dad420d88c..650362ec31 100644
--- a/gtk/voip_calls.c
+++ b/gtk/voip_calls.c
@@ -126,7 +126,7 @@ void voip_calls_reset(voip_calls_tapinfo_t *tapinfo)
/* reset the RTP player */
#if GTK_MAJOR_VERSION >= 2
-#ifdef PORTAUDIO_DIR
+#ifdef HAVE_LIBPORTAUDIO
reset_rtp_player();
#endif
#endif
@@ -489,7 +489,7 @@ RTP_packet( void *ptr _U_, packet_info *pinfo, epan_dissect_t *edt _U_, void con
/* add this RTP for future listening using the RTP Player*/
#if GTK_MAJOR_VERSION >= 2
-#ifdef PORTAUDIO_DIR
+#ifdef HAVE_LIBPORTAUDIO
add_rtp_packet(pi, pinfo);
#endif
#endif