Move to version 0.8.7.

I'm going to go ahead and install the plugins in a "0.8.7" directory, and
continue incrementing the micro number until the minor version changes to 9.
Then for all of 0.9.x, the plugin directory will be "0.9" until the ABI
changes again. This should cause less confusion, even if it means the
plugins don't change between 0.8.6 and 0.8.7.

svn path=/trunk/; revision=1834
This commit is contained in:
Gilbert Ramirez 2000-04-12 21:02:51 +00:00
parent 5ae55b0c8f
commit 390eeb541e
3 changed files with 30 additions and 8 deletions

22
NEWS
View File

@ -1,3 +1,25 @@
Overview of changes in Ethereal 0.8.7:
* Small memleak in "Find Frame" plugged (Guy)
* Correct behavior for stopping frame search (Guy)
* RPM spec file fix (Patrick Higgins <phiggins@transzap.com>)
* Disable "Update list of packets in real time" and
"Automatic scrolling in live capture" for Win32 (Gilbert)
* Avoid using zero-length arrays in packet-rsvp.c (Guy)
* Add wtap_read() func to wtap.c (Richard, Guy)
* Update to SMB Browse (Richard)
* Rlogin dissector (Jeff Foster)
* Re-arrange dissector_add() calls and make some dissectors static
for dissectors under TCP and UDP (Guy)
* Remove unused value_string in packet-llc.c (Guy)
* Add DOCSIS BPDU (Johannes Hennecke <Johannes.Hennecke@elsa.de>)
* Separate variables for "File|Open" and "File|Save [As]" (Guy)
* BGP confederations support (Greg Hankins)
* Correct display of FT_BOOLEANs inside bitfields (Gilbert)
* Catch loops in DNS names. Avoids zlip DNS DoS exploit (Guy)
* Compile tethereal and editcap for Win32 (Gilbert)
* Support CIFS-over-TCP w/o NBSS (Mark Muhlestein)
* .cvsignore updates (Ben Fowler)
Overview of changes in Ethereal 0.8.6:
* L2TP spelling fix (Florian)
* RADIUS update (Florian)

View File

@ -1,4 +1,4 @@
# $Id: configure.in,v 1.88 2000/04/07 03:18:08 gram Exp $
# $Id: configure.in,v 1.89 2000/04/12 21:02:49 gram Exp $
dnl
dnl Process this file with autoconf 2.13 or later to produce a
dnl configure script; 2.12 doesn't generate a "configure" script that
@ -13,7 +13,7 @@ AC_INIT(etypes.h)
AC_PREREQ(2.13)
AM_INIT_AUTOMAKE(ethereal, 0.8.6)
AM_INIT_AUTOMAKE(ethereal, 0.8.7)
AM_CONDITIONAL(SETUID_INSTALL, test x$enable_setuid_install = xyes)
@ -365,7 +365,7 @@ AC_ARG_WITH(plugindir,
*) PLUGIN_DIR="$withval"
esac
],
: ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.5}
: ${PLUGIN_DIR=$libdir/ethereal/plugins/0.8.7}
)
PLUGIN_DIR=`(

View File

@ -1,7 +1,7 @@
/* plugins.c
* plugin routines
*
* $Id: plugins.c,v 1.13 2000/04/05 11:45:50 gram Exp $
* $Id: plugins.c,v 1.14 2000/04/12 21:02:51 gram Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@ -67,11 +67,11 @@ plugin *plugin_list;
guint32 enabled_plugins_number;
#ifdef WIN32
static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.5";
static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.5";
static gchar std_plug_dir[] = "c:/program files/ethereal/plugins/0.8.7";
static gchar local_plug_dir[] = "c:/ethereal/plugins/0.8.7";
#else
static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.5";
static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.5";
static gchar std_plug_dir[] = "/usr/lib/ethereal/plugins/0.8.7";
static gchar local_plug_dir[] = "/usr/local/lib/ethereal/plugins/0.8.7";
#endif
static gchar *user_plug_dir = NULL;
static gchar *plugin_status_file = NULL;