csete / gpredict

Gpredict satellite tracking application
http://gpredict.oz9aec.net/
GNU General Public License v2.0
829 stars 245 forks source link

gpredict does not build with MUSL libc #327

Open dl1jbe opened 1 year ago

dl1jbe commented 1 year ago

Compiling under MUSL libc fails with 'implicit-function-declaration' for 'gethostbyname()' in gtk-rig.ctrl.c and gtk-rot-ctrl.c.

Further investigation shows that both files need the following feature macro to be defined:

ifndef _GNU_SOURCE

define _GNU_SOURCE

endif

Under MUSL netdb.h exports gethostbyname() only if the macro is defined.