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
fd833d70
Commit
fd833d70
authored
Jan 01, 2007
by
kent@mysql.com/kent-amd64.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
configure.in:
Build "mysqld_error.h" even if configured --withouth-server (bug#21265)
parent
1febd444
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
6 deletions
+8
-6
configure.in
configure.in
+8
-6
No files found.
configure.in
View file @
fd833d70
...
...
@@ -2494,12 +2494,14 @@ 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
=
"strings regex mysys libmysql client"
sql_client_dirs
=
linked_client_targets
=
"linked_libmysql_sources"
if
test
"
$THREAD_SAFE_CLIENT
"
!
=
"no"
if
test
"
$THREAD_SAFE_CLIENT
"
=
"no"
then
sql_client_dirs
=
"libmysql_r
$sql_client_dirs
"
sql_client_dirs
=
"strings regex mysys extra libmysql client"
else
sql_client_dirs
=
"strings regex mysys extra libmysql libmysql_r client"
linked_client_targets
=
"
$linked_client_targets
linked_libmysql_r_sources"
AC_CONFIG_FILES
(
libmysql_r/Makefile
)
AC_DEFINE
([
THREAD_SAFE_CLIENT],
[
1],
[
Should be client be thread safe]
)
...
...
@@ -2532,13 +2534,13 @@ if test "$with_server" != "no" -o "$THREAD_SAFE_CLIENT" != "no"
then
AC_DEFINE
([
THREAD],
[
1],
[
Define
if
you want to have threaded code. This may be undef on client code]
)
# Avoid _PROGRAMS names
THREAD_LOBJECTS
=
"thr_alarm.o thr_lock.o thr_mutex.o thr_rwlock.o my_pthread.o my_thr_init.o mf_keycache.o"
AC_SUBST
(
THREAD_LOBJECTS
)
fi
if
test
"
$with_server
"
!=
"no"
then
# Avoid _PROGRAMS names
THREAD_LOBJECTS
=
"thr_alarm.o thr_lock.o thr_mutex.o thr_rwlock.o my_pthread.o my_thr_init.o mf_keycache.o"
AC_SUBST
(
THREAD_LOBJECTS
)
server_scripts
=
"mysqld_safe mysql_install_db"
sql_server_dirs
=
"strings mysys dbug extra regex"
...
...
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