diff options
author | unknown <sasha@mysql.sashanet.com> | 2002-04-04 21:36:24 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2002-04-04 21:36:24 -0700 |
commit | 91c373fc72e1648f1b312f3e1dd0c965a35a490b (patch) | |
tree | cd1f33221edcbd7a6559cd1313770edad85c84d2 /libmysql | |
parent | 36701f1840e2132b9fd2cd84b067ff5409a0d993 (diff) | |
download | mariadb-git-91c373fc72e1648f1b312f3e1dd0c965a35a490b.tar.gz |
fixes to make it compile and pass the test suite again after the last
accidental push of broken code.
client/mysqladmin.c:
fixed crash in free_defaults()
libmysql/Makefile.shared:
added my_getopt to libmysqlclient
mysys/my_getopt.c:
fixed bug in parsing -O var=val
Diffstat (limited to 'libmysql')
-rw-r--r-- | libmysql/Makefile.shared | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libmysql/Makefile.shared b/libmysql/Makefile.shared index 0d3aa79b9ce..46be6103795 100644 --- a/libmysql/Makefile.shared +++ b/libmysql/Makefile.shared @@ -58,7 +58,8 @@ mysysobjects1 = my_init.lo my_static.lo my_malloc.lo my_realloc.lo \ my_compress.lo array.lo my_once.lo list.lo my_net.lo \ charset.lo hash.lo mf_iocache.lo \ mf_iocache2.lo my_seek.lo \ - my_pread.lo mf_cache.lo my_vsnprintf.lo md5.lo + my_pread.lo mf_cache.lo my_vsnprintf.lo md5.lo \ + my_getopt.lo # Not needed in the minimum library mysysobjects2 = getopt.lo getopt1.lo getvar.lo my_lib.lo |