Ethereal-users: Re: [Ethereal-users] Win32 build errors

Note: This archive is from the project's previous web site, ethereal.com. This list is no longer active.

From: Guy Harris <guy@xxxxxxxxxx>
Date: Wed, 18 Apr 2001 14:40:55 -0700 (PDT)
> You should download one of the nightly CVS tarballs from
> http://www.ethereal.com/distribution/nightly-builds/
> to get these files. (I'd just send them to you, but the copies I have
> locally are somewhat modified)

Or, if he doesn't want a nightly snapshot, here are the ones from
0.8.17:
EXPORTS
wtap_buf_ptr
wtap_close
wtap_def_seek_read
wtap_dump
wtap_dump_can_open
wtap_dump_can_write_encap
wtap_dump_close
wtap_dump_fdopen
wtap_dump_file
wtap_dump_open
wtap_encap_short_string
wtap_encap_string
wtap_fd
wtap_file
wtap_file_encap
wtap_file_type
wtap_file_type_short_string
wtap_file_type_string
wtap_loop
wtap_open_offline
wtap_pcap_encap_to_wtap_encap
wtap_phdr
wtap_pseudoheader
wtap_read
wtap_seek_read
wtap_sequential_close
wtap_short_string_to_encap
wtap_short_string_to_file_type
wtap_snapshot_length
wtap_strerror
#
# $Id: Makefile.nmake,v 1.1 2001/04/05 04:39:26 gram Exp $
#

include ..\config.nmake

ALL_RC=ethereal.rc tethereal.rc editcap.rc
all : $(ALL_RC)

ethereal.rc	: ethereal.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< ethereal.rc.in > $@

tethereal.rc	: tethereal.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< tethereal.rc.in > $@

editcap.rc	: editcap.rc.in
	sed -e s/@VERSION@/$(VERSION)/ \
		-e s/@RC_VERSION@/$(RC_VERSION)/ \
		< editcap.rc.in > $@

clean :
	rm -f $(ALL_RC)