We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Not sure about this one, but in raylib-definitions.scm line 28 you have
((flag-show-logo config-flag/flag-show-logo) FLAG_SHOW_LOGO)
which will bail out during chicken-install with:
retrieving ... checking platform for `raylib-scm' ... checking dependencies for `raylib-scm' ... mapped (foreign lolevel) to () install order: ("raylib-scm") installing raylib-scm: ... changing current directory to . '/usr/bin/csi' -bnq -setup-mode -e "(require-library setup-api)" -e "(import setup-api)" -e "(setup-error-handling)" -e "(extension-name-and-version '(\"raylib-scm\" \"\"))" 'raylib-scm.setup' '/usr/bin/csc' -feature compiling-extension -setup-mode -s -O3 -d1 raylib-scm.scm -j raylib-scm `pkg-config --libs raylib` In file included from raylib-scm.c:11:0: raylib-scm.c: In function ‘f_3804’: raylib-scm.c:13326:48: error: ‘FLAG_SHOW_LOGO’ undeclared (first use in this function) if(C_truep(C_i_nequalp(t2,C_fix(0xffff&(C_word)FLAG_SHOW_LOGO)))){ ^ ....
I commented out the line, everything compiles and the demos run. Maybe this flag is deprecated meanwhile from raylib?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Not sure about this one, but in raylib-definitions.scm line 28 you have
which will bail out during chicken-install with:
I commented out the line, everything compiles and the demos run. Maybe this flag is deprecated meanwhile from raylib?
The text was updated successfully, but these errors were encountered: