Beginnings of enabling static builds. Still to do:
[obnox/wireshark/wip.git] / CMakeLists.txt
index 58cf1b05402f9df47e3fc311c67ae2523b8fe80e..8e5848f59eb291f475672712939e73a38a8e3f32 100644 (file)
 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 #
 
-project(wireshark C)
+project(Wireshark C)
 
 cmake_minimum_required(VERSION 2.6)
 
 #Where to find local cmake scripts
 set(CMAKE_MODULE_PATH ${CMAKE_SOURCE_DIR}/cmake/modules)
 INCLUDE(UseLemon)
+INCLUDE(UseMakeDissectorReg)
+INCLUDE(UseMakeTapReg)
 
 # Under linux the release mode (CMAKE_BUILD_TYPE=release) defines NDEBUG
 
 # Disable this later. Alternative: "make VERBOSE=1"
 set(CMAKE_VERBOSE_MAKEFILE ON)
 
-set(BUILD_SHARED_LIBS ON)
-
 #Defines CMAKE_INSTALL_BINDIR, CMAKE_INSTALL_DATADIR, etc ...
 include(CMakeInstallDirs)
 
 include_directories(
        ${CMAKE_BINARY_DIR}
-
        ${CMAKE_SOURCE_DIR}
        ${CMAKE_SOURCE_DIR}/epan
        ${CMAKE_SOURCE_DIR}/tools/lemon
@@ -50,7 +49,7 @@ include_directories(
 
 #Where to put libraries
 if(NOT LIBRARY_OUTPUT_PATH)
-       set(LIBRARY_OUTPUT_PATH ${wireshark_BINARY_DIR}/lib CACHE INTERNAL
+       set(LIBRARY_OUTPUT_PATH ${Wireshark_BINARY_DIR}/lib CACHE INTERNAL
                   "Single output directory for building all libraries.")
 endif()
 
@@ -64,20 +63,22 @@ option(BUILD_editcap     "Build editcap" ON)
 option(BUILD_capinfos    "Build capinfos" ON)
 option(BUILD_randpkt     "Build randpkt" ON)
 option(BUILD_dftest      "Build dftest" ON)
+option(AUTOGEN_dcerpc    "Autogenerate dcerpc dissectors" OFF)
+option(AUTOGEN_pidl      "Autogenerate pidl dissectors" OFF)
 
 option(DISABLE_WERROR   "Do not treat Warnings as errors" OFF)
-option(ENABLE_EXTRA_GCC_CHECKS "Do additional -W checks in GCC (disables -Werror)" ON)
+option(ENABLE_EXTRA_GCC_CHECKS "Do additional -W checks in GCC (disables -Werror)" OFF)
 option(ENABLE_AIRPCAP   "Enable Airpcap support" ON)
-# todo
-option(ENABLE_STATIC     "Build a static version of Wireshark" OFF)
+option(ENABLE_STATIC     "Build a static version of Wireshark (not yet working)" OFF)
 option(ENABLE_PLUGINS    "Build with plugins" ON)
+# todo
+option(ENABLE_GUIDES     "Build Guides (not yet implemented)" OFF)
 
 option(ENABLE_ADNS       "Build with adns support" ON)
 option(ENABLE_PCRE       "Build with pcre support" ON)
 option(ENABLE_PORTAUDIO  "Build with portaudio support" ON)
 option(ENABLE_Z          "Build with zlib compression support" ON)
-# todo wslua currently seems to be broken
-option(ENABLE_LUA       "Build with lua dissector support" OFF)
+option(ENABLE_LUA       "Build with lua dissector support" ON)
 option(ENABLE_PYTHON    "Build with python dissector support" ON)
 option(ENABLE_SMI       "Build with smi snmp support" ON)
 option(ENABLE_GNUTLS    "Build with GNU TLS support" ON)
@@ -90,10 +91,7 @@ option(ENABLE_KERBEROS        "Build with Kerberos support" ON)
 
 
 set(WIRESHARK_C_FLAGS
-       # todo Workaround for problem described below
-       -doesntexist
        -O2
-       -Werror
        -Wall
        -W
        -Wextra
@@ -126,6 +124,8 @@ set(WIRESHARK_EXTRA_C_FLAGS
        -Wpragmas
        -Wredundant-decls
        -Wvla
+       -Wc++-compat
+       -Wjump-misses-init
        # packet-ncp2222.inc prevents this from going into all warnings
        -Wwrite-strings
        -Wstrict-prototypes
@@ -136,7 +136,7 @@ set(WIRESHARK_EXTRA_C_FLAGS
        -Wshorten-64-to-32
 )
 
-if(ENABLE_EXTRA_GCC_CHECKS)
+if(ENABLE_EXTRA_GCC_CHECKS)   # This overrides -Werror
        set(WIRESHARK_C_FLAGS ${WIRESHARK_C_FLAGS} ${WIRESHARK_EXTRA_C_FLAGS})
 endif()
 
@@ -146,22 +146,25 @@ add_definitions(
        -DNEW_PACKET_LIST
 )
 
-# todo
-# This doesn't actually work because of some cache magic in
-# CHECK_C_SOURCE_COMPILES
+# Counterhack to work around some cache magic in CHECK_C_SOURCE_COMPILES
 include(CheckCCompilerFlag)
-foreach(WS_C_FLAG ${WIRESHARK_C_FLAGS})
-       message(STATUS "Flag pre: ${WS_C_FLAG}")
-       check_c_compiler_flag(${WS_C_FLAG} WS_C_FLAG_VALID)
-       if (${WS_C_FLAG_VALID})
-               add_definitions(${WS_C_FLAG})
+set(C 0)
+# Sigh: Have to use THIS_FLAG instead of ${F} for some reason
+foreach(THIS_FLAG ${WIRESHARK_C_FLAGS})
+       set(F WS_C_FLAG_${C})
+       set(${F} ${THIS_FLAG})
+       set(V WS_C_FLAG_VALID${C})
+       check_c_compiler_flag(${${F}} ${V})
+       if (${${V}})
+               add_definitions(${${F}})
        endif()
-       message(STATUS "Flag post ${WS_C_FLAG}: ${WS_C_FLAG_VALID}")
-       #set(WS_C_FLAG_VALID "" CACHE INTERNAL "Dummy" )
+       math(EXPR C "${C} + 1")
 endforeach()
 
-if(DISABLE_WERROR OR ENABLE_EXTRA_GCC_CHECKS)
-       remove_definitions( -Werror )
+if(NOT DISABLE_WERROR AND NOT ENABLE_EXTRA_GCC_CHECKS)
+       check_c_compiler_flag(-Werror WERROR)
+else()
+       set(WERROR 0)
 endif()
 
 if(CMAKE_COMPILER_IS_GNUCC)
@@ -170,9 +173,20 @@ else()
        add_definitions( -D_U_=\"\" )
 endif()
 
-# todo 
+# todo
 # Same for linker flags, but it looks like it's do-it-yourself here
 # AC_WIRESHARK_GCC_LDFLAGS_CHECK([-Wl,--as-needed])
+# AC_WIRESHARK_GCC_LDFLAGS_CHECK([-flto])
+# AC_WIRESHARK_GCC_LDFLAGS_CHECK([-fwhopr])
+# AC_WIRESHARK_GCC_LDFLAGS_CHECK([-fwhole-program])
+
+if(ENABLE_STATIC)
+  set(LINK_MODE_LIB STATIC)
+  set(LINK_MODE_MODULE STATIC)
+else()
+  set(LINK_MODE_LIB SHARED)
+  set(LINK_MODE_MODULE MODULE)
+endif()
 
 #The minimum package list
 set(PACKAGELIST GLIB2 PCAP M LEX YACC Perl SH PythonInterp HtmlViewer ${PACKAGELIST})
@@ -258,9 +272,11 @@ foreach(PACKAGE ${PACKAGELIST})
        endif()
 endforeach()
 
+find_package(YAPP)
+
 if(HAVE_LIBPYTHON)
        set(HAVE_PYTHON 1)
-       set(PYTHON_DIR "${CMAKE_INSTALL_PREFIX}/lib/wireshark/python/${VERSION}")
+       set(PYTHON_DIR "${CMAKE_INSTALL_PREFIX}/lib/wireshark/python/${CPACK_PACKAGE_VERSION}")
 endif()
 if(HAVE_LIBLUA)
        set(HAVE_LUA_H 1)
@@ -285,6 +301,12 @@ if(ENABLE_AIRPCAP)
        set(HAVE_AIRPCAP 1)
 endif()
 
+include(ConfigureChecks.cmake)
+
+#Big or little endian ?
+include(TestBigEndian)
+test_big_endian(WORDS_BIGENDIAN)
+
 #packaging
 set(CPACK_PACKAGE_NAME wireshark)
 set(CPACK_PACKAGE_DESCRIPTION_SUMMARY "capture packet")
@@ -293,7 +315,7 @@ set(CPACK_PACKAGE_DESCRIPTION_FILE "${CMAKE_CURRENT_SOURCE_DIR}/README")
 set(CPACK_RESOURCE_FILE_LICENSE "${CMAKE_CURRENT_SOURCE_DIR}/COPYING")
 set(CPACK_PACKAGE_VERSION_MAJOR "1")
 set(CPACK_PACKAGE_VERSION_MINOR "3")
-set(CPACK_PACKAGE_VERSION_PATCH "0")
+set(CPACK_PACKAGE_VERSION_PATCH "2")
 set(CPACK_PACKAGE_VERSION "${CPACK_PACKAGE_VERSION_MAJOR}.${CPACK_PACKAGE_VERSION_MINOR}.${CPACK_PACKAGE_VERSION_PATCH}")
 
 set(CPACK_SOURCE_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}")
@@ -301,12 +323,6 @@ set(CPACK_PACKAGE_INSTALL_DIRECTORY "/usr")
 set(CPACK_GENERATOR "TGZ")
 set(CPACK_SOURCE_GENERATOR "TGZ")
 
-include(ConfigureChecks.cmake)
-
-#Big or little endian ?
-include(TestBigEndian)
-test_big_endian(WORDS_BIGENDIAN)
-
 set(DATAFILE_DIR "${CMAKE_INSTALL_PREFIX}/share/${CPACK_PACKAGE_NAME}")
 
 if(ENABLE_PLUGINS)
@@ -316,19 +332,26 @@ if(ENABLE_PLUGINS)
                plugins/asn1
                plugins/docsis
                plugins/ethercat
-#              plugins/giop
+               plugins/giop
                plugins/gryphon
                plugins/irda
                plugins/m2m
                plugins/mate
                plugins/opcua
-#              plugins/profinet
-#              plugins/sercosiii
-#              plugins/stats_tree
-#              plugins/unistim
-#              plugins/wimax
-#              plugins/wimaxasncp
+               plugins/profinet
+               plugins/sercosiii
+               plugins/stats_tree
+               plugins/unistim
+               plugins/wimax
+               plugins/wimaxasncp
        )
+# It seems this stuff doesn't build with autofoo either...
+#      if(YAPP_FOUND)
+#              set(PLUGIN_SRC_DIRS
+#                      ${PLUGIN_SRC_DIRS}
+#                      plugins/tpg
+#              )
+#      endif()
 else()
        set(PLUGIN_SRC_DIRS )
 endif()
@@ -337,6 +360,18 @@ foreach(PLUGIN_DIR ${PLUGIN_SRC_DIRS})
        add_subdirectory( ${PLUGIN_DIR} )
 endforeach()
 
+add_subdirectory( codecs )
+add_subdirectory( epan )
+add_subdirectory( gtk )
+add_subdirectory( tools/lemon )
+add_subdirectory( wiretap )
+add_subdirectory( wsutil )
+
+if(ENABLE_GUIDES)
+# todo
+#      add_subdirectory( docbook )
+endif()
+
 #Platform specific
 if(UNIX)
        set(WS_VAR_IMPORT "extern")
@@ -345,6 +380,8 @@ endif()
 if(APPLE)
 #TODO verify that APPLE implies HAVE_OS_X_FRAMEWORKS
        set(HAVE_OS_X_FRAMEWORKS 1)
+       FIND_LIBRARY (APPLE_CORE_SERVICES_LIBRARY CoreServices)
+       FIND_LIBRARY (APPLE_COCOA_LIBRARY Cocoa)
 endif()
 
 if(WIN32)
@@ -357,19 +394,13 @@ if(WIN32)
        endif()
 endif()
 
-
-add_subdirectory( codecs )
-add_subdirectory( epan )
-add_subdirectory( gtk )
-add_subdirectory( wiretap )
-add_subdirectory( wsutil )
-
-if (ENABLE_PLUGINS)
-       add_subdirectory( plugins )
-endif()
-
 configure_file(${CMAKE_SOURCE_DIR}/cmakeconfig.h.in ${CMAKE_BINARY_DIR}/config.h)
 
+include(FeatureSummary)
+#SET_FEATURE_INFO(NAME DESCRIPTION [URL [COMMENT] ]
+PRINT_ENABLED_FEATURES()
+PRINT_DISABLED_FEATURES()
+
 link_directories(
        gtk
        codecs
@@ -379,43 +410,26 @@ link_directories(
 )
 
 ADD_CUSTOM_COMMAND(
-       OUTPUT ${CMAKE_CURRENT_BINARY_DIR}/svnversion.h
-       COMMAND ${PERL} ${CMAKE_CURRENT_SOURCE_DIR}/make-version.pl
-         ${CMAKE_CURRENT_SOURCE_DIR}
-)
-SET_SOURCE_FILES_PROPERTIES(${CMAKE_CURRENT_BINARY_DIR}/svnversion.h GENERATED)
-
-# Create the necessary tools
-set(lemon_FILES
-       tools/lemon/lemon.c
-)
-set(lemon_LIBS
-       # Do we need something here on any platform?
+       OUTPUT svnversion.h
+       COMMAND ${PERL}
+               ${CMAKE_CURRENT_SOURCE_DIR}/make-version.pl
+               ${CMAKE_CURRENT_SOURCE_DIR}
+       DEPENDS
+               ${CMAKE_CURRENT_SOURCE_DIR}/make-version.pl
 )
-add_executable(lemon ${lemon_FILES})
-target_link_libraries(lemon ${lemon_LIBS})
-# but don't install
 
-ADD_CUSTOM_COMMAND(
-       OUTPUT tshark-tap-register.c
-       COMMAND ${SHELL}
-         ${CMAKE_SOURCE_DIR}/make-tapreg-dotc
-         tshark-tap-register.c
-         ${CMAKE_CURRENT_SOURCE_DIR}
-         ${TSHARK_TAP_SRC}
-       DEPENDS
-         ${CMAKE_SOURCE_DIR}/make-tapreg-dotc
-         ${TSHARK_TAP_SRC}
+register_tap_files(tshark-tap-register.c
+       ${TSHARK_TAP_SRC}
 )
 
 ADD_CUSTOM_COMMAND(
        OUTPUT ps.c
        COMMAND ${PYTHON_EXECUTABLE}
-         ${CMAKE_CURRENT_SOURCE_DIR}/rdps.py
+         ${CMAKE_CURRENT_SOURCE_DIR}/tools/rdps.py
          ${CMAKE_CURRENT_SOURCE_DIR}/print.ps
          ps.c
        DEPENDS
-         ${CMAKE_CURRENT_SOURCE_DIR}/rdps.py
+         ${CMAKE_CURRENT_SOURCE_DIR}/tools/rdps.py
          ${CMAKE_CURRENT_SOURCE_DIR}/print.ps
 )
 
@@ -497,49 +511,46 @@ set(INSTALL_DIRS
 )
 
 set(INSTALL_FILES
-#      AUTHORS-SHORT
+       ${CMAKE_BINARY_DIR}/AUTHORS-SHORT
        COPYING
-#      capinfos.html
-#      cfilters
-#      colorfilters
-#      console.lua
-#      dfilters
-#      dtd_gen.lua
-#      dumpcap.html
-#      editcap.html
-#      idl2wrs.html
-#      init.lua
-#      ipmap.html
-#      manuf
-#      mergecap.html
-#      rawshark.html
-#      services
-#      smi_modules
-#      text2pcap.html
-#      tshark.html
-#      wireshark-filter.html
-#      wireshark.html
-#      ws.css
+       ${CMAKE_BINARY_DIR}/capinfos.html
+       cfilters
+       colorfilters
+       dfilters
+       ${CMAKE_BINARY_DIR}/dumpcap.html
+       ${CMAKE_BINARY_DIR}/editcap.html
+       ${CMAKE_BINARY_DIR}/idl2wrs.html
+       ipmap.html
+       manuf
+       ${CMAKE_BINARY_DIR}/mergecap.html
+       ${CMAKE_BINARY_DIR}/rawshark.html
+       services
+       smi_modules
+       ${CMAKE_BINARY_DIR}/text2pcap.html
+       ${CMAKE_BINARY_DIR}/tshark.html
+       ${CMAKE_BINARY_DIR}/wireshark-filter.html
+       ${CMAKE_BINARY_DIR}/wireshark.html
+       docbook/ws.css
 )
 
 set(LIBEPAN_LIBS
-#              $(wireshark_optional_objects)
-               wiretap
-               wsutil
+#              @GETOPT_O@      # wsgetopt.c
+#              @INET_ATON_LO@  # epan/inet_aton.c
+#              @INET_NTOP_LO@  # inet_ntop.c
+#              @INET_PTON_LO@  # inet_pton.c
+#              @NSL_LIBS@      # -lnsl
+#              @SOCKET_LIBS@   # -lsocket
+#              @SSL_LIBS@      # -lcrypto
+#              @STRERROR_O@    # strerror.c
+#              @STRNCASECMP_O@ # strncasecmp.c
+#              @STRPTIME_O@    # strptime.c
                epan
-#              @INET_PTON_LO@
-#              @INET_NTOP_LO@
-#              @SSL_LIBS@
-#              $(plugin_ldadd)
+#              $(plugin_ldadd) # in case of static
                ${PCRE_LIBRARIES}
-               ${GLIB2_LIBRARIES}
                ${PCAP_LIBRARIES}
-#              @SOCKET_LIBS@
-#              @NSL_LIBS@
                ${CARES_LIBRARIES}
                ${ADNS_LIBRARIES}
                ${KERBEROS_LIBRARIES}
-#              @FRAMEWORKS@
                ${LUA_LIBRARIES}
                ${PYTHON_LIBRARIES}
                ${GEOIP_LIBRARIES}
@@ -557,6 +568,8 @@ if(BUILD_wireshark)
                codecs
                ${PORTAUDIO_LIBRARIES}
                ${LIBEPAN_LIBS}
+               ${APPLE_CORE_SERVICES_LIBRARY}
+               ${APPLE_COCOA_LIBRARY}
        )
        set(wireshark_FILES
                airpcap_loader.c
@@ -584,6 +597,7 @@ endif()
 if(BUILD_tshark)
        set(tshark_LIBS
                ${LIBEPAN_LIBS}
+               ${APPLE_COCOA_LIBRARY}
        )
        set(tshark_FILES
                capture_opts.c
@@ -602,6 +616,7 @@ endif()
 if(BUILD_rawshark)
        set(rawshark_LIBS
                ${LIBEPAN_LIBS}
+               ${APPLE_COCOA_LIBRARY}
        )
        set(rawshark_FILES
                ${WIRESHARK_COMMON_SRC}
@@ -628,8 +643,6 @@ endif()
 if(BUILD_randpkt)
        set(randpkt_LIBS
                wiretap
-               wsutil
-               ${GLIB2_LIBRARIES}
                ${M_LIBRARIES}
                ${PCAP_LIBRARIES}
 #              @SOCKET_LIBS@
@@ -649,14 +662,15 @@ endif()
 if(BUILD_text2pcap)
        set(text2pcap_LIBS
                wiretap
-               wsutil
-               ${GLIB2_LIBRARIES}
                ${M_LIBRARIES}
                ${Z_LIBRARIES}
        )
        set(text2pcap_FILES
                text2pcap.c
        )
+       set(text2pcap_CLEAN_FILES
+               ${text2pcap_FILES}
+       )
        add_lex_files(text2pcap_FILES
                text2pcap-scanner.l
        )
@@ -668,8 +682,6 @@ endif()
 if(BUILD_mergecap)
        set(mergecap_LIBS
                wiretap
-               wsutil
-               ${GLIB2_LIBRARIES}
                ${Z_LIBRARIES}
        )
        set(mergecap_FILES
@@ -685,9 +697,8 @@ endif()
 if(BUILD_capinfos)
        set(capinfos_LIBS
                wiretap
-               wsutil
-               ${GLIB2_LIBRARIES}
                ${Z_LIBRARIES}
+               ${APPLE_COCOA_LIBRARY}
        )
        set(capinfos_FILES
                capinfos.c
@@ -701,8 +712,6 @@ endif()
 if(BUILD_editcap)
        set(editcap_LIBS
                wiretap
-               wsutil
-               ${GLIB2_LIBRARIES}
                ${Z_LIBRARIES}
        )
        set(editcap_FILES
@@ -719,18 +728,15 @@ endif()
 if(BUILD_dumpcap)
        set(dumpcap_LIBS
                wiretap
-               wsutil
 #              @INET_NTOP_LO@
-               ${GLIB2_LIBRARIES}
                ${PCAP_LIBRARIES}
                ${CAP_LIBRARIES}
 #              @SOCKET_LIBS@
 #              @NSL_LIBS@
-#              @FRAMEWORKS@
                ${GCRYPT_LIBRARIES}
                ${GNUTLS_LIBRARIES}
                ${Z_LIBRARIES}
-
+               ${APPLE_COCOA_LIBRARY}
        )
        set(dumpcap_FILES
                svnversion.h
@@ -752,6 +758,118 @@ if(BUILD_dumpcap)
        install(TARGETS dumpcap RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR})
 endif()
 
+ADD_CUSTOM_COMMAND(
+       OUTPUT  AUTHORS-SHORT
+       COMMAND ${PERL}
+               ${CMAKE_SOURCE_DIR}/doc/perlnoutf.pl
+               ${CMAKE_SOURCE_DIR}/doc/make-authors-short.pl
+               < ${CMAKE_SOURCE_DIR}/AUTHORS
+               > AUTHORS-SHORT
+       DEPENDS
+               ${CMAKE_SOURCE_DIR}/doc/perlnoutf.pl
+               ${CMAKE_SOURCE_DIR}/doc/make-authors-short.pl
+               ${CMAKE_SOURCE_DIR}/AUTHORS
+)
+
+ADD_CUSTOM_COMMAND(
+       OUTPUT  AUTHORS-SHORT-FORMAT
+               wireshark.pod
+       COMMAND ${PERL}
+               ${CMAKE_SOURCE_DIR}/doc/perlnoutf.pl
+               ${CMAKE_SOURCE_DIR}/doc/make-authors-format.pl
+               < AUTHORS-SHORT
+               > AUTHORS-SHORT-FORMAT
+       COMMAND cat
+               ${CMAKE_SOURCE_DIR}/doc/wireshark.pod.template
+               AUTHORS-SHORT-FORMAT
+               > wireshark.pod
+       DEPENDS
+               ${CMAKE_SOURCE_DIR}/doc/perlnoutf.pl
+               ${CMAKE_SOURCE_DIR}/doc/make-authors-format.pl
+               AUTHORS-SHORT
+               ${CMAKE_SOURCE_DIR}/doc/wireshark.pod.template
+)
+
+ADD_CUSTOM_COMMAND(
+       OUTPUT  wireshark-filter.pod
+       COMMAND tshark
+               -G fields |
+               ${PERL}
+               ${CMAKE_SOURCE_DIR}/doc/dfilter2pod.pl
+               ${CMAKE_SOURCE_DIR}/doc/wireshark-filter.pod.template
+               > wireshark-filter.pod
+       DEPENDS
+               ${CMAKE_SOURCE_DIR}/doc/dfilter2pod.pl
+               ${CMAKE_SOURCE_DIR}/doc/wireshark-filter.pod.template
+               tshark
+)
+
+find_package(POD)
+
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/capinfos 1 )
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/dumpcap 1 )
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/editcap 1 )
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/idl2wrs 1 )
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/mergecap 1 )
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/rawshark 1 )
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/text2pcap 1 )
+pod2manhtml( ${CMAKE_SOURCE_DIR}/doc/tshark 1 )
+pod2manhtml( wireshark 1 )
+pod2manhtml( wireshark-filter 4 )
+
+add_custom_target(
+       auxiliary ALL
+       DEPENDS
+               AUTHORS-SHORT
+               capinfos.html
+               dumpcap.html
+               editcap.html
+               idl2wrs.html
+               mergecap.html
+               rawshark.html
+               text2pcap.html
+               tshark.html
+               wireshark.html
+               wireshark-filter.html
+)
+
+set(MAN1_FILES
+       ${CMAKE_BINARY_DIR}/capinfos.1
+       ${CMAKE_BINARY_DIR}/dumpcap.1
+       ${CMAKE_BINARY_DIR}/editcap.1
+       ${CMAKE_BINARY_DIR}/idl2wrs.1
+       ${CMAKE_BINARY_DIR}/mergecap.1
+       ${CMAKE_BINARY_DIR}/rawshark.1
+       ${CMAKE_BINARY_DIR}/text2pcap.1
+       ${CMAKE_BINARY_DIR}/tshark.1
+       ${CMAKE_BINARY_DIR}/wireshark.1
+)
+
+set(MAN4_FILES
+       ${CMAKE_BINARY_DIR}/wireshark-filter.4
+)
+
+set(CLEAN_FILES
+       ${wireshark_FILES}
+       ${tshark_FILES}
+       ${rawshark_FILES}
+       ${dftest_FILES}
+       ${randpkt_FILES}
+       ${text2pcap_CLEAN_FILES}
+       ${mergecap_FILES}
+       ${capinfos_FILES}
+       ${editcap_FILES}
+       ${dumpcap_FILES}
+)
+
+if (WERROR)
+       set_source_files_properties(
+               ${CLEAN_FILES}
+               PROPERTIES
+               COMPILE_FLAGS -Werror
+       )
+endif()
+
 install(
        FILES
                ${INSTALL_FILES}
@@ -759,11 +877,30 @@ install(
                ${CMAKE_INSTALL_DATADIR}/${CPACK_PACKAGE_NAME}
 )
 
+install(
+       FILES
+               ${MAN1_FILES}
+       DESTINATION
+               ${CMAKE_INSTALL_MANDIR}/man1
+)
+
+install(
+       FILES
+               ${MAN4_FILES}
+       DESTINATION
+               ${CMAKE_INSTALL_MANDIR}/man4
+)
+
 install(
        DIRECTORY
                ${INSTALL_DIRS}
+       DIRECTORY_PERMISSIONS
+               OWNER_EXECUTE OWNER_WRITE OWNER_READ
+               GROUP_EXECUTE GROUP_READ
+               WORLD_EXECUTE WORLD_READ
        DESTINATION
                ${CMAKE_INSTALL_DATADIR}/${CPACK_PACKAGE_NAME}
        PATTERN ".svn" EXCLUDE
        PATTERN "Makefile.*" EXCLUDE
+       PATTERN "faq.py" EXCLUDE
 )