From c3325091f3516955ac2e52fda022b1da90dfa507 Mon Sep 17 00:00:00 2001 From: Blottiere Paul Date: Mon, 7 Feb 2022 18:03:46 +0100 Subject: [PATCH] Add documentation for NESTED_QSORT --- doc/development.rst | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/doc/development.rst b/doc/development.rst index 518bc27..ae4f38b 100644 --- a/doc/development.rst +++ b/doc/development.rst @@ -36,13 +36,23 @@ After generating the configure script with ``autogen.sh``, you can use .. note:: - You can use ``--with-pgconfig`` on the ``./configure`` command line if - you have multiple PostgreSQL installations on your system and want to target a - specific one. For example: + You can use ``--with-pgconfig`` on the ``./configure`` command line if + you have multiple PostgreSQL installations on your system and want to target a + specific one. For example: - .. code-block:: bash + .. code-block:: bash - $ ./configure --with-pgconfig=/usr/lib/postgresql/12/bin/pg_config + $ ./configure --with-pgconfig=/usr/lib/postgresql/12/bin/pg_config + + +.. note:: + + If ``qsort_r`` is not available on your system, then you can use the embedded + implementation instead thanks to the next directive: + + .. code-block:: bash + + $ ./configure CFLAGS="-DNESTED_QSORT=1" ------------------------------------------------------------------------------ Tests