summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorTom Lane2015-01-11 17:52:37 +0000
committerTom Lane2015-01-11 17:52:37 +0000
commit8883bae33b55a52105b1b58d0e42c5a6bda09627 (patch)
tree38347301a5059dd9557cac21d1f60ff386453fba /configure.in
parent080eabe2e8a184ff40b7380aaaa9418714acace9 (diff)
Remove configure test for nonstandard variants of getpwuid_r().
We had code that supposed that some platforms might offer a nonstandard version of getpwuid_r() with only four arguments. However, the 5-argument definition has been standardized at least since the Single Unix Spec v2, which is our normal reference for what's portable across all Unix-oid platforms. (What's more, this wasn't the only pre-standardization version of getpwuid_r(); my old HPUX 10.20 box has still another signature.) So let's just get rid of the now-useless configure step.
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in1
1 files changed, 0 insertions, 1 deletions
diff --git a/configure.in b/configure.in
index 6aa69fb19fe..56d1967eb45 100644
--- a/configure.in
+++ b/configure.in
@@ -1527,7 +1527,6 @@ fi
AC_CHECK_FUNCS([strerror_r getpwuid_r gethostbyname_r])
# Do test here with the proper thread flags
-PGAC_FUNC_GETPWUID_R_5ARG
PGAC_FUNC_STRERROR_R_INT
CFLAGS="$_CFLAGS"