Mailing List Archive

Wackamole install on FreeBSD 4.7
To Whom It May Concern

I am having some difficulty compiling wackamole for FreeBSD 4.7. If I
follow the install instructions in the README ( i.e. ./configure
--with-cppflags=-I/usr/local/include --with-ldflags=-L/usr/local/lib )
everything works just fine, however I get a warning about thread
support in FreeBSD, and just for grins I would like to compile without
threads, using the recommended --with-threads=no option. When I add
this option to the above configure script, configure complains that
Spread is not installed, which of course it is and works without the
added line in the configure call. Any advice would be greatly
appreciated.

Thanks in advance for any help

Sincerely

Nathen Hinson
Systems Analyst
On - Site Support
User Services
Information Technology Services
University of Texas at Austin
Wackamole install on FreeBSD 4.7 [ In reply to ]
Sounds like the issue is that it can find libtspread, but not libspread.
If you make sure that libspread.a or libspread.so can be found in the
linking path (i.e. what you specify with -L in ldflags), it should work.

--Ryan

Nathen Hinson wrote:
> To Whom It May Concern
>
> I am having some difficulty compiling wackamole for FreeBSD 4.7. If
> I follow the install instructions in the README ( i.e. ./configure
> --with-cppflags=-I/usr/local/include --with-ldflags=-L/usr/local/lib )
> everything works just fine, however I get a warning about thread support
> in FreeBSD, and just for grins I would like to compile without threads,
> using the recommended --with-threads=no option. When I add this option
> to the above configure script, configure complains that Spread is not
> installed, which of course it is and works without the added line in the
> configure call. Any advice would be greatly appreciated.
>
> Thanks in advance for any help
>
> Sincerely
>
> Nathen Hinson
> Systems Analyst
> On - Site Support
> User Services
> Information Technology Services
> University of Texas at Austin
>
>
> _______________________________________________
> wackamole-users mailing list
> wackamole-users@lists.backhand.org
> http://lists.backhand.org/mailman/listinfo/wackamole-users
>
Wackamole install on FreeBSD 4.7 [ In reply to ]
To All

I tried Ryan's suggestion which seemed very sound, however it still
does not work. I have two libraries libsp.a and libtsp.a ( the tsp one
is the one with threading I assume ). I have tried all possible
combinations of having both, either, neither in the local directory or
in the linking path and everything works fine when I do not specify
--with-threads=no. Is there something else ( anything else ) that I can
check ? Or has anyone run Wackamole on FreeBSD 4.7-RELEASE without
issue and I can safely ignore any warnings about threading ?

Thanks very much for any information

PS. does not work means that the configure script fails right after
checking for SP_connect in -lsp... yes
and says:
0=2: not found
configure: error: *** wackamole requires Spread ***
when run with --with-threads=no

Sincerely

Nathen Hinson
Systems Analyst
On - Site Support
User Services
Information Technology Services
University of Texas at Austin

On Wednesday, June 18, 2003, at 05:49 PM, Ryan Caudy wrote:

> Sounds like the issue is that it can find libtspread, but not
> libspread. If you make sure that libspread.a or libspread.so can be
> found in the linking path (i.e. what you specify with -L in ldflags),
> it should work.
>
> --Ryan
>
> Nathen Hinson wrote:
>> To Whom It May Concern
>> I am having some difficulty compiling wackamole for FreeBSD 4.7.
>> If I follow the install instructions in the README ( i.e. ./configure
>> --with-cppflags=-I/usr/local/include --with-ldflags=-L/usr/local/lib
>> ) everything works just fine, however I get a warning about thread
>> support in FreeBSD, and just for grins I would like to compile
>> without threads, using the recommended --with-threads=no option. When
>> I add this option to the above configure script, configure complains
>> that Spread is not installed, which of course it is and works without
>> the added line in the configure call. Any advice would be greatly
>> appreciated.
>> Thanks in advance for any help
>> Sincerely
>> Nathen Hinson
>> Systems Analyst
>> On - Site Support
>> User Services
>> Information Technology Services
>> University of Texas at Austin
>> _______________________________________________
>> wackamole-users mailing list
>> wackamole-users@lists.backhand.org
>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>
>
> _______________________________________________
> wackamole-users mailing list
> wackamole-users@lists.backhand.org
> http://lists.backhand.org/mailman/listinfo/wackamole-users
>
Wackamole install on FreeBSD 4.7 [ In reply to ]
What version of Spread are you using? libsp.a and libtsp.a are library
names from an older version. Wackamole should still recognize them...
the advice I gave before was for the Spread 3.17.0+ library names, but
using libsp.a is effectively the same thing as I was recommending. I'm
going to take a look at configure.in for you now (from Wackamole 2.0).
If you're using an older version, let me know please.

