Ethereal-dev: Re: [Ethereal-dev] AC_ETHEREAL_GNU_SED_CHECK hack in Ethereal 0.9.1

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: Sun, 24 Feb 2002 23:38:25 -0800
On Mon, Feb 25, 2002 at 01:33:51AM -0600, Albert Chin wrote:
> Libtool 1.4.3 will provide a fix to the problem
> AC_ETHEREAL_GNU_SED_CHECK attempts to solve.

Will it also properly quote all the strings in whichever script it was
that caused us tons of problems the last time we tried using libtool
1.4[.x]?  (I forget whether it was ltconfig or not, but the one release we
built using libtool 1.4[.x] failed to build on a number of platforms
because the script in question bombed out with a syntax error because
some variable was either unset, or set to a null string, and they were
doing a test something like

	if test $foo = bar

which doesn't work if "foo" isn't set or is set to a null string;

	if test "$foo" = bar

works, as does

	if test X$foo = Xbar

and as does

	if test "X$foo" = Xbar

.)