This archive contains answers to questions sent to Unidata support through mid-2025. Note that the archive is no longer being updated. We provide the archive for reference; many of the answers presented here remain technically correct, even if somewhat outdated. For the most up-to-date information on the use of NSF Unidata software and data services, please consult the Software Documentation first.
Peter,
>Date: Mon, 8 Oct 2001 10:46:20 -0500
>From: "Peter Sauer" <address@hidden>
>Organization: Indiana University
>To: "Steve Emmerson" <address@hidden>
>Subject: Re: 20011008: Installing udunits on a cygwin installation
>Keywords: 200110071835.f97IZP113094
The above message contained the following:
> LD_YACC is not defined.
There's the problem. You'll need to set the value of the LD_YACC
environment variable to something that the linker/loader will interpret
as a reference to a yacc-like library. For example:
$ make distclean
...
$ rm -f config.cache
$ export LD_YACC="-L /usr/local/lib -lbison"
$ ./configure &>configure.log
...
The exact value for the LD_YACC environment variable will depend on the
location of the library and whether you choose to use bison or byacc.
Regards,
Steve Emmerson <http://www.unidata.ucar.edu>