diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-11-03 22:45:08 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-11-04 23:15:12 +0100 |
commit | 66dc1570db7dc80b3f6b23556ef65186a0a0ea8d (patch) | |
tree | a2eed555991dfbc7aa434207f3076ac99d4ebfd5 /tests | |
parent | c37b66aaaed0a36bcb1b19596e897d7ac6219611 (diff) |
symbols-in-versions: add missing CURLU_ symbols
...and fix symbol-scan.pl to also scan urlapi.h
Reported-by: Alexey Melnichuk
Fixes #3226
Closes #3230
Diffstat (limited to 'tests')
-rwxr-xr-x | tests/symbol-scan.pl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/symbol-scan.pl b/tests/symbol-scan.pl index 5d570d8a8..6706aa707 100755 --- a/tests/symbol-scan.pl +++ b/tests/symbol-scan.pl @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 2010-2011, Daniel Stenberg, <daniel@haxx.se>, et al. +# Copyright (C) 2010-2018, Daniel Stenberg, <daniel@haxx.se>, et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -53,6 +53,7 @@ my $i = ($ARGV[1]) ? "-I$ARGV[1] " : ''; my $h = "$root/include/curl/curl.h"; my $mh = "$root/include/curl/multi.h"; +my $ua = "$root/include/curl/urlapi.h"; my $verbose=0; my $summary=0; @@ -87,6 +88,7 @@ sub scanheader { scanheader($h); scanheader($mh); +scanheader($ua); open S, "<$root/docs/libcurl/symbols-in-versions"; while(<S>) { |