Patches from Frank Singleton :

- update idl2eth man page , now that "unions" are implemented ;
- support for idl2eth man page installation.

svn path=/trunk/; revision=3885
This commit is contained in:
Olivier Abad 2001-08-30 19:25:39 +00:00
parent 5715a48382
commit e76642f9c7
3 changed files with 19 additions and 6 deletions

View File

@ -1,7 +1,7 @@
# Makefile.am
# Automake file for Ethereal
#
# $Id: Makefile.am,v 1.362 2001/08/18 04:27:08 guy Exp $
# $Id: Makefile.am,v 1.363 2001/08/30 19:25:37 oabad Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@ -61,7 +61,7 @@ ACLOCAL_AMFLAGS = `./aclocal-flags`
# the "man{section}_MANS" variables.
#
bin_PROGRAMS = @ethereal_bin@ @editcap_bin@ @mergecap_bin@ @tethereal_bin@ @dftest_bin@ @randpkt_bin@ @text2pcap_bin@
man1_MANS = @ethereal_man@ @editcap_man@ @mergecap_man@ @tethereal_man@ @text2pcap_man@
man1_MANS = @ethereal_man@ @editcap_man@ @mergecap_man@ @tethereal_man@ @text2pcap_man@ @idl2eth_man@
man_MANS =
EXTRA_PROGRAMS = ethereal ethereal_static tethereal tethereal_static editcap mergecap dftest text2pcap

View File

@ -1,4 +1,4 @@
# $Id: configure.in,v 1.137 2001/07/27 07:10:09 guy Exp $
# $Id: configure.in,v 1.138 2001/08/30 19:25:37 oabad 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
@ -315,6 +315,21 @@ fi
AC_SUBST(text2pcap_bin)
AC_SUBST(text2pcap_man)
# Enable/disable idl2eth
AC_ARG_ENABLE(idl2eth,
[ --enable-idl2eth build idl2eth. [default=yes]],,enable_idl2eth=yes)
if test "x$enable_idl2eth" = "xyes" ; then
idl2eth_bin="idl2eth"
idl2eth_man="idl2eth.1"
else
idl2eth_bin=""
idl2eth_man=""
fi
AC_SUBST(idl2eth_bin)
AC_SUBST(idl2eth_man)
# Enable/disable dftest
@ -681,6 +696,7 @@ echo " Build tethereal : $enable_tethereal"
echo " Build editcap : $enable_editcap"
echo " Build mergecap : $enable_mergecap"
echo " Build text2pcap : $enable_text2pcap"
echo " Build idl2eth : $enable_idl2eth"
echo " Build randpkt : $enable_randpkt"
echo " Build dftest : $enable_dftest"
echo ""

View File

@ -85,9 +85,6 @@ Some of the more important things to do are:
=over 4
=item *
Implement Code generation for Corba IDL B<unions>.
=item *
Improve Explicit dissection code.