Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-07-10 | ql: refactor full_write to take ctx | Asbjørn Sloth Tønnesen | |
Access to ctx is needed for the next patch | |||
2023-07-10 | ql: rewrite to non-blocking I/O | Asbjørn Sloth Tønnesen | |
2023-07-10 | fix silly usleep(50) | Asbjørn Sloth Tønnesen | |
Increase sleep from 50 μs to 5 ms. | |||
2023-07-10 | fix coding style | Asbjørn Sloth Tønnesen | |
2023-07-10 | add `make fixstyle` | Asbjørn Sloth Tønnesen | |
2023-07-10 | Makefile: fix undefined references | Asbjørn Sloth Tønnesen | |
Compiling gives the following error, since the library is specified before the local objects: $ make […] cc -lpng16 build/main.o build/ql.o build/loadpng.o -o build/qlprint /usr/bin/ld: build/loadpng.o: in function `loadpng': …/src/loadpng.c:30: undefined reference to `png_sig_cmp' /usr/bin/ld: …/src/loadpng.c:35: undefined reference to `png_create_read_struct' /usr/bin/ld: …/src/loadpng.c:39: undefined reference to `png_create_info_struct' /usr/bin/ld: …/src/loadpng.c:43: undefined reference to `png_create_info_struct' […] collect2: error: ld returned 1 exit status make: *** [Makefile:28: build/qlprint] Error 1 After reordering: $ make […] cc build/main.o build/ql.o build/loadpng.o -lpng16 -o build/qlprint | |||
2017-05-31 | Added support for variable timeout. | Johny Mattsson | |
2017-05-31 | Fix wrong dimension check (whoops). | Johny Mattsson | |
2017-05-31 | Only request necessary transforms. | Johny Mattsson | |
2017-05-30 | Initial import. | Johny Mattsson | |
2017-05-30 | Initial commit | Johny Mattsson | |