Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unable to compile on MacOS #652

Closed
BssdTS opened this issue Apr 14, 2023 · 0 comments
Closed

Unable to compile on MacOS #652

BssdTS opened this issue Apr 14, 2023 · 0 comments

Comments

@BssdTS
Copy link

BssdTS commented Apr 14, 2023

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 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants