Changes between Initial Version and Version 1 of Ticket #69522
- Timestamp:
- Mar 16, 2024, 11:42:19 PM (8 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #69522
-
Property
Status
changed from
new
toassigned
- Property Cc i0ntempest added
-
Property
Priority
changed from
High
toNormal
- Property Keywords libmpv library removed
- Property Owner set to Ionic
-
Property
Status
changed from
-
Ticket #69522 – Description
initial v1 1 1 Can't really include the mpv library at any .c file (even adding the +libmpv variant)! Here's a real exemple: 2 2 3 ```shell3 {{{#!shell 4 4 $ sudo make install 5 5 cc -std=c99 -Wall -Wextra -pedantic -Wunused-result -Wno-unused-variable -Os -D_POSIX_C_SOURCE -DTOMATONOISE=\"/usr/local/bin/tomatonoise\" -DLOGPREFIX=\".local/share/tomato\" -DLOGFILE=\".local/share/tomato/tomato.log\" -DTMPFILE=\".local/share/tomato/tmp.log\" -DTIMERFILE=\".local/share/tomato/time.log\" -DNOTEPADFILE=\".local/share/tomato/notepad.log\" -I/usr/local/include -L/usr/local/lib tomatonoise.c `pkg-config --libs ncursesw mpv` -o tomatonoise … … 10 10 make: *** [tomatonoise] Error 1 11 11 Error: Process completed with exit code 2. 12 ``` 12 }}}