postgresql: add missing perl build dependency (#49417)

Without it, the build fails with errors like this:
```
Can't locate File/Compare.pm in @INC (you may need to install the File::Compare module) (@INC contains: ...) at ../../../src/backend/catalog/Catalog.pm line 19.
```
This commit is contained in:
Michael Kuhn 2025-03-11 21:51:22 +01:00 committed by GitHub
parent 07ec8a9ba3
commit ba4fd64caa
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,8 +75,9 @@ class Postgresql(AutotoolsPackage):
depends_on("perl+opcode", when="+perl")
depends_on("python", when="+python")
depends_on("libxml2", when="+xml")
depends_on("flex", when="@17:")
depends_on("bison", when="@17:")
depends_on("perl", when="@17:", type="build")
depends_on("flex", when="@17:", type="build")
depends_on("bison", when="@17:", type="build")
depends_on("pkgconfig", when="+xml", type="build")
@property