aboutsummaryrefslogtreecommitdiffstats
path: root/gtk
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2006-09-10 18:03:22 +0000
committerAnders Broman <anders.broman@ericsson.com>2006-09-10 18:03:22 +0000
commita1f8b7e0849a66bcd7b1e93a96da58a632248beb (patch)
tree3877ee8d86bf3e15cd83f7ac92a04dd43e46ca8e /gtk
parentd517c305b1524804d76a77f58c0354a16e6fe7eb (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. svn path=/trunk/; revision=19187
Diffstat (limited to 'gtk')
-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