mirror of
https://github.com/samba-team/samba.git
synced 2025-01-11 05:18:09 +03:00
Fix the build. Looks like no one ever compiled this on a system
with a libintl.h before. Jeremy.
This commit is contained in:
parent
365925eea3
commit
3a88316e23
@ -313,8 +313,10 @@ int main(int argc, char ** argv)
|
||||
FILE * pmntfile;
|
||||
|
||||
/* setlocale(LC_ALL, "");
|
||||
#if defined(LOCALEDIR)
|
||||
bindtextdomain(PACKAGE, LOCALEDIR);
|
||||
textdomain(PACKAGE); */
|
||||
#endif
|
||||
|
||||
if(argc && argv) {
|
||||
thisprogram = argv[0];
|
||||
|
@ -726,8 +726,10 @@ main (int argc, char **argv)
|
||||
setprogname (argv[0]);
|
||||
|
||||
setlocale (LC_ALL, "");
|
||||
#if defined(HEIMDAL_LOCALEDIR)
|
||||
bindtextdomain ("heimdal_kuser", HEIMDAL_LOCALEDIR);
|
||||
textdomain("heimdal_kuser");
|
||||
#endif
|
||||
|
||||
ret = krb5_init_context (&context);
|
||||
if (ret == KRB5_CONFIG_BADFORMAT)
|
||||
|
@ -295,7 +295,9 @@ krb5_init_context(krb5_context *context)
|
||||
*context = NULL;
|
||||
|
||||
/* should have a run_once */
|
||||
#if defined(HEIMDAL_LOCALEDIR)
|
||||
bindtextdomain(HEIMDAL_TEXTDOMAIN, HEIMDAL_LOCALEDIR);
|
||||
#endif
|
||||
|
||||
p = calloc(1, sizeof(*p));
|
||||
if(!p)
|
||||
@ -836,20 +838,30 @@ krb5_init_ets(krb5_context context)
|
||||
{
|
||||
if(context->et_list == NULL){
|
||||
krb5_add_et_list(context, initialize_krb5_error_table_r);
|
||||
#if defined(HEIMDAL_LOCALEDIR)
|
||||
bindtextdomain(COM_ERR_BINDDOMAIN_krb5, HEIMDAL_LOCALEDIR);
|
||||
#endif
|
||||
|
||||
krb5_add_et_list(context, initialize_asn1_error_table_r);
|
||||
#if defined(HEIMDAL_LOCALEDIR)
|
||||
bindtextdomain(COM_ERR_BINDDOMAIN_asn1, HEIMDAL_LOCALEDIR);
|
||||
#endif
|
||||
|
||||
krb5_add_et_list(context, initialize_heim_error_table_r);
|
||||
#if defined(HEIMDAL_LOCALEDIR)
|
||||
bindtextdomain(COM_ERR_BINDDOMAIN_heim, HEIMDAL_LOCALEDIR);
|
||||
#endif
|
||||
|
||||
krb5_add_et_list(context, initialize_k524_error_table_r);
|
||||
#if defined(HEIMDAL_LOCALEDIR)
|
||||
bindtextdomain(COM_ERR_BINDDOMAIN_k524, HEIMDAL_LOCALEDIR);
|
||||
#endif
|
||||
|
||||
#ifdef PKINIT
|
||||
krb5_add_et_list(context, initialize_hx_error_table_r);
|
||||
#if defined(HEIMDAL_LOCALEDIR)
|
||||
bindtextdomain(COM_ERR_BINDDOMAIN_hx, HEIMDAL_LOCALEDIR);
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user