>>>>> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:
Angus> Jean-Marc Lasgouttes wrote: >> - what is the intent of using "../share" in non-posix packagings? >> To >> make things work when the packaging was actually posix? I think we >> should rather alow people to use --with-packaging=posix on osx or >> win32, when they actually want that. The nice thing about it is that >> configure will set the makefile variables correctly. Angus> Sorry, I don't follow you. Angus> Following you other suggestions, I currently have: In what you sent, I have: // The list of possible directories are relative to the path of the LyX binary. list<string> const possible_relative_system_lyxdirs() { list<string> results; #if defined (USE_WINDOWS_PACKAGING) results.push_back("../share/"); #elif defined (USE_OSX_PACKAGING) results.push_back("../Resources/"); results.push_back("../share/"); #else // Posix-like. results.push_back("../share/"); #endif return results; } Is it the same version? JMarc