Changes between Initial Version and Version 1 of Ticket #66914, comment 10


Ignore:
Timestamp:
Feb 22, 2023, 2:25:48 PM (15 months ago)
Author:
MSoegtropIMC
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #66914, comment 10

    initial v1  
    11It does compile now and start (didn't test much as yet) but I get an error dialog stating that maxima was not found as /Applications/maxima or /Applications/Maxima. A while back I introduced the defines OSX_MACPORTS_PREFIX and OSX_MACPORTS_PREFER, which are patched by the port file to the proper values. If OSX_MACPORTS_PREFER is 1, one can assume that maxima is found under OSX_MACPORTS_PREFIX "/bin/maxima" and that this is the preferred location. So in
    22
     3{{{
    34#if OSX_MACPORTS_PREFER
    45  wxLogMessage(notFound, maximaLocation.mb_str());
     
    78    return maximaLocation;
    89#endif
     10}}}
    911
    1012the wxLogMessage does not make sense - at least not before one checked if maxima is there.