diff options
author | Justin McPherson <justin.mcpherson@nokia.com> | 2010-03-29 06:05:53 (GMT) |
---|---|---|
committer | Justin McPherson <justin.mcpherson@nokia.com> | 2010-03-29 06:05:53 (GMT) |
commit | 0c2f6d17b3eecf88feb3e7720f9654601d75033a (patch) | |
tree | 900f5d93be0fd344c7719409381aa9d60d1ce754 /config.tests/unix | |
parent | 56c18942a13da36d79707ebc814d486dc0dbbc67 (diff) | |
download | Qt-0c2f6d17b3eecf88feb3e7720f9654601d75033a.zip Qt-0c2f6d17b3eecf88feb3e7720f9654601d75033a.tar.gz Qt-0c2f6d17b3eecf88feb3e7720f9654601d75033a.tar.bz2 |
Update PulseAudio config.test.
Originally by Thiago Macieira
Reviewed-by: Justin McPherson
Diffstat (limited to 'config.tests/unix')
-rw-r--r-- | config.tests/unix/pulseaudio/pulseaudio.cpp (renamed from config.tests/unix/pulseaudio/pulseaudiotest.cpp) | 19 | ||||
-rw-r--r-- | config.tests/unix/pulseaudio/pulseaudio.pro | 7 |
2 files changed, 17 insertions, 9 deletions
diff --git a/config.tests/unix/pulseaudio/pulseaudiotest.cpp b/config.tests/unix/pulseaudio/pulseaudio.cpp index eed88da..ba5405b 100644 --- a/config.tests/unix/pulseaudio/pulseaudiotest.cpp +++ b/config.tests/unix/pulseaudio/pulseaudio.cpp @@ -4,7 +4,7 @@ ** All rights reserved. ** Contact: Nokia Corporation (qt-info@nokia.com) ** -** This file is part of the documentation of the Qt Toolkit. +** This file is part of the config.tests of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** No Commercial Usage @@ -40,10 +40,19 @@ ****************************************************************************/ #include <pulse/pulseaudio.h> +#include <pulse/glib-mainloop.h> -int main(int ,char **) +#if !defined(PA_API_VERSION) || PA_API_VERSION-0 != 12 +# error "Incompatible PulseAudio API version" +#endif +#if !PA_CHECK_VERSION(0,9,0) +# error "PulseAudio version too old" +#endif + +int main(int, char **) { - pa_threaded_mainloop *mainloop = pa_threaded_mainloop_new(); - return 0; + const char *headers = pa_get_headers_version(); + const char *library = pa_get_library_version(); + pa_glib_mainloop_new(0); + return (headers - library) * 0; } - diff --git a/config.tests/unix/pulseaudio/pulseaudio.pro b/config.tests/unix/pulseaudio/pulseaudio.pro index 698a35f..d75b16f 100644 --- a/config.tests/unix/pulseaudio/pulseaudio.pro +++ b/config.tests/unix/pulseaudio/pulseaudio.pro @@ -1,4 +1,3 @@ -SOURCES = pulseaudiotest.cpp -LIBS+=-lpulse -CONFIG -= qt dylib -mac:CONFIG -= app_bundle +SOURCES = pulseaudio.cpp +CONFIG -= qt +LIBS += |