]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
symbol-scan.pl: also check for LIBCURL* symbols
authorDaniel Stenberg <daniel@haxx.se>
Tue, 20 Sep 2022 11:52:33 +0000 (13:52 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 22 Sep 2022 07:43:30 +0000 (09:43 +0200)
Closes #9544

tests/symbol-scan.pl

index 7d7e5fdbaa4a0fb1f2436c5971e37e9edaef4d0e..f091b1257659f4069433e049b851a53b39af3189 100755 (executable)
@@ -83,7 +83,7 @@ sub scanheader {
     my ($f)=@_;
     open H, "<$f";
     while(<H>) {
-        if (/^#define (CURL[A-Za-z0-9_]*)/) {
+        if (/^#define ((LIB|)CURL[A-Za-z0-9_]*)/) {
             push @syms, $1;
         }
     }
@@ -106,7 +106,7 @@ scanallheaders();
 
 open S, "<$root/docs/libcurl/symbols-in-versions";
 while(<S>) {
-    if(/(^CURL[^ \n]*) *(.*)/) {
+    if(/(^[^ \n]*) *(.*)/) {
         my ($sym, $rest)=($1, $2);
         if($doc{$sym}) {
             print "Detected duplicate symbol: $sym\n";