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

meson build fails #28

Open
jshanab opened this issue Jul 21, 2017 · 1 comment
Open

meson build fails #28

jshanab opened this issue Jul 21, 2017 · 1 comment

Comments

@jshanab
Copy link

jshanab commented Jul 21, 2017

When trying gst-build libcaca failed because the macro in caca0.h is of unsupported syntax fro VS
I gurded and changed to the syntax in the documentation for MS to get it to build

#if defined _MSC_VER
  #define caca_printf(x, y, f, ...) caca_printf(__caca0_cv, x, y, f, __VA_ARGS__)
#else
  #define caca_printf(x, y, f, z...) caca_printf(__caca0_cv, x, y, f, ##z)
#endif
@rofl0r
Copy link

rofl0r commented Jul 21, 2017

you should put the pasted part into triple-backquotes, because currently it is interpreted as markdown.
example

```
code goes here
```

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