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
68fa0325
Commit
68fa0325
authored
Oct 28, 2005
by
msvensson@neptunus.(none)
Browse files
Options
Browse Files
Download
Plain Diff
Merge neptunus.(none):/home/msvensson/mysql/bug12985/my50-bug12985
into neptunus.(none):/home/msvensson/mysql/mysql-5.0
parents
b1189769
bb571de3
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
37 additions
and
31 deletions
+37
-31
client/Makefile.am
client/Makefile.am
+4
-2
config/ac-macros/yassl.m4
config/ac-macros/yassl.m4
+6
-6
configure.in
configure.in
+1
-1
extra/yassl/src/Makefile.am
extra/yassl/src/Makefile.am
+2
-2
extra/yassl/taocrypt/src/Makefile.am
extra/yassl/taocrypt/src/Makefile.am
+5
-5
libmysql/Makefile.am
libmysql/Makefile.am
+2
-2
libmysql_r/Makefile.am
libmysql_r/Makefile.am
+2
-2
libmysqld/Makefile.am
libmysqld/Makefile.am
+4
-2
server-tools/instance-manager/Makefile.am
server-tools/instance-manager/Makefile.am
+2
-2
sql/Makefile.am
sql/Makefile.am
+4
-2
vio/Makefile.am
vio/Makefile.am
+5
-5
No files found.
client/Makefile.am
View file @
68fa0325
...
...
@@ -22,8 +22,10 @@ else
yassl_dummy_link_fix
=
endif
#AUTOMAKE_OPTIONS = nostdinc
INCLUDES
=
-I
$(top_builddir)
/include
-I
$(top_srcdir)
/include
\
-I
$(top_srcdir)
/regex
$(openssl_includes)
INCLUDES
=
-I
$(top_builddir)
/include
\
-I
$(top_srcdir)
/include
\
-I
$(top_srcdir)
/regex
\
$(openssl_includes)
$(yassl_includes)
LIBS
=
@CLIENT_LIBS@
LDADD
=
@CLIENT_EXTRA_LDFLAGS@
\
$(top_builddir)
/libmysql/libmysqlclient.la
...
...
config/ac-macros/yassl.m4
View file @
68fa0325
...
...
@@ -15,10 +15,9 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
fi
AC_MSG_RESULT([using bundled yaSSL])
yassl_dir="extra/yassl"
openssl_libs="\
-L\$(top_builddir)/extra/yassl/src -lyassl\
-L\$(top_builddir)/extra/yassl/taocrypt/src -ltaocrypt"
openssl_includes="-I\$(top_srcdir)/extra/yassl/include"
yassl_libs="-L\$(top_srcdir)/extra/yassl/src -lyassl -L\$(top_srcdir)/extra/yassl/taocrypt/src -ltaocrypt"
yassl_libs_with_path="\$(top_srcdir)/extra/yassl/src/libyassl.a \$(top_srcdir)/extra/yassl/taocrypt/src/libtaocrypt.a"
yassl_includes="-I\$(top_srcdir)/extra/yassl/include"
AC_DEFINE([HAVE_OPENSSL], [1], [Defined by configure. Using yaSSL for OpenSSL emulation.])
AC_DEFINE([HAVE_YASSL], [1], [Defined by configure. Using yaSSL for OpenSSL emulation.])
# System specific checks
...
...
@@ -36,8 +35,9 @@ AC_DEFUN([MYSQL_CHECK_YASSL], [
yassl_dir=""
AC_MSG_RESULT(no)
fi
AC_SUBST(
open
ssl_libs)
AC_SUBST(
open
ssl_includes)
AC_SUBST(
ya
ssl_libs)
AC_SUBST(
ya
ssl_includes)
AC_SUBST(yassl_dir)
AC_SUBST(yassl_libs_with_path)
AM_CONDITIONAL([HAVE_YASSL], [ test "with_yassl" = "yes" ])
])
configure.in
View file @
68fa0325
...
...
@@ -1129,7 +1129,7 @@ dnl Is this the right match for DEC OSF on alpha?
sql/Makefile.in
)
# Use gen_lex_hash.linux instead of gen_lex_hash
# Add library dependencies to mysqld_DEPENDENCIES
lib_DEPENDENCIES
=
"
\$
(bdb_libs_with_path)
\$
(innodb_libs)
\$
(ndbcluster_libs)
\$
(pstack_libs)
\$
(innodb_system_libs)
\$
(openssl_libs)"
lib_DEPENDENCIES
=
"
\$
(bdb_libs_with_path)
\$
(innodb_libs)
\$
(ndbcluster_libs)
\$
(pstack_libs)
\$
(innodb_system_libs)
\$
(openssl_libs)
\$
(yassl_libs)
"
cat
>
$filesed
<<
EOF
s,
\(
^.*
\$
(MAKE) gen_lex_hash
\)\$
(EXEEXT),#
\1
,
s,
\(\.
/gen_lex_hash
\)\$
(EXEEXT),
\1
.linux,
...
...
extra/yassl/src/Makefile.am
View file @
68fa0325
INCLUDES
=
-I
../include
-I
../taocrypt/include
-I
../mySTL
noinst_L
TLIBRARIES
=
libyassl.l
a
libyassl_
l
a_SOURCES
=
buffer.cpp cert_wrapper.cpp crypto_wrapper.cpp
\
noinst_L
IBRARIES
=
libyassl.
a
libyassl_a_SOURCES
=
buffer.cpp cert_wrapper.cpp crypto_wrapper.cpp
\
handshake.cpp lock.cpp log.cpp socket_wrapper.cpp ssl.cpp
\
template_instnt.cpp timer.cpp yassl_imp.cpp yassl_error.cpp yassl_int.cpp
EXTRA_DIST
=
../include/
*
.hpp ../include/openssl/
*
.h
...
...
extra/yassl/taocrypt/src/Makefile.am
View file @
68fa0325
INCLUDES
=
-I
../include
-I
../../mySTL
noinst_L
TLIBRARIES
=
libtaocrypt.la libtaoint.l
a
libtaocrypt_
l
a_SOURCES
=
aes.cpp aestables.cpp algebra.cpp arc4.cpp asn.cpp
\
noinst_L
IBRARIES
=
libtaocrypt.a libtaoint.
a
libtaocrypt_a_SOURCES
=
aes.cpp aestables.cpp algebra.cpp arc4.cpp asn.cpp
\
coding.cpp dh.cpp des.cpp dsa.cpp file.cpp hash.cpp
\
md2.cpp md5.cpp misc.cpp random.cpp ripemd.cpp rsa.cpp sha.cpp
\
template_instnt.cpp
libtaocrypt_
la_LIBADD
=
libtaoint.l
a
libtaoint_
l
a_SOURCES
=
integer.cpp
libtaoint_
l
a_CXXFLAGS
=
@yassl_integer_extra_cxxflags@
libtaocrypt_
a_LIBADD
=
libtaoint.
a
libtaoint_a_SOURCES
=
integer.cpp
libtaoint_a_CXXFLAGS
=
@yassl_integer_extra_cxxflags@
EXTRA_DIST
=
../include/
*
.hpp
AM_CXXFLAGS
=
-DYASSL_PURE_C
libmysql/Makefile.am
View file @
68fa0325
...
...
@@ -22,9 +22,9 @@
target
=
libmysqlclient.la
target_defs
=
-DUNDEF_THREADS_HACK
-DDONT_USE_RAID
@LIB_EXTRA_CCFLAGS@
LIBS
=
@CLIENT_LIBS@
LIBS
=
@CLIENT_LIBS@
@yassl_libs@
INCLUDES
=
-I
$(top_builddir)
/include
-I
$(top_srcdir)
/include
\
$(openssl_includes)
@ZLIB_INCLUDES@
$(openssl_includes)
$(yassl_includes)
@ZLIB_INCLUDES@
include
$(srcdir)/Makefile.shared
...
...
libmysql_r/Makefile.am
View file @
68fa0325
...
...
@@ -22,10 +22,10 @@
target
=
libmysqlclient_r.la
target_defs
=
-DDONT_USE_RAID
-DMYSQL_CLIENT
@LIB_EXTRA_CCFLAGS@
LIBS
=
@LIBS@ @ZLIB_LIBS@ @openssl_libs@
LIBS
=
@LIBS@ @ZLIB_LIBS@ @openssl_libs@
@yassl_libs@
INCLUDES
=
-I
$(top_builddir)
/include
-I
$(top_srcdir)
/include
\
$(openssl_includes)
@ZLIB_INCLUDES@
$(openssl_includes)
$(yassl_includes)
@ZLIB_INCLUDES@
## automake barfs if you don't use $(srcdir) or $(top_srcdir) in include
include
$(top_srcdir)/libmysql/Makefile.shared
...
...
libmysqld/Makefile.am
View file @
68fa0325
...
...
@@ -29,7 +29,7 @@ INCLUDES= @bdb_includes@ \
-I
$(top_builddir)
/include
-I
$(top_srcdir)
/include
\
-I
$(top_srcdir)
/sql
-I
$(top_srcdir)
/sql/examples
\
-I
$(top_srcdir)
/regex
\
$(openssl_includes)
@ZLIB_INCLUDES@
$(openssl_includes)
$(yassl_includes)
@ZLIB_INCLUDES@
noinst_LIBRARIES
=
libmysqld_int.a
pkglib_LIBRARIES
=
libmysqld.a
...
...
@@ -80,7 +80,9 @@ INC_LIB= $(top_builddir)/regex/libregex.a \
$(top_builddir)
/mysys/libmysys.a
\
$(top_builddir)
/strings/libmystrings.a
\
$(top_builddir)
/dbug/libdbug.a
\
$(top_builddir)
/vio/libvio.a
$(top_builddir)
/vio/libvio.a
\
@yassl_libs_with_path@
#
# To make it easy for the end user to use the embedded library we
...
...
server-tools/instance-manager/Makefile.am
View file @
68fa0325
...
...
@@ -15,7 +15,7 @@
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
INCLUDES
=
@ZLIB_INCLUDES@
-I
$(top_srcdir)
/include
\
$(openssl_includes)
-I
$(top_builddir)
/include
@openssl_includes@ @yassl_includes@
-I
$(top_builddir)
/include
DEFS
=
-DMYSQL_INSTANCE_MANAGER
-DMYSQL_SERVER
...
...
@@ -85,7 +85,7 @@ mysqlmanager_LDADD= liboptions.a \
$(top_builddir)
/mysys/libmysys.a
\
$(top_builddir)
/strings/libmystrings.a
\
$(top_builddir)
/dbug/libdbug.a
\
@openssl_libs@ @ZLIB_LIBS@
@openssl_libs@ @
yassl_libs@ @
ZLIB_LIBS@
tags
:
...
...
sql/Makefile.am
View file @
68fa0325
...
...
@@ -22,7 +22,8 @@ MYSQLBASEdir= $(prefix)
INCLUDES
=
@ZLIB_INCLUDES@
\
@bdb_includes@ @innodb_includes@ @ndbcluster_includes@
\
-I
$(top_builddir)
/include
-I
$(top_srcdir)
/include
\
-I
$(top_srcdir)
/regex
-I
$(srcdir)
$(openssl_includes)
-I
$(top_srcdir)
/regex
-I
$(srcdir)
$(yassl_includes)
\
$(openssl_includes)
WRAPLIBS
=
@WRAPLIBS@
SUBDIRS
=
share
libexec_PROGRAMS
=
mysqld
...
...
@@ -42,7 +43,8 @@ mysqld_LDADD = @MYSQLD_EXTRA_LDFLAGS@ \
@bdb_libs@ @innodb_libs@ @pstack_libs@
\
@innodb_system_libs@
\
@ndbcluster_libs@ @ndbcluster_system_libs@
\
$(LDADD)
$(CXXLDFLAGS)
$(WRAPLIBS)
@LIBDL@ @openssl_libs@
$(LDADD)
$(CXXLDFLAGS)
$(WRAPLIBS)
@LIBDL@
\
@yassl_libs@ @openssl_libs@
noinst_HEADERS
=
item.h item_func.h item_sum.h item_cmpfunc.h
\
item_strfunc.h item_timefunc.h item_uniq.h
\
item_create.h item_subselect.h item_row.h
\
...
...
vio/Makefile.am
View file @
68fa0325
...
...
@@ -20,23 +20,23 @@ else
yassl_dummy_link_fix
=
endif
INCLUDES
=
-I
$(top_builddir)
/include
-I
$(top_srcdir)
/include
\
$(openssl_includes)
LDADD
=
@CLIENT_EXTRA_LDFLAGS@
$(openssl_libs)
$(openssl_includes)
$(yassl_includes)
LDADD
=
@CLIENT_EXTRA_LDFLAGS@
$(openssl_libs)
$(yassl_libs)
pkglib_LIBRARIES
=
libvio.a
noinst_PROGRAMS
=
test-ssl test-sslserver test-sslclient
noinst_HEADERS
=
vio_priv.h
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)
$(openssl_libs)
$(yassl_libs)
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)
$(openssl_libs)
$(yassl_libs)
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)
$(openssl_libs)
$(yassl_libs)
libvio_a_SOURCES
=
vio.c viosocket.c viossl.c viosslfactories.c
# Don't update the files from bitkeeper
...
...
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