--Ryan

Nathen Hinson wrote:
> To All
>
> I tried Ryan's suggestion which seemed very sound, however it still
> does not work. I have two libraries libsp.a and libtsp.a ( the tsp one
> is the one with threading I assume ). I have tried all possible
> combinations of having both, either, neither in the local directory or
> in the linking path and everything works fine when I do not specify
> --with-threads=no. Is there something else ( anything else ) that I can
> check ? Or has anyone run Wackamole on FreeBSD 4.7-RELEASE without issue
> and I can safely ignore any warnings about threading ?
>
> Thanks very much for any information
>
> PS. does not work means that the configure script fails right after
> checking for SP_connect in -lsp... yes
> and says:
> 0=2: not found
> configure: error: *** wackamole requires Spread ***
> when run with --with-threads=no
>
> Sincerely
>
> Nathen Hinson
> Systems Analyst
> On - Site Support
> User Services
> Information Technology Services
> University of Texas at Austin
>
> On Wednesday, June 18, 2003, at 05:49 PM, Ryan Caudy wrote:
>
>> Sounds like the issue is that it can find libtspread, but not
>> libspread. If you make sure that libspread.a or libspread.so can be
>> found in the linking path (i.e. what you specify with -L in ldflags),
>> it should work.
>>
>> --Ryan
>>
>> Nathen Hinson wrote:
>>
>>> To Whom It May Concern
>>> I am having some difficulty compiling wackamole for FreeBSD 4.7.
>>> If I follow the install instructions in the README ( i.e. ./configure
>>> --with-cppflags=-I/usr/local/include --with-ldflags=-L/usr/local/lib
>>> ) everything works just fine, however I get a warning about thread
>>> support in FreeBSD, and just for grins I would like to compile
>>> without threads, using the recommended --with-threads=no option. When
>>> I add this option to the above configure script, configure complains
>>> that Spread is not installed, which of course it is and works without
>>> the added line in the configure call. Any advice would be greatly
>>> appreciated.
>>> Thanks in advance for any help
>>> Sincerely
>>> Nathen Hinson
>>> Systems Analyst
>>> On - Site Support
>>> User Services
>>> Information Technology Services
>>> University of Texas at Austin
>>> _______________________________________________
>>> wackamole-users mailing list
>>> wackamole-users@lists.backhand.org
>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>
>>
>>
>> _______________________________________________
>> wackamole-users mailing list
>> wackamole-users@lists.backhand.org
>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>
>
>
> _______________________________________________
> wackamole-users mailing list
> wackamole-users@lists.backhand.org
> http://lists.backhand.org/mailman/listinfo/wackamole-users
>
Wackamole install on FreeBSD 4.7 [ In reply to ]
Ryan

I am using the Spread from the FreeBSD 4.7 ports tree which is
actually 3.16.2. However I am trying to install wackamole-2.0.0. Thanks
very much for looking into this.

Sincerely

Nathen Hinson
Systems Analyst
On - Site Support
User Services
Information Technology Services
University of Texas at Austin

On Monday, June 23, 2003, at 03:30 PM, Ryan Caudy wrote:

