1 /* -*- C -*- ***********************************************
2 Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
3 Amsterdam, The Netherlands.
7 Permission to use, copy, modify, and distribute this software and its
8 documentation for any purpose and without fee is hereby granted,
9 provided that the above copyright notice appear in all copies and that
10 both that copyright notice and this permission notice appear in
11 supporting documentation, and that the names of Stichting Mathematisch
12 Centrum or CWI not be used in advertising or publicity pertaining to
13 distribution of the software without specific, written prior permission.
15 STICHTING MATHEMATISCH CENTRUM DISCLAIMS ALL WARRANTIES WITH REGARD TO
16 THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND
17 FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH CENTRUM BE LIABLE
18 FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
19 WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
20 ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
21 OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
23 ******************************************************************/
25 /* Universal Python configuration file */
37 #include "intrcheck.h"
42 /* Normally, the main program is called from here (so everything else
43 can be in libPython.a). We save a pointer to argv[0] because it
44 may be needed for dynamic loading of modules in import.c. If you
45 have your own main program and want to use non-SunOS dynamic
46 loading, you will have to provide your own version of
71 /* Return the initial python search path. This is called once from
72 initsys() to initialize sys.path.
73 The environment variable PYTHONPATH is fetched and the default path
74 appended. (The Mac has no environment variables, so there the
75 default path is always returned.) The default path may be passed
76 to the preprocessor; if not, a system-dependent default is used. */
80 #define PYTHONPATH ": :Lib :Lib:stdwin :Demo"
81 #endif /* macintosh */
82 #endif /* !PYTHONPATH */
86 #define PYTHONPATH ".;..\\lib;\\python\\lib"
88 #endif /* !PYTHONPATH */
91 #define PYTHONPATH ".:/usr/local/lib/python"
92 #endif /* !PYTHONPATH */
94 extern char *getenv();
101 #else /* !macintosh */
102 char *path
= getenv("PYTHONPATH");
103 char *defpath
= PYTHONPATH
;
108 if (path
== 0 || *path
== '\0')
110 n
= strlen(path
) + strlen(defpath
) + 2;
113 return path
; /* XXX too bad -- but not likely */
115 p
= buf
+ strlen(buf
);
119 #endif /* !macintosh */
123 /* Table of built-in modules.
124 These are initialized when first imported.
125 Note: selection of optional extensions is now generally done by the
128 /* -- ADDMODULE MARKER 1 -- */
130 extern void initmarshal();
137 /* -- ADDMODULE MARKER 2 -- */
139 /* This module "lives in" with marshal.c */
140 {"marshal", initmarshal
},
142 /* These entries are here for sys.builtin_module_names */
144 {"__builtin__", NULL
},
158 } frozen_modules
[] = {