Assume everything different from .h files has to be checked verbatim.
---
 configure | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/configure b/configure
index 49f1e73..5b4b433 100755
--- a/configure
+++ b/configure
@@ -865,7 +865,12 @@ check_func_headers(){
     shift 2
     {
         for hdr in $headers; do
-            echo "#include <$hdr>"
+            case $hdr in
+            *.h)
+                echo "#include <$hdr>"
+                ;;
+            *) echo "#include $hdr"
+            esac
         done
         for func in $funcs; do
             echo "long check_$func(void) { return (long) $func; }"
-- 
1.8.5.1

_______________________________________________
libav-devel mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-devel

Reply via email to