1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-09-16 09:06:18 +02:00

Use an extension to denote vendorized code.

Vendorized code is copied from another project when a library is not available and a git subproject won't work. Currently all the vendorized code is copied from PostgreSQL but it makes sense to have a more general mechanism for indicating vendorized code.

The .vendor extension will be used to denote vendorized code in the same way that .auto is used to denote auto-generated code.
This commit is contained in:
David Steele
2020-05-18 19:11:26 -04:00
parent a329afd3be
commit 688ec2a8f5
11 changed files with 28 additions and 25 deletions

View File

@@ -311,6 +311,9 @@ sub run
# Skip all files except .c files (including .auto.c)
next if $strFile !~ /(?<!\.auto)\.c$/;
# Skip all files except .c files (including .vendor.c)
next if $strFile !~ /(?<!\.vendor)\.c$/;
# ??? Skip main for now until the function can be renamed to allow unit testing
next if $strFile =~ /main\.c$/;
@@ -335,9 +338,12 @@ sub run
# Don't include the test file as it is already included below
next if $strFile =~ /Test$/;
# Don't any auto files as they are included in their companion C files
# Don't include auto files as they are included in their companion C files
next if $strFile =~ /auto$/;
# Don't include vendor files as they are included in regular C files
next if $strFile =~ /vendor$/;
# Include the C file if it exists
my $strCIncludeFile = "${strFile}.c";