[SCM] WebKit Debian packaging branch, debian/experimental, updated. upstream/1.3.3-9427-gc2be6fc

commit-queue at webkit.org commit-queue at webkit.org
Wed Dec 22 11:37:25 UTC 2010


The following commit has been merged in the debian/experimental branch:
commit f089f4c1bf0e68465a9cf6bd4ed8b497e3186974
Author: commit-queue at webkit.org <commit-queue at webkit.org@268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date:   Sat Jul 31 06:27:55 2010 +0000

    2010-07-30  Patrick Gansterer  <paroga at paroga.com>
    
            Reviewed by Nikolas Zimmermann.
    
            [CMake] Add FindGperf.cmake
            https://bugs.webkit.org/show_bug.cgi?id=39163
    
            Add a clean gperf dedection since we need it for building.
    
            * CMakeLists.txt:
            * cmake/FindGperf.cmake: Added.
    
    git-svn-id: http://svn.webkit.org/repository/webkit/trunk@64410 268f45cc-cd09-0410-ab3c-d52691b4dbfc

diff --git a/ChangeLog b/ChangeLog
index 55d27a1..a0d18c9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+2010-07-30  Patrick Gansterer  <paroga at paroga.com>
+
+        Reviewed by Nikolas Zimmermann.
+
+        [CMake] Add FindGperf.cmake
+        https://bugs.webkit.org/show_bug.cgi?id=39163
+
+        Add a clean gperf dedection since we need it for building.
+
+        * CMakeLists.txt:
+        * cmake/FindGperf.cmake: Added.
+
 2010-07-30  Rafael Antognolli  <antognolli at profusion.mobi>
 
         Reviewed by Antonio Gomes.
diff --git a/cmake/FindGperf.cmake b/cmake/FindGperf.cmake
new file mode 100644
index 0000000..0e53912
--- /dev/null
+++ b/cmake/FindGperf.cmake
@@ -0,0 +1,19 @@
+# - Find gperf
+# This module looks for gperf. This module defines the 
+# following values:
+#  GPERF_EXECUTABLE: the full path to the gperf tool.
+#  GPERF_FOUND: True if gperf has been found.
+
+INCLUDE(FindCygwin)
+
+FIND_PROGRAM(GPERF_EXECUTABLE
+    gperf
+    ${CYGWIN_INSTALL_PATH}/bin
+)
+
+# handle the QUIETLY and REQUIRED arguments and set GPERF_FOUND to TRUE if 
+# all listed variables are TRUE
+INCLUDE(FindPackageHandleStandardArgs)
+FIND_PACKAGE_HANDLE_STANDARD_ARGS(Gperf DEFAULT_MSG GPERF_EXECUTABLE)
+
+MARK_AS_ADVANCED(GPERF_EXECUTABLE)

-- 
WebKit Debian packaging



More information about the Pkg-webkit-commits mailing list