Thanks for the help everybody. It looks like the problem I was
really having was that I'm compiling for os x and gnu gettext and
related functions are in a separate library (libintl) so needed to
use the following environment:
export CFLAGS="-I/sw/include"
export LDFLAGS="-L/sw/lib -lintl"
export CXXFLAGS=$CFLAGS
export CPPFLAGS=$CXXFLAGS
In response to jhawk's comment, the ion people actually have done
something kind of weird with their autoconf setup, but the above
settings seem to have fixed the immediate problem. Also, it's nice
to know to know I can still expect flames from sipb types even though
I'm not at mit any more ;)
-Ed
On Jun 29, 2006, at 8:52 PM, Peter O'Gorman wrote:
On Thu, 2006-06-29 at 21:38 -0600, Bob Proulx wrote:
So probably what you want is something similar to this:
./configure CPPFLAGS="-I /sw" LDFLAGS="-L /sw"
Probably like this instead:
./configure CPPFLAGS="-I/sw/include" LDFLAGS="-L/sw/lib"
Peter
_______________________________________________
Autoconf mailing list
Autoconf@xxxxxxx
http://lists.gnu.org/mailman/listinfo/autoconf