Hi It seems the include gettext.h in barcode.h has been renamed to gettext-po.h upstream, so when building, for example glabels on the openSUSE Build Service it fails when referencing barcode.h.
Attached, please find a patch for your consideration. -- Cheers Malcolm °¿° LFCS, SUSE Knowledge Partner (Linux Counter #276890) SUSE Linux Enterprise Desktop 12 GNOME 3.10.1 Kernel 3.12.28-4-default up 5 days 6:57, 5 users, load average: 0.18, 0.28, 0.24 CPU Intel® [email protected] | GPU Intel® Sandybridge Mobile
>From aefc0d09f48dc85202cbf24fac4fd40c5908f1e6 Mon Sep 17 00:00:00 2001 From: Malcolm <[email protected]> Date: Thu, 20 Nov 2014 20:13:37 -0600 Subject: [PATCH][BUILD] Fix renamed gettext include header reference Signed-off-by: Malcolm <[email protected]> --- barcode.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/barcode.h b/barcode.h index ed90e0c..ff8574d 100644 --- a/barcode.h +++ b/barcode.h @@ -26,7 +26,7 @@ #include "config.h" #include <stdio.h> -#include <gettext.h> +#include <gettext-po.h> #define _(X) gettext (X) #define _N(X) (X) -- 1.8.5.2
