%% jason cooper <[EMAIL PROTECTED]> 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 <[EMAIL PROTECTED]>          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

_______________________________________________
Help-make mailing list
[EMAIL PROTECTED]
http://mail.gnu.org/mailman/listinfo/help-make

Reply via email to