You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
rather than invoking pkg-config multiple times to check for libraries,
this invokes it just once.
the error message before this change (by changing imlib2 to imlib22 in
configure.ac):
checking for imlib22... no
configure: error: Package requirements (imlib22) were not met:
pkg-config: could not find package 'imlib22'
the error message after this change (by changing imlib2 to imlib22 in
deps.pc):
checking for ./deps.pc... no
configure: error: Package requirements (./deps.pc) were not met:
pkg-config: could not find package 'imlib22'
so there's no real loss of functionality here.
the reason for using `deps.pc` rather than just adding multiple
libraries in a single PKG_CHECK_MODULES is to reduce dependency on
autoconf.
additionally move the _XOPEN_SOURCE flag to deps.pc.
0 commit comments