diff options
author | Darren Tucker <dtucker@dtucker.net> | 2018-03-30 18:23:07 +1100 |
---|---|---|
committer | Darren Tucker <dtucker@dtucker.net> | 2018-03-30 18:23:07 +1100 |
commit | 2c71ca1dd1efe458cb7dee3f8a1a566f913182c2 (patch) | |
tree | 4906d911bcd351c9113675939ab9bd89b30753ae /configure.ac | |
parent | 6b5a17bc14e896e3904dc58d889b58934cfacd24 (diff) |
Disable native strndup and strnlen on AIX.
On at least some revisions of AIX, strndup returns unterminated strings
under some conditions, apparently because strnlen returns incorrect
values in those cases. Disable both on AIX and use the replacements
from openbsd-compat. Fixes problem with ECDSA keys there, ok djm.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index bedacc2db..663062bef 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -603,6 +603,8 @@ case "$host" in | |||
603 | [AIX 5.2 and 5.3 (and presumably newer) require this]) | 603 | [AIX 5.2 and 5.3 (and presumably newer) require this]) |
604 | AC_DEFINE([PTY_ZEROREAD], [1], [read(1) can return 0 for a non-closed fd]) | 604 | AC_DEFINE([PTY_ZEROREAD], [1], [read(1) can return 0 for a non-closed fd]) |
605 | AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)]) | 605 | AC_DEFINE([PLATFORM_SYS_DIR_UID], 2, [System dirs owned by bin (uid 2)]) |
606 | AC_DEFINE([BROKEN_STRNDUP], 1, [strndup broken, see APAR IY61211]) | ||
607 | AC_DEFINE([BROKEN_STRNLEN], 1, [strnlen broken, see APAR IY62551]) | ||
606 | ;; | 608 | ;; |
607 | *-*-android*) | 609 | *-*-android*) |
608 | AC_DEFINE([DISABLE_UTMP], [1], [Define if you don't want to use utmp]) | 610 | AC_DEFINE([DISABLE_UTMP], [1], [Define if you don't want to use utmp]) |