Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 171787 | Differences between
and this patch

Collapse All | Expand All

(-)parted-1.8.2.orig/configure.ac (+1 lines)
Lines 191-196 Link Here
191
fi
191
fi
192
AM_PROG_LIBTOOL
192
AM_PROG_LIBTOOL
193
193
194
AC_CHECK_HEADER(libintl.h)
194
dnl Initialize i18n:
195
dnl Initialize i18n:
195
ALL_LINGUAS="ca cs da de es fr gl id it ja nl nn hu pl pt pt_BR ru sv tr uk vi zh_CN zh_TW"
196
ALL_LINGUAS="ca cs da de es fr gl id it ja nl nn hu pl pt pt_BR ru sv tr uk vi zh_CN zh_TW"
196
AM_GNU_GETTEXT_VERSION([0.12.1])
197
AM_GNU_GETTEXT_VERSION([0.12.1])
(-)parted-1.8.2.orig/libparted/labels/dasd.c (-1 / +3 lines)
Lines 41-48 Link Here
41
#include <parted/fdasd.h>
41
#include <parted/fdasd.h>
42
#include <parted/linux.h>
42
#include <parted/linux.h>
43
43
44
#include <libintl.h>
45
#if ENABLE_NLS
44
#if ENABLE_NLS
45
#  ifdef HAVE_LIBINTL_H
46
#    include <libintl.h>
47
#  endif
46
#  define _(String) dgettext (PACKAGE, String)
48
#  define _(String) dgettext (PACKAGE, String)
47
#else
49
#else
48
#  define _(String) (String)
50
#  define _(String) (String)
(-)parted-1.8.2.orig/libparted/labels/fdasd.c (-1 / +3 lines)
Lines 21-28 Link Here
21
21
22
#include <parted/parted.h>
22
#include <parted/parted.h>
23
23
24
#include <libintl.h>
25
#if ENABLE_NLS
24
#if ENABLE_NLS
25
#  ifdef HAVE_LIBINTL_H
26
#    include <libintl.h>
27
#  endif
26
#  define _(String) dgettext (PACKAGE, String)
28
#  define _(String) dgettext (PACKAGE, String)
27
#else
29
#else
28
#  define _(String) (String)
30
#  define _(String) (String)
(-)parted-1.8.2.orig/libparted/labels/vtoc.c (-1 / +3 lines)
Lines 11-18 Link Here
11
11
12
#include <parted/parted.h>
12
#include <parted/parted.h>
13
13
14
#include <libintl.h>
15
#if ENABLE_NLS
14
#if ENABLE_NLS
15
#  ifdef HAVE_LIBINTL_H
16
#    include <libintl.h>
17
#  endif
16
#  define _(String) dgettext (PACKAGE, String)
18
#  define _(String) dgettext (PACKAGE, String)
17
#else
19
#else
18
#  define _(String) (String)
20
#  define _(String) (String)

Return to bug 171787