Commit aa7446af authored by unknown's avatar unknown

Added thread_dirs

parent 336d9bbd
...@@ -21,7 +21,8 @@ TAR = gtar ...@@ -21,7 +21,8 @@ TAR = gtar
# These are built from source in the Docs directory # These are built from source in the Docs directory
EXTRA_DIST = INSTALL-SOURCE README \ EXTRA_DIST = INSTALL-SOURCE README \
COPYING COPYING.LIB MIRRORS COPYING COPYING.LIB MIRRORS
SUBDIRS = include @docs_dirs@ @readline_dir@ @sql_client_dirs@ \ SUBDIRS = include @docs_dirs@ @readline_dir@ \
@thread_dirs@ @sql_client_dirs@ \
@sql_server_dirs@ scripts tests man \ @sql_server_dirs@ scripts tests man \
@bench_dirs@ support-files @bench_dirs@ support-files
......
...@@ -1753,6 +1753,7 @@ MYSQL_CHECK_BDB ...@@ -1753,6 +1753,7 @@ MYSQL_CHECK_BDB
# If we have threads generate some library functions and test programs # If we have threads generate some library functions and test programs
sql_server_dirs= sql_server_dirs=
server_scripts= server_scripts=
thread_dirs=
dnl This probably should be cleaned up more - for now the threaded dnl This probably should be cleaned up more - for now the threaded
dnl client is just using plain-old libs. dnl client is just using plain-old libs.
...@@ -1807,7 +1808,7 @@ install: all # modified by MySQL configure' \ ...@@ -1807,7 +1808,7 @@ install: all # modified by MySQL configure' \
if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes" if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes"
then then
# MIT user level threads # MIT user level threads
sql_server_dirs="mit-pthreads $sql_server_dirs" thread_dirs="mit-pthreads"
AC_DEFINE(HAVE_mit_thread) AC_DEFINE(HAVE_mit_thread)
MT_INCLUDES="-I\$(top_srcdir)/mit-pthreads/include" MT_INCLUDES="-I\$(top_srcdir)/mit-pthreads/include"
AC_SUBST(MT_INCLUDES) AC_SUBST(MT_INCLUDES)
...@@ -1823,6 +1824,7 @@ install: all # modified by MySQL configure' \ ...@@ -1823,6 +1824,7 @@ install: all # modified by MySQL configure' \
fi fi
fi fi
AC_SUBST(sql_server_dirs) AC_SUBST(sql_server_dirs)
AC_SUBST(thread_dirs)
AC_SUBST(server_scripts) AC_SUBST(server_scripts)
if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes" if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment