REPL Server: Don't establish a SIGINT handler.
[bpt/guile.git] / libguile / guile.c
CommitLineData
7f893030
LC
1/* Copyright (C) 1996, 1997, 2000, 2001, 2006, 2008,
2 * 2011, 2013 Free Software Foundation, Inc.
3 *
73be1d9e 4 * This library is free software; you can redistribute it and/or
53befeb7
NJ
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 3 of
7 * the License, or (at your option) any later version.
0487b82f 8 *
53befeb7
NJ
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
73be1d9e
MV
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
0487b82f 13 *
73be1d9e
MV
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
53befeb7
NJ
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
17 * 02110-1301 USA
73be1d9e 18 */
0487b82f
JB
19
20/* This is the 'main' function for the `guile' executable. It is not
21 included in libguile.a.
22
23 Eventually, we hope this file will be automatically generated,
24 based on the list of installed, statically linked libraries on the
25 system. For now, please don't put interesting code in here. */
26
dbb605f5 27#ifdef HAVE_CONFIG_H
e938aff1
RB
28# include <config.h>
29#endif
30
d7db9f60 31#ifdef __MINGW32__
8f99e3f3 32# define SCM_IMPORT 1
d7db9f60 33#endif
0487b82f
JB
34#include <libguile.h>
35
4ed6bae2 36#ifdef HAVE_CONFIG_H
a0599745 37#include <libguile/scmconfig.h>
4ed6bae2 38#endif
a8255dca 39#include <ltdl.h>
7f893030 40#include <locale.h>
4ed6bae2 41
f87c105a 42#ifdef HAVE_WINSOCK2_H
82893676
MG
43#include <winsock2.h>
44#endif
45
0487b82f
JB
46/* Debugger interface (don't change the order of the following lines) */
47#define GDB_TYPE SCM
48#include <libguile/gdb_interface.h>
49GDB_INTERFACE;
50
51static void
e81d98ec 52inner_main (void *closure SCM_UNUSED, int argc, char **argv)
0487b82f 53{
82893676
MG
54#ifdef __MINGW32__
55 /* This is necessary to startup the Winsock API under Win32. */
56 WSADATA WSAData;
57 WSAStartup (0x0202, &WSAData);
58 GDB_INTERFACE_INIT;
59#endif /* __MINGW32__ */
60
0487b82f
JB
61 /* module initializations would go here */
62 scm_shell (argc, argv);
82893676
MG
63
64#ifdef __MINGW32__
65 WSACleanup ();
66#endif /* __MINGW32__ */
0487b82f
JB
67}
68
7f893030
LC
69static int
70get_integer_from_environment (const char *var, int def)
71{
72 char *end = 0;
73 char *val = getenv (var);
74 long res = def;
75 if (!val)
76 return def;
77 res = strtol (val, &end, 10);
78 if (end == val)
79 {
80 fprintf (stderr, "guile: warning: invalid %s: %s\n", var, val);
81 return def;
82 }
83 return res;
84}
85
86static int
87should_install_locale (void)
88{
89 /* If the GUILE_INSTALL_LOCALE environment variable is set to a
90 nonzero value, we should install the locale via setlocale(). This
91 behavior is off by default for compatibility with previous 2.0.x
92 releases. It will be on by default in 2.2. */
93 return get_integer_from_environment ("GUILE_INSTALL_LOCALE", 0);
94}
95
0487b82f
JB
96int
97main (int argc, char **argv)
98{
7f893030
LC
99 /* If we should install a locale, do it right at the beginning so that
100 string conversion for command-line arguments, along with possible
101 error messages, use the right locale. See
102 <https://lists.gnu.org/archive/html/guile-devel/2011-11/msg00041.html>
103 for the rationale. */
104 if (should_install_locale () && setlocale (LC_ALL, "") == NULL)
105 fprintf (stderr, "guile: warning: failed to install locale\n");
106
b57bf272 107 scm_install_gmp_memory_functions = 1;
0487b82f
JB
108 scm_boot_guile (argc, argv, inner_main, 0);
109 return 0; /* never reached */
110}
89e00824
ML
111
112/*
113 Local Variables:
114 c-file-style: "gnu"
115 End:
116*/