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
b21f60fb
Commit
b21f60fb
authored
Jun 26, 2009
by
Alexey Kopytov
Browse files
Options
Browse Files
Download
Plain Diff
Automerge.
parents
c4170358
7a512334
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
4 deletions
+18
-4
configure.in
configure.in
+18
-4
No files found.
configure.in
View file @
b21f60fb
...
...
@@ -1756,7 +1756,7 @@ esac
# Build optimized or debug version ?
# First check for gcc and g++
if
test
"
$
ac_cv_prog_gcc
"
=
"yes"
if
test
"
$
GCC
"
=
"yes"
then
DEBUG_CFLAGS
=
"-g"
DEBUG_OPTIMIZE_CC
=
"-O"
...
...
@@ -1764,9 +1764,16 @@ then
else
DEBUG_CFLAGS
=
"-g"
DEBUG_OPTIMIZE_CC
=
""
OPTIMIZE_CFLAGS
=
"-O"
case
$SYSTEM_TYPE
in
*
solaris
*
)
OPTIMIZE_CFLAGS
=
"-O1"
;;
*
)
OPTIMIZE_CFLAGS
=
"-O"
;;
esac
fi
if
test
"
$
ac_cv_prog_cxx_g
"
=
"yes"
if
test
"
$
GXX
"
=
"yes"
then
DEBUG_CXXFLAGS
=
"-g"
DEBUG_OPTIMIZE_CXX
=
"-O"
...
...
@@ -1774,7 +1781,14 @@ then
else
DEBUG_CXXFLAGS
=
"-g"
DEBUG_OPTIMIZE_CXX
=
""
OPTIMIZE_CXXFLAGS
=
"-O"
case
$SYSTEM_TYPE
in
*
solaris
*
)
OPTIMIZE_CXXFLAGS
=
"-O1"
;;
*
)
OPTIMIZE_CXXFLAGS
=
"-O"
;;
esac
fi
if
expr
"
$SYSTEM_TYPE
"
:
".*netware.*"
>
/dev/null
;
then
...
...
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