diff options
author | unknown <monty@work.mysql.com> | 2000-08-31 00:33:42 +0200 |
---|---|---|
committer | unknown <monty@work.mysql.com> | 2000-08-31 00:33:42 +0200 |
commit | 07b1c5142baeeb5ee9ca527cd21d2a5baf39124a (patch) | |
tree | 803ff5eb80ed918599dc3dd386589ca046445a8f /configure.in | |
parent | a71a8529e3cba230bc908289d63d4d02df81f3f8 (diff) | |
download | mariadb-git-07b1c5142baeeb5ee9ca527cd21d2a5baf39124a.tar.gz |
Added thread_dirs
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/configure.in b/configure.in index 5a9d79f3ae1..a26c45f4e2b 100644 --- a/configure.in +++ b/configure.in @@ -1753,6 +1753,7 @@ MYSQL_CHECK_BDB # If we have threads generate some library functions and test programs sql_server_dirs= server_scripts= +thread_dirs= dnl This probably should be cleaned up more - for now the threaded dnl client is just using plain-old libs. @@ -1807,7 +1808,7 @@ install: all # modified by MySQL configure' \ if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes" then # MIT user level threads - sql_server_dirs="mit-pthreads $sql_server_dirs" + thread_dirs="mit-pthreads" AC_DEFINE(HAVE_mit_thread) MT_INCLUDES="-I\$(top_srcdir)/mit-pthreads/include" AC_SUBST(MT_INCLUDES) @@ -1823,6 +1824,7 @@ install: all # modified by MySQL configure' \ fi fi AC_SUBST(sql_server_dirs) +AC_SUBST(thread_dirs) AC_SUBST(server_scripts) if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes" |