b859013837618f87a79b4c0ce12bf95a35c69cf2
[captive.git] / src / libcaptive / client / standalone.c
1 /* $Id$
2  * General + --enable-standalone optional init for static builds of captive
3  * Copyright (C) 2005 Jan Kratochvil <project-captive@jankratochvil.net>
4  * 
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; exactly version 2 of June 1991 is required
8  * 
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  * 
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19
20 #include "config.h"
21
22 #include "standalone.h" /* self */
23 #include <stdlib.h>
24 #include <stdio.h>
25 #include <glib-object.h>
26 #include <locale.h>
27
28
29 gboolean captive_standalone_init_done=FALSE;
30
31 void captive_standalone_init(void)
32 {
33         if (captive_standalone_init_done)
34                 return;
35
36 #ifdef ENABLE_STANDALONE
37
38         /* Prevent glibc loading: /usr/lib/gconv/gconv-modules.cache */
39         setenv("GCONV_PATH","/foobar",
40                         1);     /* overwrite */
41
42         /* Not needed: "LIBCHARSET_ALIAS_DIR"
43          * as prevented by: glib-2.6.4-noaliases.patch
44          */
45
46         if (getenv("LC_ALL"))
47                 setenv("LC_MESSAGES",getenv("LC_ALL"),
48                                 1);     /* overwrite */
49         if (!getenv("LC_MESSAGES") && getenv("LANG"))
50                 setenv("LC_MESSAGES",getenv("LANG"),
51                                 1);     /* overwrite */
52         setenv("LC_CTYPE","en_US.utf8",
53                         1);     /* overwrite */
54         unsetenv("LANG");
55         unsetenv("LC_COLLATE");
56         unsetenv("LC_MONETARY");
57         unsetenv("LC_NUMERIC");
58         unsetenv("LC_TIME");
59
60         /* It may differ across distributions. Maybe - just expected. */
61         setenv("LOCPATH",LOCALEDIR,
62                         1);     /* overwrite */
63
64 #endif /* ENABLE_STANDALONE */
65
66         /* Prevent output block buffering if redirecting stdout to file. */
67         setvbuf(stdout,(char *)NULL,_IONBF,0);
68         setvbuf(stderr,(char *)NULL,_IONBF,0);
69
70         /* Initialize the i18n stuff */
71         setlocale(LC_ALL,"");
72         bindtextdomain(PACKAGE,LOCALEDIR);
73         textdomain(PACKAGE);
74
75         /* Initialize GObject subsystem of GLib. */
76         g_type_init();
77
78         captive_standalone_init_done=TRUE;
79 }