[PECL-CVS] [pecl-database-ibm_db2] master: Attempt to support PIE (part of #70)
[email protected] (Calvin Buckley)
| Newsgroups | php.pecl.cvs |
|---|---|
| Message-ID | <[email protected]> |
Author: Calvin Buckley (NattyNarwhal)
Date: 2025-11-26T15:44:40-04:00
Commit: https://github.com/php/pecl-database-ibm_db2/commit/cafae16cbd1980fac9731c79303c57685d9726df
Raw diff: https://github.com/php/pecl-database-ibm_db2/commit/cafae16cbd1980fac9731c79303c57685d9726df.diff
Attempt to support PIE (part of #70)
Changed paths:
A composer.json
Diff:
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..321abb1
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,19 @@
+{
+ "name": "pecl/ibm_db2",
+ "type": "php-ext",
+ "license": "Apache-2.0",
+ "description": "Extension for IBM Db2 (LUW/i/z) and other compatible databases",
+ "require": {
+ "php": ">= 7.3.0"
+ },
+ "php-ext": {
+ "extension-name": "ibm_db2",
+ "configure-options": [
+ {
+ "name": "with-IBM_DB2",
+ "description": "Enable ibm_db2 support. DIR is the path to the DB2 install prefix.",
+ "needs-value": true
+ }
+ ]
+ }
+}