diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-04-02 19:01:15 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-04-02 19:01:15 -0600 |
commit | ae5b950c4dd81daa0e03847905f3f38b4ef8b409 (patch) | |
tree | cc9f61f71666e0b4b3f190526b4d8f1641274e5d /sql | |
parent | 3a3e8e99d5ba9a4659617d40554677d34053a7e7 (diff) | |
download | mariadb-git-ae5b950c4dd81daa0e03847905f3f38b4ef8b409.tar.gz |
got --with-other-libc to work, finally
configure.in:
updates for --with-other-libc
heap/Makefile.am:
--with-other-libc
libmysql/Makefile.shared:
--with-other-libc
mysys/Makefile.am:
--with-other-libc
regex/Makefile.am:
--with-other-libc
sql/Makefile.am:
--with-other-libc
strings/Makefile.am:
--with-other-libc
Diffstat (limited to 'sql')
-rw-r--r-- | sql/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/Makefile.am b/sql/Makefile.am index 7ddb88f26ed..a32383802b1 100644 --- a/sql/Makefile.am +++ b/sql/Makefile.am @@ -30,6 +30,7 @@ SUBDIRS = share bin_PROGRAMS = mysqlbinlog libexec_PROGRAMS = mysqld noinst_PROGRAMS = gen_lex_hash +gen_lex_hash_LDFLAGS = @NOINST_LDFLAGS@ LDADD = ../isam/libnisam.a \ ../merge/libmerge.a \ ../myisam/libmyisam.a \ @@ -81,7 +82,7 @@ gen_lex_hash_SOURCES = gen_lex_hash.cc gen_lex_hash_LDADD = $(LDADD) $(CXXLDFLAGS) mysqlbinlog_SOURCES = mysqlbinlog.cc mini_client.cc net_serv.cc \ mini_client_errors.c violite.c password.c -mysqlbinlog_LDADD = $(LDADD) $(CXXLDFLAGS) +mysqlbinlog_LDADD = $(LDADD) $(CXXLDFLAGS) $(mysqld_LDADD) DEFS = -DMYSQL_SERVER \ -DDEFAULT_MYSQL_HOME="\"$(MYSQLBASEdir)\"" \ |