Ticket #5554: macosx-webmod-login.patch

File macosx-webmod-login.patch, 1.0 KB (added by joe@…, 19 years ago)

login patch

  • hula/src/modules/mail/mwmail.c

     
    4040
    4141#include "mwmail.h"
    4242
     43#ifdef MACOSX
     44/* Completely hackish solution to solve the extern issue on Mac OS X, !Temporary Solution! */
     45void MMSGLISTInit(MWAPIArg);
     46#endif
     47
    4348/* Globals */
    4449BOOL MwMailUnloadOK = TRUE;
    4550MwMailGlobal MwMail;
     
    35013506
    35023507                        MWAPISet;
    35033508
     3509#ifdef MACOSX
     3510                        MMSGLISTInit(MWAPI);
     3511#endif
    35043512                        MwMail.TimeStamp = time(NULL);
    35053513
    35063514                        ReadMailConfiguration();
  • hula/src/modules/mail/mmsglist.c

     
    11801180        }
    11811181        return(FALSE);
    11821182}
     1183
     1184#ifdef MACOSX
     1185/* Completely hackish solution to fix the extern linking problem on OS X. !Temporary Fix! !!!FIXME!!! */
     1186void MMSGLISTInit(MWAPIArg) {
     1187    MWAPISet;
     1188}
     1189#endif