> What version of Spread are you using? libsp.a and libtsp.a are
> library names from an older version. Wackamole should still recognize
> them... the advice I gave before was for the Spread 3.17.0+ library
> names, but using libsp.a is effectively the same thing as I was
> recommending. I'm going to take a look at configure.in for you now
> (from Wackamole 2.0). If you're using an older version, let me know
> please.
>
> --Ryan
>
> Nathen Hinson wrote:
>> To All
>> I tried Ryan's suggestion which seemed very sound, however it
>> still does not work. I have two libraries libsp.a and libtsp.a ( the
>> tsp one is the one with threading I assume ). I have tried all
>> possible combinations of having both, either, neither in the local
>> directory or in the linking path and everything works fine when I do
>> not specify --with-threads=no. Is there something else ( anything
>> else ) that I can check ? Or has anyone run Wackamole on FreeBSD
>> 4.7-RELEASE without issue and I can safely ignore any warnings about
>> threading ?
>> Thanks very much for any information
>> PS. does not work means that the configure script fails right after
>> checking for SP_connect in -lsp... yes
>> and says:
>> 0=2: not found
>> configure: error: *** wackamole requires Spread ***
>> when run with --with-threads=no
>> Sincerely
>> Nathen Hinson
>> Systems Analyst
>> On - Site Support
>> User Services
>> Information Technology Services
>> University of Texas at Austin
>> On Wednesday, June 18, 2003, at 05:49 PM, Ryan Caudy wrote:
>>> Sounds like the issue is that it can find libtspread, but not
>>> libspread. If you make sure that libspread.a or libspread.so can be
>>> found in the linking path (i.e. what you specify with -L in
>>> ldflags), it should work.
>>>
>>> --Ryan
>>>
>>> Nathen Hinson wrote:
>>>
>>>> To Whom It May Concern
>>>> I am having some difficulty compiling wackamole for FreeBSD
>>>> 4.7. If I follow the install instructions in the README ( i.e.
>>>> ./configure --with-cppflags=-I/usr/local/include
>>>> --with-ldflags=-L/usr/local/lib ) everything works just fine,
>>>> however I get a warning about thread support in FreeBSD, and just
>>>> for grins I would like to compile without threads, using the
>>>> recommended --with-threads=no option. When I add this option to the
>>>> above configure script, configure complains that Spread is not
>>>> installed, which of course it is and works without the added line
>>>> in the configure call. Any advice would be greatly appreciated.
>>>> Thanks in advance for any help
>>>> Sincerely
>>>> Nathen Hinson
>>>> Systems Analyst
>>>> On - Site Support
>>>> User Services
>>>> Information Technology Services
>>>> University of Texas at Austin
>>>> _______________________________________________
>>>> wackamole-users mailing list
>>>> wackamole-users@lists.backhand.org
>>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>
>>>
>>>
>>> _______________________________________________
>>> wackamole-users mailing list
>>> wackamole-users@lists.backhand.org
>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>
>> _______________________________________________
>> wackamole-users mailing list
>> wackamole-users@lists.backhand.org
>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>
>
> _______________________________________________
> wackamole-users mailing list
> wackamole-users@lists.backhand.org
> http://lists.backhand.org/mailman/listinfo/wackamole-users
>
Wackamole install on FreeBSD 4.7 [ In reply to ]
This is a multi-part message in MIME format.
--------------040503080500060805020106
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

So, I'm not an autoconf expert, by any means. However, I think the
source of your problem may be an offending "$" character in the
wackamole-2.0.0 configure.in, which has been removed in CVS. I've
attached a very simple patch that should fix your problem, if I am
correct. I haven't tested it myself, because I'm not close to my normal
working environment right now; please let me know if it works.

--Ryan

Nathen Hinson wrote:
> Ryan
>
> I am using the Spread from the FreeBSD 4.7 ports tree which is
> actually 3.16.2. However I am trying to install wackamole-2.0.0. Thanks
> very much for looking into this.
>
> Sincerely
>
> Nathen Hinson
> Systems Analyst
> On - Site Support
> User Services
> Information Technology Services
> University of Texas at Austin
>
> On Monday, June 23, 2003, at 03:30 PM, Ryan Caudy wrote:
>
>> What version of Spread are you using? libsp.a and libtsp.a are
>> library names from an older version. Wackamole should still recognize
>> them... the advice I gave before was for the Spread 3.17.0+ library
>> names, but using libsp.a is effectively the same thing as I was
>> recommending. I'm going to take a look at configure.in for you now
>> (from Wackamole 2.0). If you're using an older version, let me know
>> please.
>>
>> --Ryan
>>
>> Nathen Hinson wrote:
>>
>>> To All
>>> I tried Ryan's suggestion which seemed very sound, however it
>>> still does not work. I have two libraries libsp.a and libtsp.a ( the
>>> tsp one is the one with threading I assume ). I have tried all
>>> possible combinations of having both, either, neither in the local
>>> directory or in the linking path and everything works fine when I do
>>> not specify --with-threads=no. Is there something else ( anything
>>> else ) that I can check ? Or has anyone run Wackamole on FreeBSD
>>> 4.7-RELEASE without issue and I can safely ignore any warnings about
>>> threading ?
>>> Thanks very much for any information
>>> PS. does not work means that the configure script fails right after
>>> checking for SP_connect in -lsp... yes
>>> and says:
>>> 0=2: not found
>>> configure: error: *** wackamole requires Spread ***
>>> when run with --with-threads=no
>>> Sincerely
>>> Nathen Hinson
>>> Systems Analyst
>>> On - Site Support
>>> User Services
>>> Information Technology Services
>>> University of Texas at Austin
>>> On Wednesday, June 18, 2003, at 05:49 PM, Ryan Caudy wrote:
>>>
>>>> Sounds like the issue is that it can find libtspread, but not
>>>> libspread. If you make sure that libspread.a or libspread.so can be
>>>> found in the linking path (i.e. what you specify with -L in
>>>> ldflags), it should work.
>>>>
>>>> --Ryan
>>>>
>>>> Nathen Hinson wrote:
>>>>
>>>>> To Whom It May Concern
>>>>> I am having some difficulty compiling wackamole for FreeBSD
>>>>> 4.7. If I follow the install instructions in the README ( i.e.
>>>>> ./configure --with-cppflags=-I/usr/local/include
>>>>> --with-ldflags=-L/usr/local/lib ) everything works just fine,
>>>>> however I get a warning about thread support in FreeBSD, and just
>>>>> for grins I would like to compile without threads, using the
>>>>> recommended --with-threads=no option. When I add this option to the
>>>>> above configure script, configure complains that Spread is not
>>>>> installed, which of course it is and works without the added line
>>>>> in the configure call. Any advice would be greatly appreciated.
>>>>> Thanks in advance for any help
>>>>> Sincerely
>>>>> Nathen Hinson
>>>>> Systems Analyst
>>>>> On - Site Support
>>>>> User Services
>>>>> Information Technology Services
>>>>> University of Texas at Austin
>>>>> _______________________________________________
>>>>> wackamole-users mailing list
>>>>> wackamole-users@lists.backhand.org
>>>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>>
>>>>
>>>>
>>>>
>>>> _______________________________________________
>>>> wackamole-users mailing list
>>>> wackamole-users@lists.backhand.org
>>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>>
>>> _______________________________________________
>>> wackamole-users mailing list
>>> wackamole-users@lists.backhand.org
>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>
>>
>>
>> _______________________________________________
>> wackamole-users mailing list
>> wackamole-users@lists.backhand.org
>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>
>
>
> _______________________________________________
> wackamole-users mailing list
> wackamole-users@lists.backhand.org
> http://lists.backhand.org/mailman/listinfo/wackamole-users
>

--------------040503080500060805020106
Content-Type: text/plain;
name="configure.in.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="configure.in.patch"

--- configure.in~ 2002-11-16 13:58:33.000000000 -0500
+++ configure.in 2003-06-24 13:35:02.000000000 -0400
@@ -198,7 +198,7 @@
dnl AC_MSG_ERROR([ *** wackamole requires Spread *** ]) )
else
AC_CHECK_LIB(spread, SP_connect,SPREAD=1)
- AC_CHECK_LIB(sp, SP_connect,$SPREAD=2)
+ AC_CHECK_LIB(sp, SP_connect,SPREAD=2)
fi
if test $SPREAD = 0; then
AC_MSG_ERROR([ *** wackamole requires Spread *** ])

--------------040503080500060805020106--
Wackamole install on FreeBSD 4.7 [ In reply to ]
Ryan

