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
56e415a5
Commit
56e415a5
authored
Mar 25, 2006
by
dlenev@mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge mysqldev@production.mysql.com:my/mysql-5.1-release
into mysql.com:/home/dlenev/mysql-5.1-merges
parents
85c1e4d2
625ab8a0
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
10 deletions
+12
-10
configure.in
configure.in
+12
-10
No files found.
configure.in
View file @
56e415a5
...
...
@@ -1608,18 +1608,20 @@ else
CXXFLAGS
=
"
$OPTIMIZE_CXXFLAGS
-DDBUG_OFF
$CXXFLAGS
"
fi
if
test
"
$with_debug
"
=
"no"
then
AC_ARG_WITH
([
fast-mutexes],
AC_HELP_STRING
([
--with-fast-mutexes
]
,
[
Compile with fast mutexes
(
default is disabled
)])
,
[
with_fast_mutexes
=
$withval
]
,
[
with_fast_mutexes
=
no]
)
fi
AC_ARG_WITH
([
fast-mutexes],
AC_HELP_STRING
([
--with-fast-mutexes
]
,
[
Compile with fast mutexes
(
default is disabled
)])
,
[
with_fast_mutexes
=
$withval
]
,
[
with_fast_mutexes
=
no]
)
if
test
"
$with_fast_mutexes
"
=
"yes
"
if
test
"
$with_fast_mutexes
"
!=
"no
"
then
AC_DEFINE
([
MY_PTHREAD_FASTMUTEX],
[
1],
[
Define to 1
if
you want to use fast mutexes]
)
if
test
"
$with_debug
"
!=
"no"
then
AC_MSG_WARN
([
'--with-fast-mutexes'
ignored when
'--with-debug'
is given]
)
else
AC_DEFINE
([
MY_PTHREAD_FASTMUTEX],
[
1],
[
Define to 1
if
you want to use fast mutexes]
)
fi
fi
# Force static compilation to avoid linking problems/get more speed
...
...
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