summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.nmake4
-rw-r--r--configure.ac4
2 files changed, 4 insertions, 4 deletions
diff --git a/config.nmake b/config.nmake
index 8b33ebe416..41fad68a34 100644
--- a/config.nmake
+++ b/config.nmake
@@ -239,8 +239,8 @@ PATH=$(PYTHON_DIR);$(PATH)
PCAP_NG_DEFAULT=^#define PCAP_NG_DEFAULT 1
##### To Use packet editor uncomment this line ####
-### Warning Experimental - work in progress
-#WANT_PACKET_EDITOR=^#define WANT_PACKET_EDITOR 1
+### Experimental - work in progress
+WANT_PACKET_EDITOR=^#define WANT_PACKET_EDITOR 1
!if "$(WIRESHARK_TARGET_PLATFORM)" == "win32"
##### Win32 Libraries #####
diff --git a/configure.ac b/configure.ac
index facbac4c0b..2e542b2f41 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1248,8 +1248,8 @@ AC_ARG_ENABLE(wireshark,
AC_ARG_ENABLE(packet-editor,
AC_HELP_STRING( [--enable-packet-editor],
- [add support for packet editor in Wireshark @<:@default=no@:>@]),
- enable_packet_editor=$enableval,enable_packet_editor=no)
+ [add support for packet editor in Wireshark @<:@default=yes@:>@]),
+ enable_packet_editor=$enableval,enable_packet_editor=yes)
if test x$enable_packet_editor = xyes; then
AC_DEFINE(WANT_PACKET_EDITOR, 1, [Support for packet editor])
fi