[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: Darwin problem
From: |
Paul D. Smith |
Subject: |
Re: Darwin problem |
Date: |
Thu, 8 Aug 2002 20:41:11 -0400 |
%% jason cooper <address@hidden> writes:
jc> I'm having difficulty building Gnu make in Darwin. When I go
jc> through the configuration, the thing seems to recognize that
jc> LC_MESSAGES isn't there. When I go to build it, though, it quits
jc> with an error that LC_MESSAGES is not defined.
This is a known problem with 3.79.1; it will be fixed in the next
release.
jc> Any help you could offer in correcting this problem would be
jc> greatly appreciated. Thanks for your time.
Just add something like this:
#ifndef LC_MESSAGES
# define LC_MESSAGES 0
#endif
to make.h or gettext.h as a workaround. It doesn't get used if you
don't have gettext (internationalization), anyway.
--
-------------------------------------------------------------------------------
Paul D. Smith <address@hidden> Find some GNU make tips at:
http://www.gnu.org http://make.paulandlesley.org
"Please remain calm...I may be mad, but I am a professional." --Mad Scientist
- Darwin problem, jason cooper, 2002/08/08
- Re: Darwin problem,
Paul D. Smith <=