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
Apparently, the resulting binaries try to use an autodetected Windows console, since every example with caca_create_display() fails
The solution is to disable everything, and only keep ncurses:
./configure --prefix=/usr/local --enable-shared --disable-static --disable-kernel --disable-slang --enable-ncurses --disable-win32 --disable-conio --disable-x11 --disable-gl --disable-cocoa --enable-network --disable-vga --disable-csharp --disable-java --disable-imlib2 --disable-debug --disable-profiling --disable-plugins --disable-doc
For img2text and cacaview, files must be created as uncompressed bmp3, for example with imagemagick:
/mingw64/bin/convert snake.jpg -type Optimize -compress none BMP3:snake.bmp
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Apparently, the resulting binaries try to use an autodetected Windows console, since every example with caca_create_display() fails
The solution is to disable everything, and only keep ncurses:
./configure --prefix=/usr/local --enable-shared --disable-static --disable-kernel --disable-slang --enable-ncurses --disable-win32 --disable-conio --disable-x11 --disable-gl --disable-cocoa --enable-network --disable-vga --disable-csharp --disable-java --disable-imlib2 --disable-debug --disable-profiling --disable-plugins --disable-doc
For img2text and cacaview, files must be created as uncompressed bmp3, for example with imagemagick:
/mingw64/bin/convert snake.jpg -type Optimize -compress none BMP3:snake.bmp
The text was updated successfully, but these errors were encountered: