Expand pgrminclude to exclude use of macros CppAsString and CppConcat.

This commit is contained in:
Bruce Momjian 2011-09-24 09:24:14 -04:00
parent 0126db2a46
commit 337c0b0361
1 changed files with 2 additions and 2 deletions

View File

@ -43,8 +43,8 @@ compile_file() {
[ "$INCLUDE" = "postgres_fe.h" ] && continue
[ "$INCLUDE" = "pg_config.h" ] && continue
[ "$INCLUDE" = "c.h" ] && continue
# CppAsString2 will expand undefined identifiers, so skip files that use it
grep -q '\<CppAsString2\>' "$FILE" && continue
# Stringify macros will expand undefined identifiers, so skip files that use it
egrep -q '\<(CppAsString2?|CppConcat)\>' "$FILE" && continue
# preserve configure-specific includes
# these includes are surrounded by #ifdef's