Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
fb378f15
Commit
fb378f15
authored
Dec 30, 2004
by
joerg@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge jbruehe@bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/M41/mysql-4.1
parents
9d860c06
df1c8a1f
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
3 deletions
+19
-3
.bzrignore
.bzrignore
+2
-0
Makefile.am
Makefile.am
+2
-2
configure.in
configure.in
+15
-1
No files found.
.bzrignore
View file @
fb378f15
...
...
@@ -946,3 +946,5 @@ libmysqld/ha_tina.cc
analyse.test
client/mysqladmin.c
mysql-4.1.8-win-src.zip
ndb/include/ndb_version.h
ndb/include/ndb_global.h
Makefile.am
View file @
fb378f15
...
...
@@ -23,14 +23,14 @@ EXTRA_DIST = INSTALL-SOURCE README COPYING EXCEPTIONS-CLIENT
SUBDIRS
=
.
include @docs_dirs@ @zlib_dir@
\
@readline_topdir@ sql-common
\
@thread_dirs@ pstack
\
@sql_
server_dirs@ @sql_client
_dirs@ scripts man tests
\
@sql_
union
_dirs@ scripts man tests
\
netware @libmysqld_dirs@
\
@bench_dirs@ support-files @fs_dirs@ @tools_dirs@
DIST_SUBDIRS
=
.
include @docs_dirs@ zlib
\
@readline_topdir@ sql-common
\
@thread_dirs@ pstack
\
@sql_
server_dirs@ @sql_client
_dirs@ scripts @man_dirs@ tests SSL
\
@sql_
union
_dirs@ scripts @man_dirs@ tests SSL
\
BUILD netware os2 @libmysqld_dirs@
\
@bench_dirs@ support-files @fs_dirs@ @tools_dirs@
...
...
configure.in
View file @
fb378f15
...
...
@@ -2832,7 +2832,7 @@ thread_dirs=
dnl This probably should be cleaned up more -
for
now the threaded
dnl client is just using plain-old libs.
sql_client_dirs
=
"libmysql client"
sql_client_dirs
=
"libmysql
strings regex
client"
linked_client_targets
=
"linked_libmysql_sources"
CLIENT_LIBS
=
$NON_THREADED_CLIENT_LIBS
if
test
"
$THREAD_SAFE_CLIENT
"
!=
"no"
...
...
@@ -3014,6 +3014,20 @@ AC_SUBST(sql_server_dirs)
AC_SUBST
(
thread_dirs
)
AC_SUBST
(
server_scripts
)
# Now that sql_client_dirs and sql_server_dirs are stable, determine the union.
# Start with the (longer) server list, add each client item not yet present.
sql_union_dirs
=
"
$sql_server_dirs
"
for
DIR
in
$sql_client_dirs
do
if
echo
$sql_union_dirs
|
grep
"
$DIR
"
>
/dev/null
then
:
# already present, skip
else
sql_union_dirs
=
"
$sql_union_dirs
$DIR
"
fi
done
AC_SUBST
(
sql_union_dirs
)
#if test "$with_posix_threads" = "no" -o "$with_mit_threads" = "yes"
#then
# MIT pthreads does now support connecting with unix sockets
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment