Randall Hopper:
 |----------------------------------------------------------------------------
 |
 |There's also this error, but it's been in CVS a while now:
 |
 |   checking whether struct tm is in sys/time.h or time.h... time.h
 |->  ./configure[3687]: ccld_defaulted:  not found
 |   checking for pthread_getspecific in -lpthread... yes
 |
 |and the fix is again in acinclude.m4:
 |
 |   < if ccld_defaulted ; then 
 |   > if $ccld_defaulted ; then 
 |   ...
 |   < if ccld_defaulted ; then
 |   > if $ccld_defaulted ; then
 |
 |----------------------------------------------------------------------------

Correction.  My Bourne shell's a bit rusty.  Here's a fix that works:

   < if ccld_defaulted ; then 
   > if [ $ccld_defaulted != 0 ]; then 
   ...
   < if ccld_defaulted ; then
   > if [ $ccld_defaulted != 0 ]; then

Randy

-- 
Randall Hopper (mailto:[EMAIL PROTECTED])
Lockheed Martin Operation Support
EPA Scientific Visualization Center
US EPA N127-01; RTP, NC 27711

Reply via email to