Kaydet (Commit) 049e760f authored tarafından Thorsten Behrens's avatar Thorsten Behrens

Really disable use of pagein on Mac

 - there was a 2nd dir re-using that pagein object file
üst 8df89e17
......@@ -44,9 +44,11 @@ OBJFILES= \
$(OBJ)$/start.obj \
$(OBJ)$/args.obj
.IF "$(OS)"!="MACOSX"
PAGEIN_OBJS= \
$(OBJ)$/pagein.obj \
$(OBJ)$/file_image_unx.obj
.ENDIF
APP1TARGET = $(TARGET)
APP1RPATH = BRAND
......
......@@ -731,6 +731,10 @@ extern int pagein_execute (int argc, char **argv);
void
exec_pagein (Args *args)
{
// no pagein for the while on OSX
#ifdef MACOSX
(void)args;
#else
char *argv[5];
rtl_String *app_path;
......@@ -750,6 +754,7 @@ exec_pagein (Args *args)
pagein_execute (args->pPageinType ? 4 : 3, argv);
free (argv[1]);
#endif
}
static void extend_library_path (const char *new_element)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment