Ethereal-dev: Re: [Ethereal-dev] [Patch] Win32 and ethereal-tap-register.obj

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

From: Guy Harris <gharris@xxxxxxxxx>
Date: Wed, 6 Nov 2002 21:33:09 -0800
On Thu, Nov 07, 2002 at 03:14:13AM +0000, Jason House wrote:
> Just tried compiling the latest ethereal from the CVS...
> Seems like gtk/Makefile.nmake did not include all the required tap
> stuff...
> This fixed my problems...

Well, fixed the build problem, anyway.

Unfortunately, ETHEREAL_TAP_SRC was a list of *object* file names, so

	@$(SH) ../make-tapreg-dotc ethereal-tap-register.c . $(ETHEREAL_TAP_SRC)

probably wouldn't produce a *correct* "ethereal-tap-register.c" - it
might produce an empty one, which would compile, but that's it.

I've checked in your change, plus a change to make ETHEREAL_TAP_SRC be
a list of the .c files and ETHEREAL_TAP_OBJECTS be the corresponding
list of .obj files.