Searched defs:basedir (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Additions/WINNT/Graphics/Wine/libWine/
H A Dconfig.c314 /* check if basedir is a valid build dir by checking for wineserver and ntdll */
316 static inline int is_valid_build_dir( char *basedir, int baselen ) argument
320 strcpy( basedir + baselen, "/server/wineserver" );
321 if (stat( basedir, &st ) == -1) return 0; /* no wineserver found */
323 strcpy( basedir + baselen, "/dlls/ntdll/ntdll.dll.so" );
324 if (stat( basedir, &st ) == -1) return 0; /* no ntdll found */
326 basedir[baselen] = 0;
331 static char *running_from_build_dir( const char *basedir )
336 /* remove last component from basedir */
337 p = basedir
[all...]

Completed in 33 milliseconds