Re: Gif crashes gimp

1999-11-21 Thread Steinar H. Gunderson
On Sun, Nov 21, 1999 at 11:42:41AM +0100, Michael Natterer wrote: What about the following: remember the last message_box and it's message string, and if the next message is the same one, just add a line saying "(This message repeated n times)" ??? But then, if the same message was repeated into

libgimpui dcgettext, a linker question

1999-11-21 Thread Marc Lehmann
I just got a bug report that contained this: /usr/local/lib/libgimpui.so: undefined reference to `dcgettext__' Can a makefile guru tell me wether this is a bug with i18n on the target system, or ist libgimpui just not linked against -lintl (as it should)? -- -==-

Re: Gif crashes gimp

1999-11-21 Thread Marc Lehmann
On Sun, Nov 21, 1999 at 11:42:41AM +0100, Michael Natterer [EMAIL PROTECTED] wrote: And I limited the number of message boxes to 7 (and the number of message boxes with the same message to 3), so these kind of bugs are less severe. What about the following: remember the last message_box

Re: libgimpui dcgettext, a linker question

1999-11-21 Thread Steinar H. Gunderson
On Sun, Nov 21, 1999 at 09:55:10PM +0100, Marc Lehmann wrote: /usr/local/lib/libgimpui.so: undefined reference to `dcgettext__' Can a makefile guru tell me wether this is a bug with i18n on the target system, or ist libgimpui just not linked against -lintl (as it should)? To fill you inn, Marc,

Re: libgimpui dcgettext, a linker question

1999-11-21 Thread Marc Lehmann
On Sun, Nov 21, 1999 at 09:47:56PM +, "Steinar H. Gunderson" [EMAIL PROTECTED] wrote: On Sun, Nov 21, 1999 at 09:55:10PM +0100, Marc Lehmann wrote: /usr/local/lib/libgimpui.so: undefined reference to `dcgettext__' Can a makefile guru tell me wether this is a bug with i18n on the target

Re: libgimpui dcgettext, a linker question

1999-11-21 Thread Marc Lehmann
libintl is only distributed as a static library. You can't portably link static libraries into shared libraries. Isn't --with-included-gettext pretty useless (and very dangerous) then? At the very least we should --disable-shared when a user selects that option. -- -==-