Browse Source

build: fix objcc header check

$headers is a variable set in the context of other functions (we don't
use the "local" keyword in our scripts, so those variables are global).

Currently, when checking for AVFoundation/AVFoundation.h, the actual
enabled header is math.h.

Similarly, when testing for QuartzCore/CoreImage.h, the actual enabled
header is CoreGraphics/CoreGraphics.h.

This is completely broken and may be the reason why these checks are
made in random places.
tags/n3.4
Clément Bœsch Clément Bœsch 8 years ago
parent
commit
b476e7720c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      configure

+ 1
- 1
configure View File

@@ -1118,7 +1118,7 @@ check_header_objcc(){
{
echo "#include <$header>"
echo "int main(void) { return 0; }"
} | check_objcc && check_stat "$TMPO" && enable_safe $headers
} | check_objcc && check_stat "$TMPO" && enable_safe $header
}

check_func(){


Loading…
Cancel
Save