1
0
mirror of https://github.com/samba-team/samba.git synced 2025-10-25 19:33:18 +03:00

r23175: Handle PKG_CONFIG_PATH not set yet - fixes warning in selftest.pl

This commit is contained in:
Jelmer Vernooij
2007-05-28 21:04:59 +00:00
committed by Gerald (Jerry) Carter
parent a6293ab5cb
commit 222acbe33b
3 changed files with 17 additions and 5 deletions

View File

@@ -180,10 +180,10 @@ sub process_file($$$)
}
next unless ( $is_public || $line =~ /
^void|^BOOL|^bool|^int|^struct|^char|^const|^\w+_[tT]\s|^uint|^unsigned|^long|
^NTSTATUS|^ADS_STATUS|^enum\s.*\(|^DATA_BLOB|^WERROR|^XFILE|^FILE|^DIR|
^double|^TDB_CONTEXT|^TDB_DATA|^TALLOC_CTX|^NTTIME|^FN_|^init_module|
^GtkWidget|^GType|^smb_ucs2_t|^krb5_error_code
(_DEPRECATED_ )?^(void|BOOL|bool|int|struct|char|const|\w+_[tT]\s|uint|unsigned|long|NTSTATUS|
ADS_STATUS|enum\s.*\(|DATA_BLOB|WERROR|XFILE|FILE|DIR|
double|TDB_CONTEXT|TDB_DATA|TALLOC_CTX|NTTIME|FN_|init_module|
GtkWidget|GType|smb_ucs2_t|krb5_error_code)
/xo);
next if ($line =~ /^int\s*main/);