I can't thank-you enough for finding that syntax error for me ! I know
next to nothing about autoconf and it would have taken me many long
hours to figure that one out. The offending line was also in the
configure file at line 3731. The configure script said:

if test $ac_cv_lib_tsp_SP_connect = yes; then
$SPREAD=2
fi

and I simple removed the '$' and the script ran without error. Thanks
again

Sincerely

Nathen Hinson
Systems Analyst
On-Site Support
User Services
Information Technology Services
University of Texas at Austin

On Tuesday, June 24, 2003, at 12:41 PM, Ryan Caudy wrote:

> So, I'm not an autoconf expert, by any means. However, I think the
> source of your problem may be an offending "$" character in the
> wackamole-2.0.0 configure.in, which has been removed in CVS. I've
> attached a very simple patch that should fix your problem, if I am
> correct. I haven't tested it myself, because I'm not close to my
> normal working environment right now; please let me know if it works.
>
> --Ryan
>
> Nathen Hinson wrote:
>> Ryan
>> I am using the Spread from the FreeBSD 4.7 ports tree which is
>> actually 3.16.2. However I am trying to install wackamole-2.0.0.
>> Thanks very much for looking into this.
>> Sincerely
>> Nathen Hinson
>> Systems Analyst
>> On - Site Support
>> User Services
>> Information Technology Services
>> University of Texas at Austin
>> On Monday, June 23, 2003, at 03:30 PM, Ryan Caudy wrote:
>>> What version of Spread are you using? libsp.a and libtsp.a are
>>> library names from an older version. Wackamole should still
>>> recognize them... the advice I gave before was for the Spread
>>> 3.17.0+ library names, but using libsp.a is effectively the same
>>> thing as I was recommending. I'm going to take a look at
>>> configure.in for you now (from Wackamole 2.0). If you're using an
>>> older version, let me know please.
>>>
>>> --Ryan
>>>
>>> Nathen Hinson wrote:
>>>
>>>> To All
>>>> I tried Ryan's suggestion which seemed very sound, however it
>>>> still does not work. I have two libraries libsp.a and libtsp.a (
>>>> the tsp one is the one with threading I assume ). I have tried all
>>>> possible combinations of having both, either, neither in the local
>>>> directory or in the linking path and everything works fine when I
>>>> do not specify --with-threads=no. Is there something else (
>>>> anything else ) that I can check ? Or has anyone run Wackamole on
>>>> FreeBSD 4.7-RELEASE without issue and I can safely ignore any
>>>> warnings about threading ?
>>>> Thanks very much for any information
>>>> PS. does not work means that the configure script fails right after
>>>> checking for SP_connect in -lsp... yes
>>>> and says:
>>>> 0=2: not found
>>>> configure: error: *** wackamole requires Spread ***
>>>> when run with --with-threads=no
>>>> Sincerely
>>>> Nathen Hinson
>>>> Systems Analyst
>>>> On - Site Support
>>>> User Services
>>>> Information Technology Services
>>>> University of Texas at Austin
>>>> On Wednesday, June 18, 2003, at 05:49 PM, Ryan Caudy wrote:
>>>>
>>>>> Sounds like the issue is that it can find libtspread, but not
>>>>> libspread. If you make sure that libspread.a or libspread.so can
>>>>> be found in the linking path (i.e. what you specify with -L in
>>>>> ldflags), it should work.
>>>>>
>>>>> --Ryan
>>>>>
>>>>> Nathen Hinson wrote:
>>>>>
>>>>>> To Whom It May Concern
>>>>>> I am having some difficulty compiling wackamole for FreeBSD
>>>>>> 4.7. If I follow the install instructions in the README ( i.e.
>>>>>> ./configure --with-cppflags=-I/usr/local/include
>>>>>> --with-ldflags=-L/usr/local/lib ) everything works just fine,
>>>>>> however I get a warning about thread support in FreeBSD, and just
>>>>>> for grins I would like to compile without threads, using the
>>>>>> recommended --with-threads=no option. When I add this option to
>>>>>> the above configure script, configure complains that Spread is
>>>>>> not installed, which of course it is and works without the added
>>>>>> line in the configure call. Any advice would be greatly
>>>>>> appreciated.
>>>>>> Thanks in advance for any help
>>>>>> Sincerely
>>>>>> Nathen Hinson
>>>>>> Systems Analyst
>>>>>> On - Site Support
>>>>>> User Services
>>>>>> Information Technology Services
>>>>>> University of Texas at Austin
>>>>>> _______________________________________________
>>>>>> wackamole-users mailing list
>>>>>> wackamole-users@lists.backhand.org
>>>>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> _______________________________________________
>>>>> wackamole-users mailing list
>>>>> wackamole-users@lists.backhand.org
>>>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>>>
>>>> _______________________________________________
>>>> wackamole-users mailing list
>>>> wackamole-users@lists.backhand.org
>>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>
>>>
>>>
>>> _______________________________________________
>>> wackamole-users mailing list
>>> wackamole-users@lists.backhand.org
>>> http://lists.backhand.org/mailman/listinfo/wackamole-users
>>>
>> _______________________________________________
>> wackamole-users mailing list
>> wackamole-users@lists.backhand.org
>> http://lists.backhand.org/mailman/listinfo/wackamole-users
> --- configure.in~ 2002-11-16 13:58:33.000000000 -0500
> +++ configure.in 2003-06-24 13:35:02.000000000 -0400
> @@ -198,7 +198,7 @@
> dnl AC_MSG_ERROR([ *** wackamole requires Spread *** ]) )
> else
> AC_CHECK_LIB(spread, SP_connect,SPREAD=1)
> - AC_CHECK_LIB(sp, SP_connect,$SPREAD=2)
> + AC_CHECK_LIB(sp, SP_connect,SPREAD=2)
> fi
> if test $SPREAD = 0; then
> AC_MSG_ERROR([ *** wackamole requires Spread *** ])
Wackamole install on FreeBSD 4.7 [ In reply to ]
This is a multi-part message in MIME format.
--------------020701080002060101020607
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit

