let the user only specify the PortAudio version and do the "ugly details" in the part below, just as we do it for most other libs

svn path=/trunk/; revision=19195
This commit is contained in:
Ulf Lamping 2006-09-11 22:43:00 +00:00
parent 32bc691d97
commit 1d1f904321
1 changed files with 7 additions and 4 deletions

View File

@ -209,11 +209,10 @@ LUA_DIR=$(WIRESHARK_LIBS)\lua5.1
#
PORTAUDIO_DIR=$(WIRESHARK_LIBS)\portaudio_v18_1
# If the PORTAUDIO library is used this line must be uncommented if v18
# is used. V18 uses API version 1 and v19 API version 2
# Version number of PortAudio
#
PORTAUDIO_API_CONFIG=^#define PORTAUDIO_API_1 1
PORTAUDIO_VERSION=18
#PORTAUDIO_VERSION=19
#
# Mandatory for GTK >= 2: Iconv
@ -568,6 +567,10 @@ LUA_CONFIG=
!IFDEF PORTAUDIO_DIR
# Nmake uses carets to escape special characters
PORTAUDIO_CONFIG=^#define HAVE_LIBPORTAUDIO 1
!IF "$(PORTAUDIO_VERSION)" == "18"
# V18 uses API version 1 and v19 API version 2
PORTAUDIO_API_CONFIG=^#define PORTAUDIO_API_1 1
!ENDIF
!else
PORTAUDIO_CONFIG=
!ENDIF