diff options
author | Noah Misch <noah@leadboat.com> | 2014-06-14 09:41:13 -0400 |
---|---|---|
committer | Noah Misch <noah@leadboat.com> | 2014-06-14 09:41:17 -0400 |
commit | 841baf28f8e86b67c0b036fb921446a310e5c60b (patch) | |
tree | 680f7d37a0c7713d61211ca2915a77be4d9f6412 /configure.in | |
parent | a11577f47e5ed1d6271188ec5830fecf1036ce4d (diff) | |
download | postgresql-841baf28f8e86b67c0b036fb921446a310e5c60b.tar.gz postgresql-841baf28f8e86b67c0b036fb921446a310e5c60b.zip |
Add mkdtemp() to libpgport.
This function is pervasive on free software operating systems; import
NetBSD's implementation. Back-patch to 8.4, like the commit that will
harness it.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 61484df36e9..e675cece756 100644 --- a/configure.in +++ b/configure.in @@ -1344,7 +1344,7 @@ else AC_CHECK_FUNCS([fpclass fp_class fp_class_d class], [break]) fi -AC_REPLACE_FUNCS([crypt fls getopt getrusage inet_aton random rint srandom strerror strlcat strlcpy]) +AC_REPLACE_FUNCS([crypt fls getopt getrusage inet_aton mkdtemp random rint srandom strerror strlcat strlcpy]) case $host_os in |