To recap for the list: there is a syntax error in configure.in (and
consequently the configure script autoconf builds from it). This is
only for wackamole-2.0.0, and is fixed in CVS. It only effects users
who wish to use pre-3.17.0 Spread libraries, without threads (i.e. libsp.a).

The fix simply consists of removing a "$" in configure.in, and
rebuilding the configure script using autoconf, or directly removing the
offending character from the configure script. I've attached patches
for each. (Correction for Nathen: line 3891 was the problem).

For those for whom it is feasible, I would strongly recommend moving to
Spread 3.17.1. It contains a number of bugfixes over 3.17.0, and even
more when compared to earlier versions. Since Wackamole's effectiveness
depends on the stability of Spread, the best way to deploy Wackamole at
this stage is with Spread 3.17.1.

--Ryan

--------------020701080002060101020607
Content-Type: text/plain;
name="configure.in.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="configure.in.patch"

--- configure.in~ 2002-11-16 13:58:33.000000000 -0500
+++ configure.in 2003-06-24 13:35:02.000000000 -0400
@@ -198,7 +198,7 @@
dnl AC_MSG_ERROR([ *** wackamole requires Spread *** ]) )
else
AC_CHECK_LIB(spread, SP_connect,SPREAD=1)
- AC_CHECK_LIB(sp, SP_connect,$SPREAD=2)
+ AC_CHECK_LIB(sp, SP_connect,SPREAD=2)
fi
if test $SPREAD = 0; then
AC_MSG_ERROR([ *** wackamole requires Spread *** ])

--------------020701080002060101020607
Content-Type: text/plain;
name="configure.patch"
Content-Transfer-Encoding: 7bit
Content-Disposition: inline;
filename="configure.patch"

--- configure~ 2002-11-16 14:01:05.000000000 -0500
+++ configure 2003-06-24 16:53:24.000000000 -0400
@@ -3888,7 +3888,7 @@
echo "$as_me:3888: result: $ac_cv_lib_sp_SP_connect" >&5
echo "${ECHO_T}$ac_cv_lib_sp_SP_connect" >&6
if test $ac_cv_lib_sp_SP_connect = yes; then
- $SPREAD=2
+ SPREAD=2
fi

fi

--------------020701080002060101020607--