Use wildcards for platform detection to avoid being unnecessarily compiler/architecture specific. Fixes bug 2377772.

git-svn-id: https://gambatte.svn.sourceforge.net/svnroot/gambatte@211 9dfb2916-2d38-0410-aef4-c5fe6c9ffc24
This commit is contained in:
sinamas 2009-01-04 17:01:34 +00:00
parent 7531fcb6bb
commit ec10d41982

View File

@ -109,7 +109,7 @@ else:unix {
-lXrandr #\
# -lXxf86vm \
# -lXinerama
linux-g++ {
linux-* {
SOURCES += framework/addaudioengines_linux.cpp \
framework/audioengines/alsaengine.cpp \
framework/SDL_Joystick/src/linux/SDL_sysjoystick.c
@ -118,14 +118,14 @@ else:unix {
}
else {
SOURCES += framework/addaudioengines_unix.cpp
freebsd-g++|netbsd-g++|openbsd-g++ {
freebsd-*|netbsd-*|openbsd-* {
exists( /usr/include/usb.h ):DEFINES += HAVE_USB_H
exists( /usr/include/usbhid.h ):DEFINES += HAVE_USBHID_H
exists( /usr/include/libusb.h ):DEFINES += HAVE_LIBUSB_H
exists( /usr/include/libusbhid.h ):DEFINES += HAVE_LIBUSBHID_H
SOURCES += framework/SDL_Joystick/src/bsd/SDL_sysjoystick.c
}
else:darwin-g++:SOURCES += framework/SDL_Joystick/src/darwin/SDL_sysjoystick.c
else:darwin-*:SOURCES += framework/SDL_Joystick/src/darwin/SDL_sysjoystick.c
else:SOURCES += framework/SDL_Joystick/src/dummy/SDL_sysjoystick.c
}
}