Re: [PHP-DEV] PHP_CHECK_FUNC and shared extension (OCI8)
[email protected] (Sascha Schumann)
| Newsgroups | php.dev |
|---|---|
| Message-ID | <[email protected]> |
> how do I use PHP_CHECK_FUNC to make it work even when the extension is
> shared?
You can manipulate LDFLAGS directly:
php_save=$LDFLAGS
LDFLAGS="-L$dir $LDFLAGS"
.. check ..
LDFLAGS=$php_save
- Sascha