summaryrefslogtreecommitdiff
path: root/configure.in
Commit message (Expand)AuthorAgeFilesLines
* Convert some long lists in configure.in to one-line-per-entry style.Tom Lane2018-10-091-3/+69
* Make assorted performance improvements in snprintf.c.Tom Lane2018-10-031-1/+1
* Always use our own versions of *printf().Tom Lane2018-09-261-83/+0
* Convert elog.c's useful_strerror() into a globally-used strerror wrapper.Tom Lane2018-09-261-1/+1
* Make some fixes to allow building Postgres on macOS 10.14 ("Mojave").Tom Lane2018-09-251-1/+10
* Use ppoll(2), if available, to wait for input in pgbench.Tom Lane2018-09-241-1/+1
* Error out for clang on x86-32 without SSE2 support, no -fexcess-precision.Andres Freund2018-09-201-0/+18
* Refactor dlopen() supportPeter Eisentraut2018-09-061-4/+4
* Remove test for VA_ARGS, implied by C99.Andres Freund2018-08-241-1/+0
* Require C99 (and thus MSCV 2013 upwards).Andres Freund2018-08-231-0/+10
* Remove unused configure test for ldopen()Peter Eisentraut2018-08-161-6/+0
* Require a C99-compliant snprintf(), and remove related workarounds.Tom Lane2018-08-161-1/+10
* Try to enable C99 in configure, but do not rely on it (yet).Andres Freund2018-08-161-0/+1
* Remove obsolete linux dynloader codePeter Eisentraut2018-08-131-1/+1
* Use setproctitle_fast() to update the ps status, if available.Thomas Munro2018-07-241-1/+1
* Use signals for postmaster death on FreeBSD.Thomas Munro2018-07-111-1/+1
* Use signals for postmaster death on Linux.Thomas Munro2018-07-111-1/+1
* Stamp HEAD as 12develAndrew Dunstan2018-06-301-1/+1
* Stamp 11beta2.REL_11_BETA2Alvaro Herrera2018-06-251-1/+1
* Use -Wno-format-truncation and -Wno-stringop-truncation, if available.Tom Lane2018-06-161-0/+12
* Remove configure's check for nonstandard "long long" printf modifiers.Tom Lane2018-05-231-38/+13
* Stamp 11beta1.REL_11_BETA1Tom Lane2018-05-211-1/+1
* Support platforms where strtoll/strtoull are spelled __strtoll/__strtoull.Tom Lane2018-05-191-2/+2
* Arrange to supply declarations for strtoll/strtoull if needed.Tom Lane2018-05-181-0/+2
* Improve our method for probing the availability of ARM CRC instructions.Tom Lane2018-05-021-19/+2
* Use ARMv8 CRC instructions where available.Heikki Linnakangas2018-04-041-15/+72
* Fix incorrect description of USE_SLICING_BY_8_CRC32C.Heikki Linnakangas2018-04-041-2/+2
* Fix typo in BITCODE_CXXFLAGS assignment.Andres Freund2018-03-211-1/+1
* Empty CXXFLAGS inherited from autoconf.Andres Freund2018-03-211-0/+1
* Add configure tests for stdbool.h and sizeof boolPeter Eisentraut2018-03-211-0/+7
* Add configure infrastructure (--with-llvm) to enable LLVM support.Andres Freund2018-03-201-1/+61
* Add C++ support to configure.Andres Freund2018-03-201-5/+45
* Attempt to fix build with unusual OpenSSL versionsPeter Eisentraut2018-03-201-1/+1
* Make configure check for a couple more Perl modules for --enable-tap-tests.Tom Lane2018-03-201-2/+4
* Tests for Kerberos/GSSAPI authenticationPeter Eisentraut2018-03-061-0/+2
* Add PG_TEST_EXTRA to control optional test suitesPeter Eisentraut2018-03-031-0/+1
* Another attempt at fixing build with various OpenSSL versionsPeter Eisentraut2018-01-041-1/+1
* Allow ldaps when using ldap authenticationPeter Eisentraut2018-01-031-0/+1
* Update copyright for 2018Bruce Momjian2018-01-021-1/+1
* Provide overflow safe integer math inline functions.Andres Freund2017-12-121-0/+4
* Convert documentation to DocBook XMLPeter Eisentraut2017-11-231-3/+1
* Prevent int128 from requiring more than MAXALIGN alignment.Tom Lane2017-11-141-2/+5
* Revert "Allow --with-bonjour to work with non-macOS implementations of Bonjour."Tom Lane2017-11-091-2/+6
* Allow --with-bonjour to work with non-macOS implementations of Bonjour.Tom Lane2017-11-081-2/+4
* Fix version numbering foulups exposed by 10.1.Tom Lane2017-11-061-1/+1
* Force "restrict" not to be used when compiling with xlc.Andres Freund2017-10-131-1/+5
* Use C99 restrict via pg_restrict, rather than restrict directly.Andres Freund2017-10-121-1/+14
* Add configure infrastructure to detect support for C99's restrict.Andres Freund2017-10-111-0/+1
* Rewrite strnlen replacement implementation from 8a241792f96.Andres Freund2017-10-101-3/+3
* Add pg_strnlen() a portable implementation of strlen.Andres Freund2017-10-091-1/+1