diff options
author | Ricardo Constantino <wiiaboo@gmail.com> | 2017-06-23 01:53:37 +0100 |
---|---|---|
committer | wm4 <nfxjfg@googlemail.com> | 2017-07-13 14:06:07 +0200 |
commit | 0bf857a13fd5a9ae1f5c3f15e1d16d91a0213a26 (patch) | |
tree | d5831b8fe7f14609211cff9092cf4a7ef25268cc | |
parent | a82468514048fb87d9bf38689866bc3b9aaccd02 (diff) | |
download | ffmpeg-0bf857a13fd5a9ae1f5c3f15e1d16d91a0213a26.tar.gz |
configure: use pkg-config for libgme, if available
The pkg-config file is relatively new (2013), so some distros might
not have it yet. And the -lstdc++ being required for the static lib
is only present since the last release in December 2016.
-rwxr-xr-x | configure | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -5841,7 +5841,8 @@ enabled fontconfig && enable libfontconfig enabled libfontconfig && require_pkg_config fontconfig "fontconfig/fontconfig.h" FcInit enabled libfreetype && require_pkg_config freetype2 "ft2build.h FT_FREETYPE_H" FT_Init_FreeType enabled libfribidi && require_pkg_config fribidi fribidi.h fribidi_version_info -enabled libgme && require libgme gme/gme.h gme_new_emu -lgme -lstdc++ +enabled libgme && { use_pkg_config libgme gme/gme.h gme_new_emu || + require libgme gme/gme.h gme_new_emu -lgme -lstdc++; } enabled libgsm && { for gsm_hdr in "gsm.h" "gsm/gsm.h"; do check_lib libgsm "${gsm_hdr}" gsm_create -lgsm && break; done || die "ERROR: libgsm not found"; } |