You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
there is an issue with some Apache units when tying to compile a MVCFramework project on MacOS.
(Same problem as issue #551, and it does not appear to be a syntax errror this time around)
Changing the following 'define' in dmvcframework.inc fixes the problem:
Hi,
there is an issue with some Apache units when tying to compile a MVCFramework project on MacOS.
(Same problem as issue #551, and it does not appear to be a syntax errror this time around)
Changing the following 'define' in dmvcframework.inc fixes the problem:
{$DEFINE SYSTEMJSON}
{$IFNDEF MOBILE}
{$DEFINE WEBAPACHEHTTP}
{$ENDIF}
{$DEFINE USEFIREDAC}
to
{$DEFINE SYSTEMJSON}
{$IFNDEF MOBILE}
{$IFNDEF MACOS}
{$DEFINE WEBAPACHEHTTP}
{$ENDIF}
{$ENDIF}
thanks :)
The text was updated successfully, but these errors were encountered: