From d7d45f8072523ecca0c6823bf3f55b7f61134d92 Mon Sep 17 00:00:00 2001 From: Gerald Combs Date: Sun, 10 Apr 2011 17:03:43 +0000 Subject: [PATCH] =?UTF-8?q?1.5.1=20=E2=86=92=201.5.2.=20Reenable=20Babel.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit svn path=/trunk/; revision=36540 --- config.nmake | 2 +- configure.in | 2 +- debian/changelog | 2 +- docbook/release-notes.xml | 2 +- epan/dissectors/Makefile.common | 1 + make-version.pl | 8 ++++---- 6 files changed, 9 insertions(+), 8 deletions(-) diff --git a/config.nmake b/config.nmake index eefe0df742..c7d2981167 100644 --- a/config.nmake +++ b/config.nmake @@ -16,7 +16,7 @@ WIRESHARK_TARGET_PLATFORM=win32 # It's highly recommended to leave MAJOR/MINOR/MICRO unchanged VERSION_MAJOR=1 VERSION_MINOR=5 -VERSION_MICRO=1 +VERSION_MICRO=2 VERSION_BUILD=0 # It's recommended to change VERSION_EXTRA for your own custom builds # e.g. "-SVN-12345" diff --git a/configure.in b/configure.in index f0041af9c3..8db1d08000 100644 --- a/configure.in +++ b/configure.in @@ -2,7 +2,7 @@ # AC_PREREQ(2.60) -AC_INIT(wireshark, 1.5.1) +AC_INIT(wireshark, 1.5.2) dnl Check for CPU / vendor / OS dnl The user is encouraged to use either `AC_CANONICAL_BUILD', or diff --git a/debian/changelog b/debian/changelog index 524d7e6db9..25a36fa197 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -wireshark (1.5.1) unstable; urgency=low +wireshark (1.5.2) unstable; urgency=low * Self-made package diff --git a/docbook/release-notes.xml b/docbook/release-notes.xml index 1eda4f3840..dfd4afd539 100644 --- a/docbook/release-notes.xml +++ b/docbook/release-notes.xml @@ -12,7 +12,7 @@ DOCUMENT SECTION - + ]> diff --git a/epan/dissectors/Makefile.common b/epan/dissectors/Makefile.common index 39f6df6ac2..62a6df6666 100644 --- a/epan/dissectors/Makefile.common +++ b/epan/dissectors/Makefile.common @@ -263,6 +263,7 @@ DISSECTOR_SRC = \ packet-auto_rp.c \ packet-ax4000.c \ packet-ayiya.c \ + packet-babel.c \ packet-bacapp.c \ packet-bacnet.c \ packet-banana.c \ diff --git a/make-version.pl b/make-version.pl index 8807dcf3c6..f59ba21495 100755 --- a/make-version.pl +++ b/make-version.pl @@ -72,12 +72,12 @@ my %version_pref = ( "format" => "SVN %Y%m%d%H%M%S", # Normal development builds - #"pkg_enable" => 1, - #"pkg_format" => "-SVN-%#", + "pkg_enable" => 1, + "pkg_format" => "-SVN-%#", # Development releases - "pkg_enable" => 0, - "pkg_format" => "", + #"pkg_enable" => 0, + #"pkg_format" => "", ); my $srcdir = ".";