diff options
author | Jörg Mayer <jmayer@loplof.de> | 2009-09-23 19:40:25 +0000 |
---|---|---|
committer | Jörg Mayer <jmayer@loplof.de> | 2009-09-23 19:40:25 +0000 |
commit | 878d7246b85e14f5834ab9b8e7fce8707eb3b307 (patch) | |
tree | f943f68d281ffe44f8b933d257a11ba2312cf657 /cmake | |
parent | d909f9f62cb34c020418d6a5b6a5da4d12e1bedf (diff) | |
download | wireshark-878d7246b85e14f5834ab9b8e7fce8707eb3b307.tar.gz wireshark-878d7246b85e14f5834ab9b8e7fce8707eb3b307.tar.bz2 wireshark-878d7246b85e14f5834ab9b8e7fce8707eb3b307.zip |
- Add $Id: $ tags
- FindHtmlViewer.cmake: Try to add reading the name of the
html viewer from the HTML_VIEWER environment variable (untested)
svn path=/trunk/; revision=30104
Diffstat (limited to 'cmake')
25 files changed, 76 insertions, 1 deletions
diff --git a/cmake/modules/CMakeInstallDirs.cmake b/cmake/modules/CMakeInstallDirs.cmake index 19e2c85ed7..d503662666 100644 --- a/cmake/modules/CMakeInstallDirs.cmake +++ b/cmake/modules/CMakeInstallDirs.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# ################################################################### # # Copyright (c) 2006 Frederic Heem, <frederic.heem@telsey.it> diff --git a/cmake/modules/FindADNS.cmake b/cmake/modules/FindADNS.cmake index c7df80f0eb..9b4fe39399 100644 --- a/cmake/modules/FindADNS.cmake +++ b/cmake/modules/FindADNS.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find adns # Find the native ADNS includes and library # diff --git a/cmake/modules/FindCAP.cmake b/cmake/modules/FindCAP.cmake index 607b2b1633..ec4fdd90fe 100644 --- a/cmake/modules/FindCAP.cmake +++ b/cmake/modules/FindCAP.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find capabilities # Find the native CAP includes and library # diff --git a/cmake/modules/FindCARES.cmake b/cmake/modules/FindCARES.cmake index e821453e07..e4552d7bd0 100644 --- a/cmake/modules/FindCARES.cmake +++ b/cmake/modules/FindCARES.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find cares # Find the native CARES includes and library # diff --git a/cmake/modules/FindGCRYPT.cmake b/cmake/modules/FindGCRYPT.cmake index 5920a83949..2a01cad8cf 100644 --- a/cmake/modules/FindGCRYPT.cmake +++ b/cmake/modules/FindGCRYPT.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find gcrypt # Find the native GCRYPT includes and library # diff --git a/cmake/modules/FindGEOIP.cmake b/cmake/modules/FindGEOIP.cmake index 5a84cf29fe..a7c993db78 100644 --- a/cmake/modules/FindGEOIP.cmake +++ b/cmake/modules/FindGEOIP.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find GeoIP # Find the native GEOIP includes and library # diff --git a/cmake/modules/FindGLIB2.cmake b/cmake/modules/FindGLIB2.cmake index e8069d7483..c00932f22c 100644 --- a/cmake/modules/FindGLIB2.cmake +++ b/cmake/modules/FindGLIB2.cmake @@ -1,4 +1,7 @@ -# - Try to find GLIB2 +# +# $Id$ +# +# Try to find GLIB2 # Once done this will define # # GLIB2_FOUND - system has GLIB2 diff --git a/cmake/modules/FindGNUTLS.cmake b/cmake/modules/FindGNUTLS.cmake index 37558aaf2b..91f105881d 100644 --- a/cmake/modules/FindGNUTLS.cmake +++ b/cmake/modules/FindGNUTLS.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find gnutls # Find the native GNUTLS includes and library # diff --git a/cmake/modules/FindGTK2.cmake b/cmake/modules/FindGTK2.cmake index 97ebfdbf07..83ccdda14e 100644 --- a/cmake/modules/FindGTK2.cmake +++ b/cmake/modules/FindGTK2.cmake @@ -1,4 +1,6 @@ # +# $Id$ +# # try to find GTK2 (and glib) and GTK2GLArea # # GTK2_INCLUDE_DIRS - Directories to include to use GTK2 diff --git a/cmake/modules/FindHtmlViewer.cmake b/cmake/modules/FindHtmlViewer.cmake index 6753dec9ef..40cd03d4b2 100644 --- a/cmake/modules/FindHtmlViewer.cmake +++ b/cmake/modules/FindHtmlViewer.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find an html viewer program # # HTML_VIEWER_EXECUTABLE - the full path to perl @@ -10,6 +13,7 @@ FIND_PROGRAM(HTML_VIEWER_EXECUTABLE xdg-open mozilla htmlview + ENV{HTML_VIEWER} PATHS ${CYGWIN_INSTALL_PATH}/bin /bin diff --git a/cmake/modules/FindKERBEROS.cmake b/cmake/modules/FindKERBEROS.cmake index 4fb8002494..1c255350ff 100644 --- a/cmake/modules/FindKERBEROS.cmake +++ b/cmake/modules/FindKERBEROS.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find kerberos # Find the native KERBEROS includes and library # diff --git a/cmake/modules/FindLEX.cmake b/cmake/modules/FindLEX.cmake index 66da86f824..f84c8967de 100644 --- a/cmake/modules/FindLEX.cmake +++ b/cmake/modules/FindLEX.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find lex executable # diff --git a/cmake/modules/FindLUA.cmake b/cmake/modules/FindLUA.cmake index 55e47a864d..a24f91ac24 100644 --- a/cmake/modules/FindLUA.cmake +++ b/cmake/modules/FindLUA.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # Locate Lua library # This module defines # LUA_FOUND, if false, do not try to link to Lua diff --git a/cmake/modules/FindM.cmake b/cmake/modules/FindM.cmake index 6f4477334f..b2177dcbab 100644 --- a/cmake/modules/FindM.cmake +++ b/cmake/modules/FindM.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find math # Find the native M includes and library # diff --git a/cmake/modules/FindPCAP.cmake b/cmake/modules/FindPCAP.cmake index b082a05f0d..05e92d2796 100644 --- a/cmake/modules/FindPCAP.cmake +++ b/cmake/modules/FindPCAP.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# ################################################################### # # Copyright (c) 2006 Frederic Heem, <frederic.heem@telsey.it> diff --git a/cmake/modules/FindPCRE.cmake b/cmake/modules/FindPCRE.cmake index 120adb421b..125235609e 100644 --- a/cmake/modules/FindPCRE.cmake +++ b/cmake/modules/FindPCRE.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find pcre # Find the native PCRE includes and library # diff --git a/cmake/modules/FindPORTAUDIO.cmake b/cmake/modules/FindPORTAUDIO.cmake index f7f098c65e..29f831185c 100644 --- a/cmake/modules/FindPORTAUDIO.cmake +++ b/cmake/modules/FindPORTAUDIO.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find portaudio # Find the native PORTAUDIO includes and library # diff --git a/cmake/modules/FindPYTHON.cmake b/cmake/modules/FindPYTHON.cmake index 9f12f3c5e5..7930836105 100644 --- a/cmake/modules/FindPYTHON.cmake +++ b/cmake/modules/FindPYTHON.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find python libraries # This module finds if Python is installed and determines where the # include files and libraries are. It also determines what the name of diff --git a/cmake/modules/FindSED.cmake b/cmake/modules/FindSED.cmake index ec95b3fa61..21b21c7cf6 100644 --- a/cmake/modules/FindSED.cmake +++ b/cmake/modules/FindSED.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find unix commands from cygwin # This module looks for some usual Unix commands. # diff --git a/cmake/modules/FindSH.cmake b/cmake/modules/FindSH.cmake index aaa87735f5..394336e20e 100644 --- a/cmake/modules/FindSH.cmake +++ b/cmake/modules/FindSH.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find unix commands from cygwin # This module looks for some usual Unix commands. # diff --git a/cmake/modules/FindSMI.cmake b/cmake/modules/FindSMI.cmake index b9cafcbf46..8850cb65d9 100644 --- a/cmake/modules/FindSMI.cmake +++ b/cmake/modules/FindSMI.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find smi # Find the native SMI includes and library # diff --git a/cmake/modules/FindWSWIN32.cmake b/cmake/modules/FindWSWIN32.cmake index cfa626167d..3b7cabc022 100644 --- a/cmake/modules/FindWSWIN32.cmake +++ b/cmake/modules/FindWSWIN32.cmake @@ -1,3 +1,6 @@ +# +# $Id: $ +# # - Find packages bundled with Windows # diff --git a/cmake/modules/FindYACC.cmake b/cmake/modules/FindYACC.cmake index 0f49be7654..9972136879 100644 --- a/cmake/modules/FindYACC.cmake +++ b/cmake/modules/FindYACC.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find unix commands from cygwin # This module looks for some usual Unix commands. # diff --git a/cmake/modules/FindZ.cmake b/cmake/modules/FindZ.cmake index c7217e905a..cf2a7dd700 100644 --- a/cmake/modules/FindZ.cmake +++ b/cmake/modules/FindZ.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# # - Find zlib # Find the native ZLIB includes and library # diff --git a/cmake/modules/UseLemon.cmake b/cmake/modules/UseLemon.cmake index 77cd700a3f..04608715aa 100644 --- a/cmake/modules/UseLemon.cmake +++ b/cmake/modules/UseLemon.cmake @@ -1,3 +1,6 @@ +# +# $Id$ +# MACRO(ADD_LEMON_FILES _sources ) set(_lemonpardir ${CMAKE_SOURCE_DIR}/tools/lemon) FOREACH (_current_FILE ${ARGN}) |