aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog7
-rw-r--r--Makefile.am7
-rw-r--r--src/Makefile.am3
-rw-r--r--src/dummy-strings.c6
4 files changed, 21 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 9bc7511..9fa3099 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,12 @@
2005-10-31 Christopher Aillon <caillon@redhat.com>
+ * Makefile.am:
+ * src/Makefile.am:
+ * src/dummy-strings.c:
+ Make `make distcheck` happy
+
+2005-10-31 Christopher Aillon <caillon@redhat.com>
+
* src/krb5-auth-dialog.c: Memleak fixes
Also, respect the hidden field of krb5_prompt
diff --git a/Makefile.am b/Makefile.am
index 214ce57..fcf747a 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1 +1,8 @@
SUBDIRS = src po etpo
+
+EXTRA_DIST = \
+ intltool-extract.in \
+ intltool-merge.in \
+ intltool-update.in
+
+DISTCLEANFILES = intltool-extract intltool-merge intltool-update
diff --git a/src/Makefile.am b/src/Makefile.am
index 2bbde01..df31d97 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -4,7 +4,8 @@ INCLUDES = \
bin_PROGRAMS = krb5-auth-dialog
krb5_auth_dialog_SOURCES = \
- krb5-auth-dialog.c
+ krb5-auth-dialog.c \
+ dummy-strings.c
krb5_auth_dialog_LDADD = @NETWORK_MANAGER_LIBS@ @KRB5_LIBS@ @GNOME_LIBS@
diff --git a/src/dummy-strings.c b/src/dummy-strings.c
index e8de9ab..e107293 100644
--- a/src/dummy-strings.c
+++ b/src/dummy-strings.c
@@ -6,7 +6,10 @@
* error message [60-254]"). It is expected that not all these
* messages are translated.
*/
-const char *dummy = {
+
+#include <glib/gi18n.h>
+
+const char *dummy[] = {
N_("Can't read ticket file"), /* test1.et:krb:KRB_MK_AP_TKFIL */
N_("Can't find ticket or TGT"), /* test1.et:krb:KRB_MK_AP_NOTKT */
N_("TGT expired"), /* test1.et:krb:KRB_MK_AP_TGTEXP */
@@ -642,4 +645,5 @@ security administrator."), /* chpass_util_strings.et:ovku:CHPASS_UTIL_PASSWORD_T
N_("Token is missing data"), /* gssapi_err_generic.et:ggss:G_TOK_TRUNC */
N_("Token was reflected"), /* gssapi_err_generic.et:ggss:G_REFLECT */
N_("Received token ID does not match expected token ID"), /* gssapi_err_generic.et:ggss:G_WRONG_TOKID */
+ NULL
};