diff options
author | unknown <monty@hundin.mysql.fi> | 2001-09-18 05:16:39 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-09-18 05:16:39 +0300 |
commit | 01eab0ce84a3f8cef702d9673cc6f6262f4a5a7a (patch) | |
tree | bec809e08634f934190434f5e22828676c8b9dfe /libmysqld | |
parent | d8ae9669cd11f9c61105a9cbf19f9318a0e783fc (diff) | |
download | mariadb-git-01eab0ce84a3f8cef702d9673cc6f6262f4a5a7a.tar.gz |
Fix error messages
Configure fixes
configure.in:
Fix for pstack
libmysqld/Makefile.am:
Fix to create examples
mysql-test/t/drop.test:
Fix error messages
mysql-test/t/isolation.test:
Fix error messages
mysql-test/t/union.test:
Fix error messages
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/Makefile.am | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libmysqld/Makefile.am b/libmysqld/Makefile.am index aaa2b469ccb..feeec6225fd 100644 --- a/libmysqld/Makefile.am +++ b/libmysqld/Makefile.am @@ -30,14 +30,14 @@ INCLUDES = @MT_INCLUDES@ @bdb_includes@ -I$(srcdir)/../include -I../include \ ## XXX: should we use client or server LDFLAGS for libmysqld? -LDADD = @CLIENT_EXTRA_LDFLAGS@ libmysqld.la -pkglib_LTLIBRARIES = libmysqld.la +LDADD = @CLIENT_EXTRA_LDFLAGS@ libmysqld.la +pkglib_LTLIBRARIES = libmysqld.la +SUBDIRS = examples +libmysqld_la_SOURCES= libmysqld.c lib_sql.cc lib_load.cc -libmysqld_la_SOURCES = libmysqld.c lib_sql.cc lib_load.cc - -libmysqlsources = errmsg.c get_password.c password.c +libmysqlsources = errmsg.c get_password.c password.c ## XXX: we should not have to duplicate info from the sources list -libmysqlobjects = errmsg.lo get_password.lo password.lo +libmysqlobjects = errmsg.lo get_password.lo password.lo sqlsources = convert.cc derror.cc field.cc field_conv.cc filesort.cc \ ha_innobase.cc ha_berkeley.cc ha_heap.cc ha_isam.cc ha_isammrg.cc \ |