diff options
Diffstat (limited to 'Modules/getpath.c')
-rw-r--r-- | Modules/getpath.c | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Modules/getpath.c b/Modules/getpath.c index 4f49cc3a1f..a502d37a1d 100644 --- a/Modules/getpath.c +++ b/Modules/getpath.c @@ -32,6 +32,14 @@ OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. #define PYTHONPATH ".:/usr/local/lib/python" #endif +#ifndef PREFIX +#define PREFIX "/usr/local" +#endif + +#ifndef EXEC_PREFIX +#define EXEC_PREFIX "/usr/local" +#endif + /* This is called once from pythonrun to initialize sys.path. The environment variable PYTHONPATH is fetched and the default path @@ -65,3 +73,18 @@ Py_GetPath() strcpy(p, defpath); return buf; } + + +/* Similar for Makefile variables $prefix and $exec_prefix */ + +char * +Py_GetPrefix() +{ + return PREFIX; +} + +char * +Py_GetExecPrefix() +{ + return EXEC_PREFIX; +} |