Open tpapastylianou opened 10 months ago
There is a bug in the makefile, causing errors (at least with gcc)
The line
gcc -o xtext `pkg-config --cflags --libs pangocairo x11 xfixes` xtext.c
should be
gcc -o xtext xtext.c `pkg-config --cflags --libs pangocairo x11 xfixes`
Otherwise the linker does not resolve symbols properly. (see: https://stackoverflow.com/q/45135/4183191)
There is a bug in the makefile, causing errors (at least with gcc)
The line
should be
Otherwise the linker does not resolve symbols properly. (see: https://stackoverflow.com/q/45135/4183191)