First issue: after ./configure --enable-shared && make:
Making all in po
make[2]: Entering directory '/media/ubuntu/home/matt/hack/deb/tmp/blackboxwm/po'
Makefile:604: *** missing separator. Stop.
make[2]: Leaving directory '/media/ubuntu/home/matt/hack/deb/tmp/blackboxwm/po'
make[1]: *** [Makefile:478: all-recursive] Error 1
make[1]: Leaving directory '/media/ubuntu/home/matt/hack/deb/tmp/blackboxwm'
make: *** [Makefile:408: all] Error 2
After fixing po/Makefile manually, we get this error:
CXXLD blackbox
/usr/bin/ld: Window.o: undefined reference to symbol 'XShapeCombineShape'
/usr/bin/ld: /lib/x86_64-linux-gnu/libXext.so.6: error adding symbols: DSO missing from command line
collect2: error: ld returned 1 exit status
First issue: after
./configure --enable-shared && make
:After fixing
po/Makefile
manually, we get this error:The relevant command turns out to be:
If I run that along with "-lX11 -LXext" compilation works (I'm no autotools guru though..)