Module: libav Branch: master Commit: 9d2cee52d37c7340f85a5d41110282aac03e6855
Author: Luca Barbato <[email protected]> Committer: Luca Barbato <[email protected]> Date: Thu Sep 11 15:48:13 2014 +0200 configure: Assume a standard-compliant default libc Non-standard compliant libc should be supported on a per-case basis anyway. --- configure | 3 +++ 1 file changed, 3 insertions(+) diff --git a/configure b/configure index 59dd453..6125bcb 100755 --- a/configure +++ b/configure @@ -3657,6 +3657,9 @@ probe_libc(){ elif check_${pfx}cpp_condition sys/brand.h "defined LABELED_BRAND_NAME"; then eval ${pfx}libc_type=solaris add_${pfx}cppflags -D__EXTENSIONS__ -D_XOPEN_SOURCE=600 + else + eval ${pfx}libc_type=unknown + add_${pfx}cppflags -D_POSIX_C_SOURCE=200112 -D_XOPEN_SOURCE=600 fi } _______________________________________________ libav-commits mailing list [email protected] https://lists.libav.org/mailman/listinfo/libav-commits
