1996-05-28 19:30:17 -03:00
|
|
|
/***********************************************************
|
|
|
|
Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
|
|
|
|
The Netherlands.
|
|
|
|
|
|
|
|
All Rights Reserved
|
|
|
|
|
1996-10-25 11:44:06 -03:00
|
|
|
Permission to use, copy, modify, and distribute this software and its
|
|
|
|
documentation for any purpose and without fee is hereby granted,
|
1996-05-28 19:30:17 -03:00
|
|
|
provided that the above copyright notice appear in all copies and that
|
1996-10-25 11:44:06 -03:00
|
|
|
both that copyright notice and this permission notice appear in
|
1996-05-28 19:30:17 -03:00
|
|
|
supporting documentation, and that the names of Stichting Mathematisch
|
1996-10-25 11:44:06 -03:00
|
|
|
Centrum or CWI or Corporation for National Research Initiatives or
|
|
|
|
CNRI not be used in advertising or publicity pertaining to
|
|
|
|
distribution of the software without specific, written prior
|
|
|
|
permission.
|
|
|
|
|
|
|
|
While CWI is the initial source for this software, a modified version
|
|
|
|
is made available by the Corporation for National Research Initiatives
|
|
|
|
(CNRI) at the Internet address ftp://ftp.python.org.
|
|
|
|
|
|
|
|
STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
|
|
|
|
REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
|
|
|
|
CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
|
|
|
|
DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
|
|
|
|
PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
PERFORMANCE OF THIS SOFTWARE.
|
1996-05-28 19:30:17 -03:00
|
|
|
|
|
|
|
******************************************************************/
|
|
|
|
|
|
|
|
/* Return the initial module search path. */
|
|
|
|
|
1995-08-04 01:20:48 -03:00
|
|
|
#include "Python.h"
|
|
|
|
#include "osdefs.h"
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef PYTHONPATH
|
1996-07-30 17:36:12 -03:00
|
|
|
#define PYTHONPATH "/usr/local/lib/python"
|
1995-08-04 01:20:48 -03:00
|
|
|
#endif
|
|
|
|
|
1996-06-12 01:20:27 -03:00
|
|
|
#ifndef PREFIX
|
|
|
|
#define PREFIX "/usr/local"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef EXEC_PREFIX
|
1996-07-30 17:36:12 -03:00
|
|
|
#define EXEC_PREFIX PREFIX
|
1996-06-12 01:20:27 -03:00
|
|
|
#endif
|
|
|
|
|
1995-08-04 01:20:48 -03:00
|
|
|
|
1996-05-28 19:30:17 -03:00
|
|
|
/* This is called once from pythonrun to initialize sys.path. The
|
|
|
|
environment variable PYTHONPATH is fetched and the default path
|
|
|
|
appended. The default path may be passed to the preprocessor; if
|
|
|
|
not, a hardcoded default is used, which only makes (some) sense on
|
|
|
|
Unix. */
|
1995-08-04 01:20:48 -03:00
|
|
|
|
|
|
|
char *
|
1996-05-28 19:30:17 -03:00
|
|
|
Py_GetPath()
|
1995-08-04 01:20:48 -03:00
|
|
|
{
|
|
|
|
char *path = getenv("PYTHONPATH");
|
|
|
|
char *defpath = PYTHONPATH;
|
|
|
|
static char *buf = NULL;
|
|
|
|
char *p;
|
|
|
|
int n;
|
|
|
|
|
|
|
|
if (path == NULL)
|
|
|
|
path = "";
|
|
|
|
n = strlen(path) + strlen(defpath) + 2;
|
|
|
|
if (buf != NULL) {
|
|
|
|
free(buf);
|
|
|
|
buf = NULL;
|
|
|
|
}
|
|
|
|
buf = malloc(n);
|
|
|
|
if (buf == NULL)
|
|
|
|
Py_FatalError("not enough memory to copy module search path");
|
|
|
|
strcpy(buf, path);
|
|
|
|
p = buf + strlen(buf);
|
|
|
|
if (p != buf)
|
|
|
|
*p++ = DELIM;
|
|
|
|
strcpy(p, defpath);
|
|
|
|
return buf;
|
|
|
|
}
|
1996-06-12 01:20:27 -03:00
|
|
|
|
|
|
|
|
|
|
|
/* Similar for Makefile variables $prefix and $exec_prefix */
|
|
|
|
|
|
|
|
char *
|
|
|
|
Py_GetPrefix()
|
|
|
|
{
|
|
|
|
return PREFIX;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
|
|
|
Py_GetExecPrefix()
|
|
|
|
{
|
|
|
|
return EXEC_PREFIX;
|
|
|
|
}
|