mirror of
https://github.com/MariaDB/server.git
synced 2025-09-02 09:41:40 +03:00
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.
This commit is contained in:
@@ -35,7 +35,7 @@ void check_thread_lib(void);
|
||||
#define HAVE_STACKTRACE
|
||||
extern void set_exception_pointers(EXCEPTION_POINTERS *ep);
|
||||
#define init_stacktrace() {}
|
||||
#elif defined(__sun)
|
||||
#elif defined(HAVE_PRINTSTACK)
|
||||
#define HAVE_STACKTRACE
|
||||
#define init_stacktrace() {}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user