Wed Oct 20 14:55:06 PDT 1999

(Mandrake)

Yet Another OS/2 patch
this time in misc.c


SVN revision: 901
This commit is contained in:
Mandrake 1999-10-20 15:40:02 +00:00
parent b4b2d52c31
commit 6910c137ee
2 changed files with 24 additions and 0 deletions

View File

@ -3668,3 +3668,11 @@ Wed Oct 20 13:25:24 PDT 1999
new TODO file. please take a look at http://enlightenment.org/todo.html
(the page that is generated by this file)
-------------------------------------------------------------------------------
Wed Oct 20 14:55:06 PDT 1999
(Mandrake)
Yet Another OS/2 patch
this time in misc.c

View File

@ -21,6 +21,10 @@
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
#include "E.h"
#ifdef __EMX__
extern char *__XOS2RedirRoot(const char *);
#endif
void EdgeTimeout(int val, void *data);
@ -46,7 +50,11 @@ BlumFlimFrub(void)
for (i = 0; i < 3; i++)
{
#ifndef __EMX__
Esnprintf(s, sizeof(s), "%s/%s", ENLIGHTENMENT_BIN, bins[i]);
#else
Esnprintf(s, sizeof(s), "%s/%s", __XOS2RedirRoot(ENLIGHTENMENT_BIN), bins[i]);
#endif
if (!exists(s))
{
Alert("!!!!!!!! ERROR ERROR ERROR ERROR !!!!!!!!\n"
@ -79,7 +87,11 @@ BlumFlimFrub(void)
}
for (i = 0; i < 3; i++)
{
#ifndef __EMX__
Esnprintf(s, sizeof(s), "%s/%s", ENLIGHTENMENT_ROOT, docs[i]);
#else
Esnprintf(s, sizeof(s), "%s/%s", __XOS2RedirRoot(ENLIGHTENMENT_ROOT), docs[i]);
#endif
if (!exists(s))
{
Alert("!!!!!!!! ERROR ERROR ERROR ERROR !!!!!!!!\n"
@ -98,7 +110,11 @@ BlumFlimFrub(void)
}
for (i = 0; i < 1; i++)
{
#ifndef __EMX__
Esnprintf(s, sizeof(s), "%s/%s", ENLIGHTENMENT_ROOT, thms[i]);
#else
Esnprintf(s, sizeof(s), "%s/%s", __XOS2RedirRoot(ENLIGHTENMENT_ROOT), thms[i]);
#endif
if (!exists(s))
{
Alert("!!!!!!!! ERROR ERROR ERROR ERROR !!!!!!!!\n"