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
2ffb679a
Commit
2ffb679a
authored
Mar 03, 2006
by
kent@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
mysql.spec.sh:
Use installed libz.a to avoid hard to solve static linking problems
parent
b66567f6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
1 deletion
+9
-1
support-files/mysql.spec.sh
support-files/mysql.spec.sh
+9
-1
No files found.
support-files/mysql.spec.sh
View file @
2ffb679a
...
...
@@ -369,8 +369,8 @@ BuildMySQL "--disable-shared \
--with-client-ldflags='-all-static'
\
$USE_OTHER_LIBC_DIR
\
%else
%endif
--with-zlib-dir=bundled
\
%endif
--with-comment=
\"
MySQL Community Edition - Standard (GPL)
\"
\
--with-server-suffix='%{server_suffix}'
\
--with-archive-storage-engine
\
...
...
@@ -690,8 +690,11 @@ fi
%
{
_libdir
}
/mysql/libndbclient.a
%
{
_libdir
}
/mysql/libndbclient.la
%
{
_libdir
}
/mysql/libvio.a
%if %
{
STATIC_BUILD
}
%else
%
{
_libdir
}
/mysql/libz.a
%
{
_libdir
}
/mysql/libz.la
%endif
%files shared
%defattr
(
-, root, root, 0755
)
...
...
@@ -723,6 +726,11 @@ fi
*
Fri Mar 03 2006 Kent Boortz <kent@mysql.com>
- Don
't output an embedded package as it is empty
- Can'
t use bundled zlib when doing static build. Might be a
automake/libtool problem, having two .la files,
"libmysqlclient.la"
and
"libz.la"
, on the same
command
line to
link
"thread_test"
expands to too many
"-lc"
,
"-lpthread"
and other libs giving hard
to nail down duplicate symbol defintion problems.
*
Fri Jan 10 2006 Joerg Bruehe <joerg@mysql.com>
...
...
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