home *** CD-ROM | disk | FTP | other *** search
/ linuxmafia.com 2016 / linuxmafia.com.tar / linuxmafia.com / pub / palmos / pippy-0.6beta-src.tar.gz / pippy-0.6beta-src.tar / pippy-0.6beta-src / src / Modules / getpath.c < prev    next >
C/C++ Source or Header  |  2000-12-21  |  17KB  |  666 lines

  1. /***********************************************************
  2. Copyright 1991-1995 by Stichting Mathematisch Centrum, Amsterdam,
  3. 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 or Corporation for National Research Initiatives or
  13. CNRI not be used in advertising or publicity pertaining to
  14. distribution of the software without specific, written prior
  15. permission.
  16.  
  17. While CWI is the initial source for this software, a modified version
  18. is made available by the Corporation for National Research Initiatives
  19. (CNRI) at the Internet address ftp://ftp.python.org.
  20.  
  21. STICHTING MATHEMATISCH CENTRUM AND CNRI DISCLAIM ALL WARRANTIES WITH
  22. REGARD TO THIS SOFTWARE, INCLUDING ALL IMPLIED WARRANTIES OF
  23. MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL STICHTING MATHEMATISCH
  24. CENTRUM OR CNRI BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL
  25. DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  26. PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  27. TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  28. PERFORMANCE OF THIS SOFTWARE.
  29.  
  30. ******************************************************************/
  31.  
  32. /* Return the initial module search path. */
  33.  
  34. #include "Python.h"
  35. #ifndef WITHOUT_GETPATH
  36. #include "osdefs.h"
  37.  
  38. #include <sys/types.h>
  39. #include <sys/stat.h>
  40. #include <string.h>
  41.  
  42. #if HAVE_UNISTD_H
  43. #include <unistd.h>
  44. #endif /* HAVE_UNISTD_H */
  45.  
  46. #ifdef WITH_NEXT_FRAMEWORK
  47. #include <mach-o/dyld.h>
  48. #endif
  49.  
  50. /* Search in some common locations for the associated Python libraries.
  51.  *
  52.  * Two directories must be found, the platform independent directory
  53.  * (prefix), containing the common .py and .pyc files, and the platform
  54.  * dependent directory (exec_prefix), containing the shared library
  55.  * modules.  Note that prefix and exec_prefix can be the same directory,
  56.  * but for some installations, they are different.
  57.  *
  58.  * Py_GetPath() carries out separate searches for prefix and exec_prefix.
  59.  * Each search tries a number of different locations until a ``landmark''
  60.  * file or directory is found.  If no prefix or exec_prefix is found, a
  61.  * warning message is issued and the preprocessor defined PREFIX and
  62.  * EXEC_PREFIX are used (even though they will not work); python carries on
  63.  * as best as is possible, but most imports will fail.
  64.  *
  65.  * Before any searches are done, the location of the executable is
  66.  * determined.  If argv[0] has one or more slashs in it, it is used
  67.  * unchanged.  Otherwise, it must have been invoked from the shell's path,
  68.  * so we search $PATH for the named executable and use that.  If the
  69.  * executable was not found on $PATH (or there was no $PATH environment
  70.  * variable), the original argv[0] string is used.
  71.  *
  72.  * Next, the executable location is examined to see if it is a symbolic
  73.  * link.  If so, the link is chased (correctly interpreting a relative
  74.  * pathname if one is found) and the directory of the link target is used.
  75.  *
  76.  * Finally, argv0_path is set to the directory containing the executable
  77.  * (i.e. the last component is stripped).
  78.  *
  79.  * With argv0_path in hand, we perform a number of steps.  The same steps
  80.  * are performed for prefix and for exec_prefix, but with a different
  81.  * landmark.
  82.  *
  83.  * Step 1. Are we running python out of the build directory?  This is
  84.  * checked by looking for a different kind of landmark relative to
  85.  * argv0_path.  For prefix, the landmark's path is derived from the VPATH
  86.  * preprocessor variable (taking into account that its value is almost, but
  87.  * not quite, what we need).  For exec_prefix, the landmark is
  88.  * Modules/Setup.  If the landmark is found, we're done.
  89.  *
  90.  * For the remaining steps, the prefix landmark will always be
  91.  * lib/python$VERSION/string.py and the exec_prefix will always be
  92.  * lib/python$VERSION/lib-dynload, where $VERSION is Python's version
  93.  * number as supplied by the Makefile.  Note that this means that no more
  94.  * build directory checking is performed; if the first step did not find
  95.  * the landmarks, the assumption is that python is running from an
  96.  * installed setup.
  97.  *
  98.  * Step 2. See if the $PYTHONHOME environment variable points to the
  99.  * installed location of the Python libraries.  If $PYTHONHOME is set, then
  100.  * it points to prefix and exec_prefix.  $PYTHONHOME can be a single
  101.  * directory, which is used for both, or the prefix and exec_prefix
  102.  * directories separated by a colon.
  103.  *
  104.  * Step 3. Try to find prefix and exec_prefix relative to argv0_path,
  105.  * backtracking up the path until it is exhausted.  This is the most common
  106.  * step to succeed.  Note that if prefix and exec_prefix are different,
  107.  * exec_prefix is more likely to be found; however if exec_prefix is a
  108.  * subdirectory of prefix, both will be found.
  109.  *
  110.  * Step 4. Search the directories pointed to by the preprocessor variables
  111.  * PREFIX and EXEC_PREFIX.  These are supplied by the Makefile but can be
  112.  * passed in as options to the configure script.
  113.  *
  114.  * That's it!
  115.  *
  116.  * Well, almost.  Once we have determined prefix and exec_prefix, the
  117.  * preprocesor variable PYTHONPATH is used to construct a path.  Each
  118.  * relative path on PYTHONPATH is prefixed with prefix.  Then the directory
  119.  * containing the shared library modules is appended.  The environment
  120.  * variable $PYTHONPATH is inserted in front of it all.  Finally, the
  121.  * prefix and exec_prefix globals are tweaked so they reflect the values
  122.  * expected by other code, by stripping the "lib/python$VERSION/..." stuff
  123.  * off.  If either points to the build directory, the globals are reset to
  124.  * the corresponding preprocessor variables (so sys.prefix will reflect the
  125.  * installation location, even though sys.path points into the build
  126.  * directory).  This seems to make more sense given that currently the only
  127.  * known use of sys.prefix and sys.exec_prefix is for the ILU installation
  128.  * process to find the installed Python tree.
  129.  */
  130.  
  131. #ifndef VERSION
  132. #define VERSION "1.5"
  133. #endif
  134.  
  135. #ifndef VPATH
  136. #define VPATH "."
  137. #endif
  138.  
  139. #ifndef PREFIX
  140. #define PREFIX "/usr/local"
  141. #endif
  142.  
  143. #ifndef EXEC_PREFIX
  144. #define EXEC_PREFIX PREFIX
  145. #endif
  146.  
  147. #ifndef PYTHONPATH
  148. /* I know this isn't K&R C, but the Makefile specifies it anyway */
  149. #define PYTHONPATH PREFIX "/lib/python" VERSION ":" \
  150.           EXEC_PREFIX "/lib/python" VERSION "/lib-dynload"
  151. #endif
  152.  
  153. #ifndef LANDMARK
  154. #define LANDMARK "string.py"
  155. #endif
  156.  
  157. static char prefix[MAXPATHLEN+1];
  158. static char exec_prefix[MAXPATHLEN+1];
  159. static char progpath[MAXPATHLEN+1];
  160. static char *module_search_path = NULL;
  161. static char lib_python[20]; /* Dynamically set to "lib/python" VERSION */
  162.  
  163. static void
  164. reduce(dir)
  165.     char *dir;
  166. {
  167.     int i = strlen(dir);
  168.     while (i > 0 && dir[i] != SEP)
  169.         --i;
  170.     dir[i] = '\0';
  171. }
  172.  
  173.  
  174. #ifndef S_ISREG
  175. #define S_ISREG(x) (((x) & S_IFMT) == S_IFREG)
  176. #endif
  177.  
  178. #ifndef S_ISDIR
  179. #define S_ISDIR(x) (((x) & S_IFMT) == S_IFDIR)
  180. #endif
  181.  
  182. static int
  183. isfile(filename)        /* Is file, not directory */
  184.     char *filename;
  185. {
  186.     struct stat buf;
  187.     if (stat(filename, &buf) != 0)
  188.         return 0;
  189.     if (!S_ISREG(buf.st_mode))
  190.         return 0;
  191.     return 1;
  192. }
  193.  
  194.  
  195. static int
  196. ismodule(filename)        /* Is module -- check for .pyc/.pyo too */
  197.     char *filename;
  198. {
  199.     if (isfile(filename))
  200.         return 1;
  201.  
  202.     /* Check for the compiled version of prefix. */
  203.     if (strlen(filename) < MAXPATHLEN) {
  204.         strcat(filename, Py_OptimizeFlag ? "o" : "c");
  205.         if (isfile(filename))
  206.             return 1;
  207.     }
  208.     return 0;
  209. }
  210.  
  211.  
  212. static int
  213. isxfile(filename)        /* Is executable file */
  214.     char *filename;
  215. {
  216.     struct stat buf;
  217.     if (stat(filename, &buf) != 0)
  218.         return 0;
  219.     if (!S_ISREG(buf.st_mode))
  220.         return 0;
  221.     if ((buf.st_mode & 0111) == 0)
  222.         return 0;
  223.     return 1;
  224. }
  225.  
  226.  
  227. static int
  228. isdir(filename)            /* Is directory */
  229.     char *filename;
  230. {
  231.     struct stat buf;
  232.     if (stat(filename, &buf) != 0)
  233.         return 0;
  234.     if (!S_ISDIR(buf.st_mode))
  235.         return 0;
  236.     return 1;
  237. }
  238.  
  239.  
  240. static void
  241. joinpath(buffer, stuff)
  242.     char *buffer;
  243.     char *stuff;
  244. {
  245.     int n, k;
  246.     if (stuff[0] == SEP)
  247.         n = 0;
  248.     else {
  249.         n = strlen(buffer);
  250.         if (n > 0 && buffer[n-1] != SEP && n < MAXPATHLEN)
  251.             buffer[n++] = SEP;
  252.     }
  253.     k = strlen(stuff);
  254.     if (n + k > MAXPATHLEN)
  255.         k = MAXPATHLEN - n;
  256.     strncpy(buffer+n, stuff, k);
  257.     buffer[n+k] = '\0';
  258. }
  259.  
  260.  
  261. static int
  262. search_for_prefix(argv0_path, home)
  263.     char *argv0_path;
  264.     char *home;
  265. {
  266.     int n;
  267.     char *vpath;
  268.  
  269.     /* Check to see if argv[0] is in the build directory */
  270.     strcpy(prefix, argv0_path);
  271.     joinpath(prefix, "Modules/Setup");
  272.     if (isfile(prefix)) {
  273.         /* Check VPATH to see if argv0_path is in the build directory.
  274.          * Complication: the VPATH passed in is relative to the
  275.          * Modules build directory and points to the Modules source
  276.          * directory; we need it relative to the build tree and
  277.          * pointing to the source tree.  Solution: chop off a leading
  278.          * ".." (but only if it's there -- it could be an absolute
  279.          * path) and chop off the final component (assuming it's
  280.          * "Modules").
  281.          */
  282.         vpath = VPATH;
  283.         if (vpath[0] == '.' && vpath[1] == '.' && vpath[2] == '/')
  284.             vpath += 3;
  285.         strcpy(prefix, argv0_path);
  286.         joinpath(prefix, vpath);
  287.         reduce(prefix);
  288.         joinpath(prefix, "Lib");
  289.         joinpath(prefix, LANDMARK);
  290.         if (ismodule(prefix))
  291.             return -1;
  292.     }
  293.  
  294.     if (home) {
  295.         /* Check $PYTHONHOME */
  296.         char *delim;
  297.         strcpy(prefix, home);
  298.         delim = strchr(prefix, DELIM);
  299.         if (delim)
  300.             *delim = '\0';
  301.         joinpath(prefix, lib_python);
  302.         joinpath(prefix, LANDMARK);
  303.         if (ismodule(prefix))
  304.             return 1;
  305.     }
  306.  
  307.     /* Search from argv0_path, until root is found */
  308.     strcpy(prefix, argv0_path);
  309.     do {
  310.         n = strlen(prefix);
  311.         joinpath(prefix, lib_python);
  312.         joinpath(prefix, LANDMARK);
  313.         if (ismodule(prefix))
  314.             return 1;
  315.         prefix[n] = '\0';
  316.         reduce(prefix);
  317.     } while (prefix[0]);
  318.  
  319.     /* Look at configure's PREFIX */
  320.     strcpy(prefix, PREFIX);
  321.     joinpath(prefix, lib_python);
  322.     joinpath(prefix, LANDMARK);
  323.     if (ismodule(prefix))
  324.         return 1;
  325.  
  326.     /* Fail */
  327.     return 0;
  328. }
  329.  
  330.  
  331. static int
  332. search_for_exec_prefix(argv0_path, home)
  333.     char *argv0_path;
  334.     char *home;
  335. {
  336.     int n;
  337.  
  338.     /* Check to see if argv[0] is in the build directory */
  339.     strcpy(exec_prefix, argv0_path);
  340.     joinpath(exec_prefix, "Modules/Setup");
  341.     if (isfile(exec_prefix)) {
  342.         reduce(exec_prefix);
  343.         return -1;
  344.     }
  345.  
  346.     if (home) {
  347.         /* Check $PYTHONHOME */
  348.         char *delim;
  349.         delim = strchr(home, DELIM);
  350.         if (delim)
  351.             strcpy(exec_prefix, delim+1);
  352.         else
  353.             strcpy(exec_prefix, home);
  354.         joinpath(exec_prefix, lib_python);
  355.         joinpath(exec_prefix, "lib-dynload");
  356.         if (isdir(exec_prefix))
  357.             return 1;
  358.     }
  359.  
  360.     /* Search from argv0_path, until root is found */
  361.     strcpy(exec_prefix, argv0_path);
  362.     do {
  363.         n = strlen(exec_prefix);
  364.         joinpath(exec_prefix, lib_python);
  365.         joinpath(exec_prefix, "lib-dynload");
  366.         if (isdir(exec_prefix))
  367.             return 1;
  368.         exec_prefix[n] = '\0';
  369.         reduce(exec_prefix);
  370.     } while (exec_prefix[0]);
  371.  
  372.     /* Look at configure's EXEC_PREFIX */
  373.     strcpy(exec_prefix, EXEC_PREFIX);
  374.     joinpath(exec_prefix, lib_python);
  375.     joinpath(exec_prefix, "lib-dynload");
  376.     if (isdir(exec_prefix))
  377.         return 1;
  378.  
  379.     /* Fail */
  380.     return 0;
  381. }
  382.  
  383.  
  384. static void
  385. calculate_path()
  386. {
  387.     extern char *Py_GetProgramName();
  388.  
  389.     static char delimiter[2] = {DELIM, '\0'};
  390.     static char separator[2] = {SEP, '\0'};
  391.     char *pythonpath = PYTHONPATH;
  392.     char *rtpypath = getenv("PYTHONPATH");
  393.     char *home = Py_GetPythonHome();
  394.     char *path = getenv("PATH");
  395.     char *prog = Py_GetProgramName();
  396.     char argv0_path[MAXPATHLEN+1];
  397.     int pfound, efound; /* 1 if found; -1 if found build directory */
  398.     char *buf;
  399.     int bufsz;
  400.     int prefixsz;
  401.     char *defpath = pythonpath;
  402. #ifdef WITH_NEXT_FRAMEWORK
  403.         NSModule pythonModule;
  404. #endif
  405.     
  406. #ifdef WITH_NEXT_FRAMEWORK
  407.         pythonModule = NSModuleForSymbol(NSLookupAndBindSymbol("_Py_Initialize"));
  408.     /* Use dylib functions to find out where the framework was loaded from */
  409.         buf = NSLibraryNameForModule(pythonModule);
  410.         if (buf != NULL) {
  411.             /* We're in a framework. */
  412.             strcpy(progpath, buf);
  413.  
  414.             /* Frameworks have support for versioning */
  415.             strcpy(lib_python, "lib");
  416.         } else {
  417.             /* If we're not in a framework, fall back to the old way (even though NSNameOfModule() probably does the same thing.) */
  418. #endif
  419.     
  420.     /* Initialize this dynamically for K&R C */
  421.     sprintf(lib_python, "lib/python%s", VERSION);
  422.  
  423.     /* If there is no slash in the argv0 path, then we have to
  424.      * assume python is on the user's $PATH, since there's no
  425.      * other way to find a directory to start the search from.  If
  426.      * $PATH isn't exported, you lose.
  427.      */
  428.     if (strchr(prog, SEP))
  429.         strcpy(progpath, prog);
  430.     else if (path) {
  431.         while (1) {
  432.             char *delim = strchr(path, DELIM);
  433.  
  434.             if (delim) {
  435.                 int len = delim - path;
  436.                 strncpy(progpath, path, len);
  437.                 *(progpath + len) = '\0';
  438.             }
  439.             else
  440.                 strcpy(progpath, path);
  441.  
  442.             joinpath(progpath, prog);
  443.             if (isxfile(progpath))
  444.                 break;
  445.  
  446.             if (!delim) {
  447.                 progpath[0] = '\0';
  448.                 break;
  449.             }
  450.             path = delim + 1;
  451.         }
  452.     }
  453.     else
  454.         progpath[0] = '\0';
  455. #ifdef WITH_NEXT_FRAMEWORK
  456.         }
  457. #endif
  458.  
  459.     strcpy(argv0_path, progpath);
  460.     
  461. #if HAVE_READLINK
  462.     {
  463.         char tmpbuffer[MAXPATHLEN+1];
  464.         int linklen = readlink(progpath, tmpbuffer, MAXPATHLEN);
  465.         while (linklen != -1) {
  466.             /* It's not null terminated! */
  467.             tmpbuffer[linklen] = '\0';
  468.             if (tmpbuffer[0] == SEP)
  469.                 strcpy(argv0_path, tmpbuffer);
  470.             else {
  471.                 /* Interpret relative to progpath */
  472.                 reduce(argv0_path);
  473.                 joinpath(argv0_path, tmpbuffer);
  474.             }
  475.             linklen = readlink(argv0_path, tmpbuffer, MAXPATHLEN);
  476.         }
  477.     }
  478. #endif /* HAVE_READLINK */
  479.  
  480.     reduce(argv0_path);
  481.  
  482.     if (!(pfound = search_for_prefix(argv0_path, home))) {
  483.         if (!Py_FrozenFlag)
  484.         fprintf(stderr,
  485.            "Could not find platform independent libraries <prefix>\n");
  486.         strcpy(prefix, PREFIX);
  487.         joinpath(prefix, lib_python);
  488.     }
  489.     else
  490.         reduce(prefix);
  491.     
  492.     if (!(efound = search_for_exec_prefix(argv0_path, home))) {
  493.         if (!Py_FrozenFlag)
  494.         fprintf(stderr,
  495.         "Could not find platform dependent libraries <exec_prefix>\n");
  496.         strcpy(exec_prefix, EXEC_PREFIX);
  497.         joinpath(exec_prefix, "lib/lib-dynload");
  498.     }
  499.     /* If we found EXEC_PREFIX do *not* reduce it!  (Yet.) */
  500.  
  501.     if ((!pfound || !efound) && !Py_FrozenFlag)
  502.         fprintf(stderr,
  503.          "Consider setting $PYTHONHOME to <prefix>[:<exec_prefix>]\n");
  504.  
  505.     /* Calculate size of return buffer.
  506.      */
  507.     bufsz = 0;
  508.  
  509.     if (rtpypath)
  510.         bufsz += strlen(rtpypath) + 1;
  511.  
  512.     prefixsz = strlen(prefix) + 1;
  513.  
  514.     while (1) {
  515.         char *delim = strchr(defpath, DELIM);
  516.  
  517.         if (defpath[0] != SEP)
  518.             /* Paths are relative to prefix */
  519.             bufsz += prefixsz;
  520.  
  521.         if (delim)
  522.             bufsz += delim - defpath + 1;
  523.         else {
  524.             bufsz += strlen(defpath) + 1;
  525.             break;
  526.         }
  527.         defpath = delim + 1;
  528.     }
  529.  
  530.     bufsz += strlen(exec_prefix) + 1;
  531.  
  532.     /* This is the only malloc call in this file */
  533.     buf = malloc(bufsz);
  534.  
  535.     if (buf == NULL) {
  536.         /* We can't exit, so print a warning and limp along */
  537.         fprintf(stderr, "Not enough memory for dynamic PYTHONPATH.\n");
  538.         fprintf(stderr, "Using default static PYTHONPATH.\n");
  539.         module_search_path = PYTHONPATH;
  540.     }
  541.     else {
  542.         /* Run-time value of $PYTHONPATH goes first */
  543.         if (rtpypath) {
  544.             strcpy(buf, rtpypath);
  545.             strcat(buf, delimiter);
  546.         }
  547.         else
  548.             buf[0] = '\0';
  549.  
  550.         /* Next goes merge of compile-time $PYTHONPATH with
  551.          * dynamically located prefix.
  552.          */
  553.         defpath = pythonpath;
  554.         while (1) {
  555.             char *delim = strchr(defpath, DELIM);
  556.  
  557.             if (defpath[0] != SEP) {
  558.                 strcat(buf, prefix);
  559.                 strcat(buf, separator);
  560.             }
  561.  
  562.             if (delim) {
  563.                 int len = delim - defpath + 1;
  564.                 int end = strlen(buf) + len;
  565.                 strncat(buf, defpath, len);
  566.                 *(buf + end) = '\0';
  567.             }
  568.             else {
  569.                 strcat(buf, defpath);
  570.                 break;
  571.             }
  572.             defpath = delim + 1;
  573.         }
  574.         strcat(buf, delimiter);
  575.  
  576.         /* Finally, on goes the directory for dynamic-load modules */
  577.         strcat(buf, exec_prefix);
  578.  
  579.         /* And publish the results */
  580.         module_search_path = buf;
  581.     }
  582.  
  583.     /* Reduce prefix and exec_prefix to their essence,
  584.      * e.g. /usr/local/lib/python1.5 is reduced to /usr/local.
  585.      * If we're loading relative to the build directory,
  586.      * return the compiled-in defaults instead.
  587.      */
  588.     if (pfound > 0) {
  589.         reduce(prefix);
  590.         reduce(prefix);
  591.     }
  592.     else
  593.         strcpy(prefix, PREFIX);
  594.  
  595.     if (efound > 0) {
  596.         reduce(exec_prefix);
  597.         reduce(exec_prefix);
  598.         reduce(exec_prefix);
  599.     }
  600.     else
  601.         strcpy(exec_prefix, EXEC_PREFIX);
  602. }
  603.  
  604.  
  605. /* External interface */
  606.  
  607. char *
  608. Py_GetPath()
  609. {
  610.     if (!module_search_path)
  611.         calculate_path();
  612.     return module_search_path;
  613. }
  614.  
  615. char *
  616. Py_GetPrefix()
  617. {
  618.     if (!module_search_path)
  619.         calculate_path();
  620.     return prefix;
  621. }
  622.  
  623. char *
  624. Py_GetExecPrefix()
  625. {
  626.     if (!module_search_path)
  627.         calculate_path();
  628.     return exec_prefix;
  629. }
  630.  
  631. char *
  632. Py_GetProgramFullPath()
  633. {
  634.     if (!module_search_path)
  635.         calculate_path();
  636.     return progpath;
  637. }
  638.  
  639. #else /* !WITHOUT_GETPATH */
  640.  
  641. char *
  642. Py_GetPath()
  643. {
  644.     return "/a/path:/somewhere";
  645. }
  646.  
  647. char *
  648. Py_GetPrefix()
  649. {
  650.     return "prefix/dummy";
  651. }
  652.  
  653. char *
  654. Py_GetExecPrefix()
  655. {
  656.     return "exec_prefix/dummy";
  657. }
  658.  
  659. char *
  660. Py_GetProgramFullPath()
  661. {
  662.     return "/fullpath_dummy:/dummy";
  663. }
  664. #endif /* !WITHOUT_GETPATH */
  665.  
  666.