diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-09-19 14:30:43 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-09-19 14:30:43 -0600 |
commit | ba2c3fcd6a4eacd1c09fbebd823c0efdeefeedac (patch) | |
tree | 7d9a51529a16431dfa1dffbe7b1ddc566da2de85 /client/Makefile.am | |
parent | 623a6e551afaebc3038c29f2bcee930d2db7375e (diff) | |
download | mariadb-git-ba2c3fcd6a4eacd1c09fbebd823c0efdeefeedac.tar.gz |
fixes for MYSQL manager
mysys/md5.c:
Rename: sql/md5.c -> mysys/md5.c
include/md5.h:
Rename: mysys/md5.h -> include/md5.h
client/Makefile.am:
added mysqlmanagerc
include/Makefile.am:
moved md5.h to include
include/mysql.h:
added mysqlmanager client code
include/mysql_com.h:
renamed connect2 to my_connect() and made it extern
libmysql/Makefile.shared:
added md5 to libmysqlclient
libmysql/libmysql.c:
connect2->my_connect
mysys/Makefile.am:
added md5 to client
sql/Makefile.am:
md5 -> mysys
sql/handler.cc:
fixed typo
tools/managertest1.nc:
cleanup
tools/mysqlmanager.c:
fixed bugs
added md5 authentication
BitKeeper/etc/ignore:
Added client/mysqlmanagerc to the ignore list
vio/test-ssl:
no change
Diffstat (limited to 'client/Makefile.am')
-rw-r--r-- | client/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/client/Makefile.am b/client/Makefile.am index e39c663de15..365d013f074 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -23,7 +23,7 @@ noinst_HEADERS = client_priv.h LIBS = @CLIENT_LIBS@ LDADD = @CLIENT_EXTRA_LDFLAGS@ ../libmysql/libmysqlclient.la bin_PROGRAMS = mysql mysqladmin mysqlcheck mysqlshow \ - mysqldump mysqlimport mysqltest mysqlbinlog + mysqldump mysqlimport mysqltest mysqlbinlog mysqlmanagerc noinst_PROGRAMS = insert_test select_test thread_test noinst_HEADERS = sql_string.h completion_hash.h my_readline.h mysql_SOURCES = mysql.cc readline.cc sql_string.cc completion_hash.cc @@ -40,6 +40,8 @@ mysqltest_SOURCES= mysqltest.c mysqltest_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES) mysqlbinlog_SOURCES = mysqlbinlog.cc mysqlbinlog_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES) +mysqlmanagerc_SOURCES = mysqlmanagerc.c +mysqlmanagerc_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES) sql_src=log_event.h log_event.cc # Fix for mit-threads |