gpg-error/gpg-error.patch

Wed, 30 Mar 2011 19:35:16 +0200

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 30 Mar 2011 19:35:16 +0200
changeset 335
6eb79a12ee37
permissions
-rw-r--r--

Finally correct packaging logic enough to allow for successful building:
Force Java dependency to C++ and POSIX threads to satisfy buildtime
requirements of GCJ, add conditional java dependency to infozip as
required by libjava/configure, remove outdated fortran conditions,
correct buildconf causing jcf-dump target to fail, add and improve
warnings regarding profile feedback, build duration, and parallel
make, correct make environment when building C++ dependent languages,
and introduce new helpful comments.

     1 Index: src/gpg-error.c
     2 --- src/gpg-error.c.orig	2006-09-05 20:21:14 +0200
     3 +++ src/gpg-error.c	2006-09-14 16:59:50 +0200
     4 @@ -77,11 +77,15 @@
     5    locale_dir = get_locale_dir ();
     6    if (locale_dir)
     7      {
     8 +#ifdef ENABLE_NLS
     9        bindtextdomain (PACKAGE, locale_dir);
    10 +#endif
    11        drop_locale_dir (locale_dir);
    12      }
    13 +#ifdef ENABLE_NLS
    14    textdomain (PACKAGE);
    15  #endif
    16 +#endif
    17  }

mercurial