diff options
author | Davi Arnaut <davi.arnaut@oracle.com> | 2010-10-04 08:52:59 -0300 |
---|---|---|
committer | Davi Arnaut <davi.arnaut@oracle.com> | 2010-10-04 08:52:59 -0300 |
commit | 40ee088f68a452ac2ed19622481c73d6d38c7ec3 (patch) | |
tree | fcd0707f028c04c484c3bffc9dd7f68574089ca2 /Makefile.am | |
parent | a39f21a97e97602941d8ffe92722cf47029e447f (diff) | |
download | mariadb-git-40ee088f68a452ac2ed19622481c73d6d38c7ec3.tar.gz |
Bug#57210: remove pstack
Quoting from the bug report:
The pstack library has been included in MySQL since version
4.0.0. It's useless and should be removed.
Details: According to its own documentation, pstack only works
on Linux on x86 in 32 bit mode and requires LinuxThreads and a
statically linked binary. It doesn't really support any Linux
from 2003 or later and doesn't work on any other OS.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.am b/Makefile.am index dcb55bdfa86..ca84e52a5a3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -24,7 +24,7 @@ EXTRA_DIST = INSTALL-SOURCE INSTALL-WIN-SOURCE \ SUBDIRS = . include @docs_dirs@ @zlib_dir@ \ @readline_topdir@ sql-common scripts \ - @pstack_dir@ libservices \ + libservices \ @sql_union_dirs@ unittest \ @sql_server@ @man_dirs@ tests \ @libmysqld_dirs@ \ @@ -34,7 +34,7 @@ SUBDIRS = . include @docs_dirs@ @zlib_dir@ \ cmake DIST_SUBDIRS = . include Docs zlib \ cmd-line-utils sql-common scripts \ - pstack libservices \ + libservices \ strings mysys dbug extra regex libmysql libmysql_r client unittest storage plugin \ vio sql man tests \ libmysqld \ |