aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAlexander Neundorf <neundorf@kde.org>2010-09-26 16:18:18 +0000
committerAlexander Neundorf <neundorf@kde.org>2010-09-26 16:18:18 +0000
commitc69e3eeb9268b98f10ba056db93894607ed4baa4 (patch)
treebca740201306c094df78c9f9c250fcd37e31b941 /modules
parent0dce2cd2eb81be663d5f97d4d0bc11b4e4abc42d (diff)
downloadextra-cmake-modules-c69e3eeb9268b98f10ba056db93894607ed4baa4.tar.gz
extra-cmake-modules-c69e3eeb9268b98f10ba056db93894607ed4baa4.tar.bz2
-consisten lowercasing
Alex svn path=/trunk/KDE/kdelibs/; revision=1179954
Diffstat (limited to 'modules')
-rw-r--r--modules/FindPulseAudio.cmake8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/FindPulseAudio.cmake b/modules/FindPulseAudio.cmake
index dbb1f6b5..1446a763 100644
--- a/modules/FindPulseAudio.cmake
+++ b/modules/FindPulseAudio.cmake
@@ -6,7 +6,7 @@
# PULSEAUDIO_INCLUDE_DIR - the PulseAudio include directory
# PULSEAUDIO_LIBRARY - the libraries needed to use PulseAudio
# PULSEAUDIO_MAINLOOP_LIBRARY - the libraries needed to use PulsAudio Mailoop
-#
+
# Copyright (c) 2008, Matthias Kretz, <kretz@kde.org>
# Copyright (c) 2009, Marcus Hufgard, <Marcus.Hufgard@hufgard.de>
#
@@ -28,19 +28,19 @@ if (NOT WIN32)
pkg_check_modules(PC_PULSEAUDIO_MAINLOOP QUIET libpulse-mainloop-glib)
endif (NOT WIN32)
-FIND_PATH(PULSEAUDIO_INCLUDE_DIR pulse/pulseaudio.h
+find_path(PULSEAUDIO_INCLUDE_DIR pulse/pulseaudio.h
HINTS
${PC_PULSEAUDIO_INCLUDEDIR}
${PC_PULSEAUDIO_INCLUDE_DIRS}
)
-FIND_LIBRARY(PULSEAUDIO_LIBRARY NAMES pulse libpulse
+find_library(PULSEAUDIO_LIBRARY NAMES pulse libpulse
HINTS
${PC_PULSEAUDIO_LIBDIR}
${PC_PULSEAUDIO_LIBRARY_DIRS}
)
-FIND_LIBRARY(PULSEAUDIO_MAINLOOP_LIBRARY NAMES pulse-mainloop pulse-mainloop-glib libpulse-mainloop-glib
+find_library(PULSEAUDIO_MAINLOOP_LIBRARY NAMES pulse-mainloop pulse-mainloop-glib libpulse-mainloop-glib
HINTS
${PC_PULSEAUDIO_LIBDIR}
${PC_PULSEAUDIO_LIBRARY_DIRS}