I have no idea what source file to edit or how to ammend the line. I am installing xplanet-1.3.0 on ubuntu 22.04 from source. I have installed the prerequisites as necessary. ./configure works fine. but make gives this error:
g++ -DHAVE_CONFIG_H -I. -I../.. -I../../src -I/usr/include/freetype2 -I/usr/include/libpng16 -g -O2 -MT getTextRenderer.o -MD -MP -MF .deps/getTextRenderer.Tpo -c -o getTextRenderer.o getTextRenderer.cpp
In file included from getTextRenderer.cpp:12:
TextRendererPangoFT2.h:4:10: fatal error: pango/pango.h: No such file or directory
4 | #include <pango/pango.h>
| ^~~~~~~~~~~~~~~
compilation terminated.
I have pango here: /usr/include/pango-1.0/pango/ How is make not seeing it? how do I tell make where it is? or is it some source file that is confused?
I've tried for days searching for something to edit with no success. Any hints what to look for?