aboutsummaryrefslogtreecommitdiffstats
path: root/configure.in
AgeCommit message (Collapse)AuthorFilesLines
1999-10-20Automatically generate a function to call the register routines for allGuy Harris1-1/+4
protocols (idea shamelessly stolen from GDB). We require that the register routines 1) be located in "packet.c" or in one of the "packet-XXX.c" files; 2) have a name of the form "proto_register_XXX"; 3) take no argument, and return no value; 4) have their names appear in the source file either at the beginning of the line, or preceded only by "void " at the beginning of the line; and we require that "packet-XXX.c" files be added to "DISSECTOR_SOURCES" in "Makefile.am". svn path=/trunk/; revision=891
1999-10-14Make it build on systems lacking "inet_pton()", "inet_ntop()", and aGuy Harris1-4/+5
definition of "AF_INET6". Declare those functions and, if it's not defined, define "AF_INET6" in "inet_v6defs.h", and arrange to include it if "inet_ntop()" is missing. (Systems will probably have both of them or lack both of them, and we may choose not to use the system's "inet_pton()" because it's buggy, so base the decision on whether to include "inet_v6defs.h" on whether we're using the system's "inet_ntop()" or not.) Fix some macro references in "Makefile.am" and "configure.in". svn path=/trunk/; revision=830
1999-10-14use inet_pton() and inet_ntop(), which are RFC2553 standard functionJun-ichiro itojun Hagino1-3/+43
for converting IPv[46] numeric notation to/from binary form. recent BIND includes those functions so fallback is not necessary on most of the platforms. sorry if it raises any portability problem on other platforms. remove partial inclusion of inet_ntop() in packet-ipv6.c. move ip6_to_str() to packet.c, it fits better there than packet-ipv6.c. svn path=/trunk/; revision=829
1999-10-14implement ipprotostr() in ipproto.c, which basically does ipprotobynumber()Jun-ichiro itojun Hagino1-2/+8
for ip.ip_p and ip6.ip6_nxt (and other IPv6 header chain). use val_to_str() as much as possible in dissect_{ipv6,pim,ripng}(). make --disable-zlib a default for netbsd (temporary workaround). svn path=/trunk/; revision=827
1999-10-11Solaris 7 doesn't have "inet_aton()", either; supply our own version onGuy Harris1-1/+10
OSes that don't have it. (Yes, this is BSD code, not GPLed code. I tried getting it from Glibc, but the glibc version is just the BSD version, so I guess it's OK to mix BSD code in with GPLed code, or, at least, with LGPLed code....) svn path=/trunk/; revision=805
1999-10-01Uwe Girlich's patch to handle OSes (e.g., SINIX) that lackGuy Harris1-1/+19
"strncasecmp()" or "mkstemp()"; add in source to the GNU "libc" versions, and have the "configure" script check for the routines in question and set up the Makefile to build from our versions if they're missing. svn path=/trunk/; revision=745
1999-09-30Added check for <sys/wait.h> #ifdef'ed the SIGSYS block of code, sinceGilbert Ramirez1-1/+2
some platforms (Linux) don't have SIGSYS. Linux's rationalization is that SIGSYS is not a POSIX-defined signal. svn path=/trunk/; revision=743
1999-09-24Changed version to 0.7.5Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=722
1999-09-24Many more packaging changes. Lets compilation with new gtk subdirectoryGilbert Ramirez1-3/+3
work if build tree is different than source tree. Some wiretap files had to be added to the list of deliverables. svn path=/trunk/; revision=717
1999-09-24Moved version to 0.7.4; updated documentation.Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=714
1999-09-22This commit contains support for reading capture files compressed usingAshok Narayanan1-1/+17
gzip. The zLib library is used for this purpose. If zLib is not available (or it's use is disabled by the --disable-zlib option to configure), you can still compile Ethereal but it will be unable to read compressed capture files. IMPORTANT: Now all file accesses to capture files should be done through special macros. Specifically, for any use of the following functions on capture files, replace them. The arguments for the right-side functions are exactly the same as for the original stdio functions. fopen file_open fdopen filed_open fread file_read fwrite file_write fseek file_seek fclose file_close ferror file_error svn path=/trunk/; revision=695
1999-09-01Bert Driehuis' patch to add a "--with-ucdsnmp" option that specifies theGuy Harris1-1/+2
directory in which the UCD SNMP library is found (and to check for the UCD SNMP stuff in "$prefix" if "$prefix" isn't "/usr/local"), and to have "Makefile.am" use "$(MAKE)" rather than "make". svn path=/trunk/; revision=624
1999-08-31Changed gtk subdirectory to use only Makefile.am, and not have a configureGilbert Ramirez1-4/+4
script. The configuration is faster this way. Also, moved version to 0.7.3. svn path=/trunk/; revision=614
1999-08-27Added gtk subdirectory, with patched gtkclist.c in it. We can use thisGilbert Ramirez1-2/+2
optimized gtkclist until Guy's changes appear in the offical GTK+. svn path=/trunk/; revision=593
1999-08-24Changed spec file for producing RPMs to ethereal.spec.in so thatGilbert Ramirez1-2/+2
'configure' can update the version automatically. That way we don't have to update the spec file every time the version of ethereal changes. svn path=/trunk/; revision=563
1999-08-11Fixed packaging problem (the list of deliverables in the doc/ directory).Gilbert Ramirez1-2/+2
Updated NEWS file. Moved version to 0.7.2 for imminent release. svn path=/trunk/; revision=470
1999-08-11Modified the flex scanner to use symbols that start with "dfilter_"Gilbert Ramirez1-1/+3
instead of "yy". (dfilter-grammar.y was modified to #define yylex as dfilter_lex). VERSION is no longer needed since the doc/Makefile now uses @VERSION@, passed to it from 'configure'. svn path=/trunk/; revision=469
1999-08-11Modified autoconf/automake files for doc subdirectory so that all ofGilbert Ramirez1-3/+8
Ethereal can be compiled in a build directory separated from the source directory. svn path=/trunk/; revision=468
1999-08-05Changed version to 0.7.1Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=448
1999-08-03Update version numbers to 0.7.0, and update win32 Makefiles. I made someGilbert Ramirez1-2/+2
initial #ifdef changes to capture.c to support the win32 version of libpcap. svn path=/trunk/; revision=428
1999-07-31chmod() the temporary capture file to 0600 so that only the user canGilbert Ramirez1-2/+3
read the trace. We chmod() after pcap creates the file, but before it actually writes data there. Thanks to Frederic Peters <fpeters@multimania.com>, the Debian maintainer of Ethereal, for pointing this out. svn path=/trunk/; revision=413
1999-07-20Don't depend on Perl being in "/usr/bin/perl"; find it, and generate aGuy Harris1-2/+2
"dfilter2pod" with the path of Perl in its "#!" line. svn path=/trunk/; revision=372
1999-07-13Look for <sys/socket.h>, not <sys/socket>.Guy Harris1-2/+2
svn path=/trunk/; revision=361
1999-07-13Added support for compiling on win32 with Visual C and 'nmake'. It compiles,Gilbert Ramirez1-29/+5
but does not link. Perhaps someone who understands the MS tools can help out. I made it link a few months ago, but with different version of glib/gtk+. I can't remember how I made it link. Most of the compatibility issues were resolved with adding #ifdef HAVE_UNISTD_H the the source code. Please be sure to add this to all future code. svn path=/trunk/; revision=359
1999-07-09Added the ability to create a read-only ethereal, i.e., one thatGilbert Ramirez1-23/+35
doesn't link with libpcap, so no packet captures can be made. The "--disable-pcap" option has been added to the configure script. Docs have been updated. And the string buffer size in the simple_dialog() has been doubled so that Johan's e-mail address in the "About" dialogue window doesn't get chopped off. svn path=/trunk/; revision=351
1999-07-07Created a new protocol tree implementation and a new display filterGilbert Ramirez1-30/+6
mechanism that is built into ethereal. Wiretap is now used to read all file formats. Libpcap is used only for capturing. svn path=/trunk/; revision=342
1999-06-24Added Ashok's Match Selected functionality, and changes to move etherealGilbert Ramirez1-2/+2
to version 0.6.3. svn path=/trunk/; revision=330
1999-06-14Add our own "strerror()", which we use on platforms that don't have itGuy Harris1-1/+10
in the standard libraries (such as SunOS 4.x). svn path=/trunk/; revision=312
1999-05-19Packaging changes for version 0.6.2Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=293
1999-05-12Added Didier Jorand's dissect_snmp routine. This is only compiled inGilbert Ramirez1-1/+23
if you have the UCD or CMU SNMP library available. If you have the SNMP library but do not with to have SNMP support, use the ./configure --disable-snmp option. Otherwise 'configure' finds the SNMP library and uses it. svn path=/trunk/; revision=281
1999-05-01Fixed 0.6.0 packaging problems.Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=252
1999-04-30Docs updated for ethereal-0.6.0Gilbert Ramirez1-2/+2
svn path=/trunk/; revision=248
1999-04-05Get rid of include of <strings.h> from "util.c", as it's not needed, andGuy Harris1-2/+2
change include of <strings.h> in "menu.c" to include <string.h>, the latter being the ANSI standard include file for string functions; that eliminates all use of <strings.h< so get rid of test for its existence in "configure.in" as well. svn path=/trunk/; revision=239
1999-03-28Jun-ichiro's IPv6 patch is merged in with ethereal and now uses the newGilbert Ramirez1-5/+21
proto*() functions. The configure script tries to use ipv6 name resolution if it knows the type of ipv6 stack the user has (this can be avoided with the --disable-ipv6 switch) Additionally, the configure script now deals with wiretap better. If the user doesn't want to compile wiretap, the wiretap is never visited. A few unnecessary #includes were removed from some wiretap files, and a CPP macro was moved from bpf.c to wtap.h. svn path=/trunk/; revision=229
1999-01-10* Added Tony Abbot's fixes for libpcap include directory discovery.Gerald Combs1-6/+8
svn path=/trunk/; revision=167
1998-12-29* Added Joerg Mayer's Vines patchGerald Combs1-2/+2
* Added Joerg to the AUTHORS file * Added Guy's bitfield decode patch * Fixed time output svn path=/trunk/; revision=142
1998-11-18* Don't build wiretap if it isn't configured.Gerald Combs1-3/+8
* Bump the version to 0.5.0 svn path=/trunk/; revision=106
1998-11-18* Add -Wall to CFLAGS if we're running gcc.Gerald Combs1-1/+10
svn path=/trunk/; revision=101
1998-11-17* Added column formatting functionality.Gerald Combs1-2/+2
* Added check_col(), add_col_str() and add_col_fmt() to replace references to ft->win_info. * Added column prefs handling code. svn path=/trunk/; revision=97
1998-11-17Add a "acinclude.m4" file that defines a "AC_ETHEREAL_STRUCT_SA_LEN"Guy Harris1-3/+4
macro (modeled after similar macros provided with "autoconf") to check whether "struct sockaddr" has an "sa_len" member, and defines or undefines "HAVE_SA_LEN" appropriately. Use it instead of "AC_LBL_SOCKADDR_SA_LEN", and use "HAVE_SA_LEN" instead of "HAVE_SOCKADDR_SA_LEN". svn path=/trunk/; revision=96
1998-11-17Un-comment "AC_CONFIG_SUBDIRS()", so that it'll run "configure" in theGuy Harris1-3/+3
"wiretap" subdirectory, and thus leave a "config.status" file around so that one of the "auto{make,configure,header}" guys doesn't complain when rebuilding stuff that it can't open "config.status". (The "automake"-generated Makefile will recurse into "wiretap", and, at least if you're doing builds from a tree freshly checked out from CVS, "XXX" files will probably have been checked out before "XXX.in", so "make" will try to reconstruct the "XXX" files from the "XXX.in" files.) That also obviates the need to make "wiretap/Makefile" here. We can also re-delete "wiretap/Makefile" from CVS - the problem that caused me to bring it back wasn't caused by its absence, it was caused by the above. As "Makefile"s generated by "configure" scripts depend on the particular system on which you ran "configure", there's no One True Makefile so "Makefile" should'n't be under CVS. svn path=/trunk/; revision=95
1998-11-15Back out some changes accidentally commited by the previous checkin - IGuy Harris1-4/+3
forgot that CVS, unlike Perforce, doesn't let you edit the list of files it gives you in the editor and cause those files *not* to be committed, it requires you to specify the files to be committed if you only want some files committed. svn path=/trunk/; revision=92
1998-11-15Add support to wiretap for reading Sun "snoop" capture files.Guy Harris1-3/+4
That requires that, in the packet-reading loop, we pass to the callback routine the offset in the file of a packet's data, because we can no longer compute that offset by subtracting the size of the captured packet data from the offset in the file after the data was read - "snoop" may stick padding in after the packet data to align packet headers on 4-byte boundaries. Doing that required that we arrange that we do that for "libpcap" capture files as well; the cleanest way to do that was to write our own code for reading "libpcap" capture files, rather than using the "libpcap" code to do it. Make "wtap_dispatch_cb()" and "pcap_dispatch_cb()" static to "file.c", as they're not used elsewhere. If we're using wiretap, don't define in "file.h" stuff used only when we're not using wiretap. Update the wiretap README to reflect Gilbert's and my recent changes. Clean up some memory leaks in "wiretap/lanalyzer.c" and "wiretap/ngsniffer.c", where the capture-file-format-specific data wasn't freed if the open failed. svn path=/trunk/; revision=91
1998-11-12A lengthy patch to add the wiretap library. Wiretap is not used by defaultGilbert Ramirez1-2/+25
because it is still in its infancy, but it can be compiled in optionally. The library exists in its own subdirectory ethereal/wiretap. This patch also edits all the packet-*.c files to remove the #include <pcap.h> line which is unnecessary in these files. In the ethereal code, file.c is the most heavily modified with #ifdef WITH_WIRETAP lines for the optional library. svn path=/trunk/; revision=82
1998-10-28* Changes to make things easier on people with misplaced or missing pcapGerald Combs1-2/+19
headers. svn path=/trunk/; revision=76
1998-10-13* Pod page updateGerald Combs1-2/+2
* Minor tweaks to the filter prefs svn path=/trunk/; revision=40
1998-10-12- Added match_strval function to packet.cGerald Combs1-6/+12
- Separated display and capture filters; rearranged some of the look and feel - Lots of other miscellaneous fixes and updates svn path=/trunk/; revision=38
1998-10-10* OSPF alignment fixes (Gerald)Gerald Combs1-3/+4
* FDDI support (Laurent, Guy) svn path=/trunk/; revision=36
1998-09-25* Ethernet manufacturer support (Laurent)Gerald Combs1-6/+16
* PPP fixes (Gerald) * Null/loopback interface support (Gerald) svn path=/trunk/; revision=25
1998-09-20* Refined LD_LIBRARY_PATH checks.Gerald Combs1-6/+17
svn path=/trunk/; revision=18