]> granicus.if.org Git - php/commit
Fix shared module generation on AIX bug #77676
authorKevin Adler <kadler@us.ibm.com>
Mon, 18 Feb 2019 17:01:23 +0000 (11:01 -0600)
committerPeter Kokot <peterkokot@gmail.com>
Sat, 2 Mar 2019 17:45:55 +0000 (18:45 +0100)
commit700f876a1ae5957bda027b36b1fdf3ffdbe57f6f
tree4a74f26cb60ab373c5e0a534d4e8123dd3c43063
parentc39fb1fc4f1cf33e0d0c633f289c1c47f179e87a
Fix shared module generation on AIX bug #77676

Makefiles for PHP extensions generated by phpize expect the PHP_MODULES
to contain a list of libtool .la files so that it can read the $dlname
variable from them by sourcing them in to a shell. On AIX, the code was
setting PHP_MODULES to a list of .so files, which meant the dlname was
blank, preventing the tests from being able to run.

Change the AIX code path in the PHP_SHARED_MODULE macro to match the
output on other platforms, using libtool .la files.
acinclude.m4