home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Tools / Languages / Python 1.1 / Modules / config.c.in < prev    next >
Encoding:
Text File  |  1994-10-05  |  4.8 KB  |  214 lines  |  [TEXT/R*ch]

  1. /* -*- C -*- ***********************************************
  2. Copyright 1991, 1992, 1993, 1994 by Stichting Mathematisch Centrum,
  3. Amsterdam, The Netherlands.
  4.  
  5.                         All Rights Reserved
  6.  
  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.
  14.  
  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.
  22.  
  23. ******************************************************************/
  24.  
  25. /* Universal Python configuration file */
  26.  
  27. #ifdef HAVE_CONFIG_H
  28. #include "config.h"
  29. #endif
  30.  
  31. #ifdef macintosh
  32. /* The Macintosh main program is in macmain.c */
  33. #define NO_MAIN
  34. #endif
  35.  
  36. #include <stdio.h>
  37. #include <string.h>
  38.  
  39. #include "myproto.h"
  40. #include "mymalloc.h"
  41. #include "osdefs.h"
  42. #include "intrcheck.h"
  43.  
  44.  
  45. #ifndef NO_MAIN
  46.  
  47. /* Normally, the main program is called from here (so everything else
  48.    can be in libPython.a).  We save a pointer to argv[0] because it
  49.    may be needed for dynamic loading of modules in import.c.  If you
  50.    have your own main program and want to use non-SunOS dynamic
  51.    loading, you will have to provide your own version of
  52.    getprogramname(). */
  53.  
  54. static char *argv0;
  55.  
  56. /* These are made available for other modules that might need them.
  57.    This is rare, but it is needed by the secureware module. */
  58.  
  59. static char **orig_argv;
  60. static int  orig_argc;
  61.  
  62. main(argc, argv)
  63.     int argc;
  64.     char **argv;
  65. {
  66.     orig_argc = argc;
  67.     orig_argv = argv;
  68.     argv0 = argv[0];
  69.     realmain(argc, argv);
  70. }
  71.  
  72. char *
  73. getprogramname()
  74. {
  75.     return argv0;
  76. }
  77.  
  78. void
  79. getargcargv(argc,argv)
  80.     int *argc;
  81.     char ***argv;
  82. {
  83.     *argc = orig_argc;
  84.     *argv = orig_argv;
  85. }
  86.  
  87. #endif
  88.  
  89.  
  90. /* Python version information */
  91.  
  92. #include "patchlevel.h"
  93.  
  94. /* Return the version string.  This is constructed from the official
  95.    version number (from patchlevel.h), and the current date (if known
  96.    to the compiler, else a manually inserted date). */
  97.  
  98. #define VERSION "%s (%s)"
  99.  
  100. #ifdef __DATE__
  101. #define DATE __DATE__
  102. #else
  103. #define DATE "Aug 17 1994"
  104. #endif
  105.  
  106. char *
  107. getversion()
  108. {
  109.     static char version[80];
  110.     sprintf(version, VERSION, PATCHLEVEL, DATE);
  111.     return version;
  112. }
  113.  
  114.  
  115. /* Return the copyright string.  This is updated manually. */
  116.  
  117. char *
  118. getcopyright()
  119. {
  120.     return "Copyright 1991-1994 Stichting Mathematisch Centrum, Amsterdam";
  121. }
  122.  
  123.  
  124. /* Return the initial python search path.  This is called once from
  125.    initsys() to initialize sys.path.
  126.    The environment variable PYTHONPATH is fetched and the default path
  127.    appended.  (The Mac has no environment variables, so there the
  128.    default path is always returned.)  The default path may be passed
  129.    to the preprocessor; if not, a system-dependent default is used. */
  130.  
  131. #ifndef PYTHONPATH
  132. #ifdef macintosh
  133. #define PYTHONPATH ": :Lib :Lib:stdwin :Lib:test :Lib:mac"
  134. #endif /* macintosh */
  135. #endif /* !PYTHONPATH */
  136.  
  137. #ifndef PYTHONPATH
  138. #if defined(MSDOS) || defined(NT)
  139. #define PYTHONPATH ".;..\\lib;\\python\\lib"
  140. #endif /* MSDOS || NT */
  141. #endif /* !PYTHONPATH */
  142.  
  143. #ifndef PYTHONPATH
  144. #define PYTHONPATH ".:/usr/local/lib/python"
  145. #endif /* !PYTHONPATH */
  146.  
  147. extern char *getenv();
  148.  
  149. char *
  150. getpythonpath()
  151. {
  152.     char *path = getenv("PYTHONPATH");
  153.     char *defpath = PYTHONPATH;
  154.     static char *buf = NULL;
  155.     char *p;
  156.     int n;
  157.  
  158.     if (path == NULL)
  159.         path = "";
  160.     n = strlen(path) + strlen(defpath) + 2;
  161.     if (buf != NULL) {
  162.         free(buf);
  163.         buf = NULL;
  164.     }
  165.     buf = malloc(n);
  166.     if (buf == NULL)
  167.         fatal("not enough memory to copy module search path");
  168.     strcpy(buf, path);
  169.     p = buf + strlen(buf);
  170.     if (p != buf)
  171.         *p++ = DELIM;
  172.     strcpy(p, defpath);
  173.     return buf;
  174. }
  175.  
  176.  
  177. /* Table of built-in modules.
  178.    These are initialized when first imported.
  179.    Note: selection of optional extensions is now generally done by the
  180.    makesetup script. */
  181.  
  182. /* -- ADDMODULE MARKER 1 -- */
  183.  
  184. extern void initmarshal();
  185.  
  186. struct {
  187.     char *name;
  188.     void (*initfunc)();
  189. } inittab[] = {
  190.  
  191. /* -- ADDMODULE MARKER 2 -- */
  192.  
  193.     /* This module "lives in" with marshal.c */
  194.     {"marshal", initmarshal},
  195.  
  196.     /* These entries are here for sys.builtin_module_names */
  197.     {"__main__", NULL},
  198.     {"__builtin__", NULL},
  199.     {"sys", NULL},
  200.  
  201.     /* Sentinel */
  202.     {0, 0}
  203. };
  204.  
  205. #ifndef USE_FROZEN
  206. struct frozen {
  207.     char *name;
  208.     char *code;
  209.     int size;
  210. } frozen_modules[] = {
  211.     {0, 0, 0}
  212. };
  213. #endif
  214.