aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2017-11-01 20:22:32 +0000
committerJoão Valverde <j@v6e.pt>2017-11-19 20:16:50 +0000
commit262a84c384353b2a88a6e81cdc499ab94a8316c2 (patch)
tree759ed52d7d81ce9e5ef21e338d235f94f53d77b0 /doc
parent61bd626d5d10a7cd0e2dac667bbb262452fe906f (diff)
Fix (and chop) static build option
This sets the scope of the static build option to Wireshark support libraries only. Before the patch: Static plugins don't work with CMake and autotools. autotools static build is broken, and most likely will always be, as building Wireshark all-static is difficult and time-consuming. After the patch: For CMake Wireshark will be built with static or shared libraries and dynamic plugins. Everything just works. CMake apparently doesn't want you building static and shared libraries at the same time. For autotools Wireshark will be built with shared libraries by default. --disable-shared and --enable-static options work as usual. Dlopened plugins are not built if --disable-shared is given to configure (to disable shared libraries). This is a limitations imposed by libtool. Tested on Linux. This removes broken support for building plugins statically. Change-Id: Ib8e8176976f136eea93a2ce8f9857b6cf9bec64c Reviewed-on: https://code.wireshark.org/review/24241 Petri-Dish: João Valverde <j@v6e.pt> Tested-by: Petri Dish Buildbot Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'doc')
-rw-r--r--doc/README.stats_tree6
1 files changed, 0 insertions, 6 deletions
diff --git a/doc/README.stats_tree b/doc/README.stats_tree
index f42f262b64..811dd754ed 100644
--- a/doc/README.stats_tree
+++ b/doc/README.stats_tree
@@ -52,11 +52,7 @@ A small example of a very basic stats_tree plugin follows.
#include "config.h"
-#ifndef ENABLE_STATIC
#include <gmodule.h>
-#else
-#include <glib.h>
-#endif
#include <epan/stats_tree.h>
#include <epan/dissectors/udp.h>
@@ -94,7 +90,6 @@ extern int udp_term_stats_tree_packet(stats_tree *st, /* st as it was passed to
return 1;
}
-#ifndef ENABLE_STATIC
WS_DLL_PUBLIC_DEF const gchar version[] = "0.0";
WS_DLL_PUBLIC_DEF void plugin_register_tap_listener(void) {
@@ -108,7 +103,6 @@ WS_DLL_PUBLIC_DEF void plugin_register_tap_listener(void) {
NULL ); /* the cleanup callback (in this case there isn't) */
}
-#endif
----- END ------