pcre2/cmake
Carlo Marcelo Arenas Belón 9c8abddc52
pcre2test: really allow using libedit when enabled (#96)
* pcre2test: use the right header for libedit in FreeBSD with autoconf

When `./configure --enable-pcre2test-libedit` is used in FreeBSD,
the resulting test will succeed but won't set the necessary flag
to distinguish between libedit and readline header files, therefore
using readline's at built time (if installed)

Consolidate all header tests into one and use instead the corresponding
autogenerated defines to check for each possibility.

* pcre2test: really allow libedit with cmake

Using cmake to configure and enable linking pcre2test with libedit,
could result in a broken build, because the header used was instead
pointing to readline.

In cases were the build will succeed (because both libraries were
available), it would likely show warnings, because several history
functions were being used without declarations, since readline
requires including "history.h" for those.

Additionally, since PCRE2_SUPPORT_READLINE is ON by default (unlike
configure), turning PCRE2_SUPPORT_LIBEDIT=ON, would require setting
that other option to OFF explicitly (even if readline wasn't available)
or the setup would abort.

Lastly, in systems with no default sysroot (ex: macOS), the use of
absolute paths for searching for libedit's readline.h could fail so
use instead relative PATH_SUFFIXES.

* pcre2test: avoid using readline headers with libedit

When asked to enable libedit in a system that ALSO has readline,
the headers of the former would be found and used by the earlier.

While that would mostly work, some functions will be missing
definitions (which is forbidden in C99), so instead abort the
configuration and let the user provide for them.
2022-04-08 17:07:30 +01:00
..
COPYING-CMAKE-SCRIPTS Basic CMake support is now working, at least on Linux. 2014-08-30 15:41:23 +00:00
FindEditline.cmake pcre2test: really allow using libedit when enabled (#96) 2022-04-08 17:07:30 +01:00
FindPackageHandleStandardArgs.cmake Basic CMake support is now working, at least on Linux. 2014-08-30 15:41:23 +00:00
FindReadline.cmake Basic CMake support is now working, at least on Linux. 2014-08-30 15:41:23 +00:00
pcre2-config-version.cmake.in Apply Jan-Willem Blokland's CMake patches to build both static and shared 2021-07-11 15:15:24 +00:00
pcre2-config.cmake.in Apply Jan-Willem Blokland's CMake patches to build both static and shared 2021-07-11 15:15:24 +00:00