diff options
author | unknown <hf@deer.mysql.r18.ru> | 2003-04-23 19:37:33 +0500 |
---|---|---|
committer | unknown <hf@deer.mysql.r18.ru> | 2003-04-23 19:37:33 +0500 |
commit | f0909cd71a7a1d0904845af4e5e06d213f911de1 (patch) | |
tree | ca16079f1d4f7eae6f2205e124d0c90afbec8409 /sql/Makefile.am | |
parent | 7c87a3f140ac801c0922b3a24e59381f627f105a (diff) | |
download | mariadb-git-f0909cd71a7a1d0904845af4e5e06d213f911de1.tar.gz |
SCRUM
Protocol_cursor class and sql-common/ directory
Makefile.am:
pack.c added to linked sources
include/mysql.h:
net_field_length_ll declaration added
include/mysql_com.h:
net_field_length declaration added
libmysql/Makefile.am:
sql-common files symlinked
libmysql/Makefile.shared:
pack.lo target added
libmysql/libmysql.c:
net_field_length removed from here
sql/Makefile.am:
pack.c added to the sources
sql/mini_client.cc:
mc_net_field_length functions replaced with net_field_length
sql/protocol.h:
Protocol_cursor class added
Diffstat (limited to 'sql/Makefile.am')
-rw-r--r-- | sql/Makefile.am | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sql/Makefile.am b/sql/Makefile.am index b1d9149ddf4..a4858ab2b38 100644 --- a/sql/Makefile.am +++ b/sql/Makefile.am @@ -83,9 +83,9 @@ mysqld_SOURCES = sql_lex.cc sql_handler.cc \ sql_load.cc mf_iocache.cc field_conv.cc sql_show.cc \ sql_udf.cc sql_analyse.cc sql_analyse.h sql_cache.cc \ slave.cc sql_repl.cc sql_union.cc sql_derived.cc \ - mini_client.cc mini_client_errors.c \ + mini_client.cc mini_client_errors.c pack.c\ stacktrace.c repl_failsafe.h repl_failsafe.cc sql_olap.cc\ - gstream.cc spatial.cc sql_help.cc + gstream.cc spatial.cc sql_help.cc protocol_cursor.cc gen_lex_hash_SOURCES = gen_lex_hash.cc gen_lex_hash_LDADD = $(LDADD) $(CXXLDFLAGS) @@ -102,6 +102,8 @@ AM_YFLAGS = -d link_sources: rm -f mini_client_errors.c @LN_CP_F@ ../libmysql/errmsg.c mini_client_errors.c + rm -f pack.c + @LN_CP_F@ ../sql-common/pack.c pack.c gen_lex_hash.o: gen_lex_hash.cc lex.h $(CXXCOMPILE) -c $(INCLUDES) $< |