aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorPeter Wu <peter@lekensteyn.nl>2018-05-04 11:01:16 +0200
committerAnders Broman <a.broman58@gmail.com>2018-05-04 10:16:39 +0000
commit8815ac76db2e10f5ac0dd7d2f2dd434e2796acce (patch)
tree1434ffce6dac962bcd9eaaa962658100183c69a8 /ui
parent7f7f8326af715767a5ea4a4439132ffdf06881dc (diff)
CMake: fix build by not unnecessarily linking with wsutil
When built with -DCMAKE_BUILD_WITH_INSTALL_RPATH=1, make-taps and make-dissectors fail to run because they cannot locate libwsutil.so.0. Since v2.9.0rc0-178-gbb81bef535 ("glib: Get rid of GLIB_CHECK_VERSION as we now require 2.32.0") wsutil is definitely no longer needed. Change-Id: Ida269fdb5f2cba979e3776f57c1a6bf3d546fe5d Reviewed-on: https://code.wireshark.org/review/27329 Petri-Dish: Peter Wu <peter@lekensteyn.nl> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui')
-rw-r--r--ui/CMakeLists.txt3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/CMakeLists.txt b/ui/CMakeLists.txt
index effbead495..f258d62f04 100644
--- a/ui/CMakeLists.txt
+++ b/ui/CMakeLists.txt
@@ -82,8 +82,7 @@ set_target_properties(ui PROPERTIES
)
add_executable(make-taps make-taps.c)
-# wsutil is only required for glib-compat.c
-target_link_libraries(make-taps ${GLIB2_LIBRARIES} wsutil)
+target_link_libraries(make-taps ${GLIB2_LIBRARIES})
if (HTML_HELP_COMPILER)
add_definitions(-DHHC_DIR)