On 14/09/2021 12:49, Fabian Groffen wrote:
> Is it possible to first check for PCRE2_CONFIG and then bark when
> PCRE_CONFIG is found? papua has both installed, but since I cannot
> change config per branch, if I could set both PCRE2_CONFIG and
> PCRE_CONFIG, both old and new strategies could run.
Per-branch config can be done in the config file. Just before the last line
add something like:
if ($branch eq '4.next')
{
# $conf{makefile_add}{CFLAGS} .= ' -std=c99 -D_BSD_SOURCE -D_POSIX_SOURCE';
}
--
Cheers,
Jeremy