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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
685c844f
Commit
685c844f
authored
Jun 12, 2005
by
svoj@mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
WL#2286 - Compile MySQL w/YASSL support
Fix for link failures on boxes with non-gnu compiler.
parent
35dad735
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
29 additions
and
8 deletions
+29
-8
client/Makefile.am
client/Makefile.am
+12
-2
config/ac-macros/yassl.m4
config/ac-macros/yassl.m4
+1
-0
tests/Makefile.am
tests/Makefile.am
+8
-1
vio/Makefile.am
vio/Makefile.am
+8
-5
No files found.
client/Makefile.am
View file @
685c844f
...
...
@@ -16,6 +16,11 @@
# This file is public domain and comes with NO WARRANTY of any kind
if
HAVE_YASSL
yassl_dummy_link_fix
=
$(top_srcdir)
/extra/yassl/src/dummy.cpp
else
yassl_dummy_link_fix
=
endif
#AUTOMAKE_OPTIONS = nostdinc
INCLUDES
=
-I
$(top_srcdir)
/include
-I
$(top_srcdir)
/regex
\
$(openssl_includes)
-I
$(top_builddir)
/include
...
...
@@ -30,12 +35,17 @@ noinst_HEADERS = sql_string.h completion_hash.h my_readline.h \
mysql_SOURCES
=
mysql.cc readline.cc sql_string.cc completion_hash.cc
mysqladmin_SOURCES
=
mysqladmin.cc
mysql_LDADD
=
@readline_link@ @TERMCAP_LIB@
$(LDADD)
$(CXXLDFLAGS)
mysqltest_SOURCES
=
mysqltest.c
$(top_srcdir)
/mysys/my_getsystime.c
mysqltest_SOURCES
=
mysqltest.c
$(top_srcdir)
/mysys/my_getsystime.c
\
$(yassl_dummy_link_fix)
mysqltest_LDADD
=
$(top_builddir)
/regex/libregex.a
$(LDADD)
mysqlbinlog_SOURCES
=
mysqlbinlog.cc
$(top_srcdir)
/mysys/mf_tempdir.c
$(top_srcdir)
/mysys/my_new.cc
mysqlbinlog_LDADD
=
$(LDADD)
$(CXXLDFLAGS)
mysqltestmanagerc_SOURCES
=
mysqlmanagerc.c
mysqltestmanager_pwgen_SOURCES
=
mysqlmanager-pwgen.c
mysqltestmanagerc_SOURCES
=
mysqlmanagerc.c
$(yassl_dummy_link_fix)
mysqlcheck_SOURCES
=
mysqlcheck.c
$(yassl_dummy_link_fix)
mysqlshow_SOURCES
=
mysqlshow.c
$(yassl_dummy_link_fix)
mysqldump_SOURCES
=
mysqldump.c
$(yassl_dummy_link_fix)
mysqlimport_SOURCES
=
mysqlimport.c
$(yassl_dummy_link_fix)
sql_src
=
log_event.h mysql_priv.h log_event.cc my_decimal.h my_decimal.cc
strings_src
=
decimal.c
...
...
config/ac-macros/yassl.m4
View file @
685c844f
...
...
@@ -30,4 +30,5 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
AC_SUBST(openssl_libs)
AC_SUBST(openssl_includes)
AC_SUBST(yassl_dir)
AM_CONDITIONAL([HAVE_YASSL], [ test "$yassl" = "yes" ])
])
tests/Makefile.am
View file @
685c844f
...
...
@@ -17,6 +17,11 @@
## Process this file with automake to create Makefile.in
if
HAVE_YASSL
yassl_dummy_link_fix
=
$(top_srcdir)
/extra/yassl/src/dummy.cpp
else
yassl_dummy_link_fix
=
endif
EXTRA_DIST
=
auto_increment.res auto_increment.tst
\
function
.res
function
.tst lock_test.pl lock_test.res
\
export.pl big_record.pl
\
...
...
@@ -38,7 +43,9 @@ LDADD = @CLIENT_EXTRA_LDFLAGS@ \
$(top_builddir)
/libmysql/libmysqlclient.la
mysql_client_test_LDADD
=
$(LDADD)
$(CXXLDFLAGS)
\
$(top_builddir)
/mysys/libmysys.a
mysql_client_test_SOURCES
=
mysql_client_test.c
mysql_client_test_SOURCES
=
mysql_client_test.c
$(yassl_dummy_link_fix)
insert_test_SOURCES
=
insert_test.c
$(yassl_dummy_link_fix)
select_test_SOURCES
=
select_test.c
$(yassl_dummy_link_fix)
insert_test_DEPENDENCIES
=
$(LIBRARIES)
$(pkglib_LTLIBRARIES)
select_test_DEPENDENCIES
=
$(LIBRARIES)
$(pkglib_LTLIBRARIES)
...
...
vio/Makefile.am
View file @
685c844f
...
...
@@ -14,22 +14,25 @@
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
if
HAVE_YASSL
yassl_dummy_link_fix
=
$(top_srcdir)
/extra/yassl/src/dummy.cpp
else
yassl_dummy_link_fix
=
endif
INCLUDES
=
-I
$(top_srcdir)
/include
$(openssl_includes)
LDADD
=
@CLIENT_EXTRA_LDFLAGS@
$(openssl_libs)
pkglib_LIBRARIES
=
libvio.a
noinst_PROGRAMS
=
test-ssl test-sslserver test-sslclient
noinst_HEADERS
=
vio_priv.h
test_ssl_SOURCES
=
test-ssl.c
$(
top_srcdir)
/extra/yassl/src/dummy.cpp
test_ssl_SOURCES
=
test-ssl.c
$(
yassl_dummy_link_fix)
test_ssl_LDADD
=
@CLIENT_EXTRA_LDFLAGS@ ../dbug/libdbug.a libvio.a
\
../mysys/libmysys.a ../strings/libmystrings.a
\
$(openssl_libs)
test_sslserver_SOURCES
=
test-sslserver.c
\
$(top_srcdir)
/extra/yassl/src/dummy.cpp
test_sslserver_SOURCES
=
test-sslserver.c
$(yassl_dummy_link_fix)
test_sslserver_LDADD
=
@CLIENT_EXTRA_LDFLAGS@ ../dbug/libdbug.a libvio.a
\
../mysys/libmysys.a ../strings/libmystrings.a
\
$(openssl_libs)
test_sslclient_SOURCES
=
test-sslclient.c
\
$(top_srcdir)
/extra/yassl/src/dummy.cpp
test_sslclient_SOURCES
=
test-sslclient.c
$(yassl_dummy_link_fix)
test_sslclient_LDADD
=
@CLIENT_EXTRA_LDFLAGS@ ../dbug/libdbug.a libvio.a
\
../mysys/libmysys.a ../strings/libmystrings.a
\
$(openssl_libs)
...
...
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