diff options
author | Staale Smedseng <staale.smedseng@sun.com> | 2010-01-27 11:38:50 +0100 |
---|---|---|
committer | Staale Smedseng <staale.smedseng@sun.com> | 2010-01-27 11:38:50 +0100 |
commit | 694d50c71efc079c794fc81fb13d49ce5036ce36 (patch) | |
tree | 8b530b644f13308f7f4fff93158377458e56ff17 /configure.in | |
parent | 7fe315483c3d04775b2d8d8e491d056de156b634 (diff) | |
download | mariadb-git-694d50c71efc079c794fc81fb13d49ce5036ce36.tar.gz |
Bug#50409 Solaris 8 compatibility broken by assumption about
printstack() being present
When Bug#47391 was fixed, no assumption was made that support
for Solaris 8 was needed. Solaris 8 lacks printstack(), and
the build breaks because of this.
This patch adds a test for the presence of printstack() to
configure.in for 5.0, and uses HAVE_PRINTSTACK to make
decisions rather than the __sun define.
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 405ebddadbe..a399ccb2909 100644 --- a/configure.in +++ b/configure.in @@ -2128,7 +2128,7 @@ AC_CHECK_FUNCS(alarm bcmp bfill bmove bzero chsize cuserid fchmod fcntl \ shmget shmat shmdt shmctl sigaction sigemptyset sigaddset \ sighold sigset sigthreadmask \ snprintf socket stpcpy strcasecmp strerror strsignal strnlen strpbrk strstr strtol \ - strtoll strtoul strtoull tell tempnam thr_setconcurrency vidattr) + strtoll strtoul strtoull tell tempnam thr_setconcurrency vidattr printstack) # # |