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 | a206f1075ff6d954a8bd9f66f5dce5c59f7ae830 (patch) | |
tree | cc9f61f71666e0b4b3f190526b4d8f1641274e5d /strings | |
parent | a0e9add7910bbf5361f059c7e2b47be8e84aec58 (diff) | |
download | mariadb-git-a206f1075ff6d954a8bd9f66f5dce5c59f7ae830.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 'strings')
-rw-r--r-- | strings/Makefile.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/strings/Makefile.am b/strings/Makefile.am index 658ea8a2a6d..6bf21d630f3 100644 --- a/strings/Makefile.am +++ b/strings/Makefile.am @@ -39,7 +39,6 @@ endif endif libmystrings_a_SOURCES = @CHARSET_SRCS@ $(ASRCS) $(CSRCS) - noinst_PROGRAMS = conf_to_src # Default charset definitions EXTRA_DIST = ctype-big5.c ctype-czech.c ctype-euc_kr.c \ @@ -71,6 +70,9 @@ ctype_extra_sources.c: conf_to_src $(srcdir)/ctype_extra_sources.c conf_to_src_SOURCES = conf_to_src.c conf_to_src_LDADD= +#force static linking of conf_to_src - essential when linking against +#custom installation of libc +conf_to_src_LDFLAGS= @NOINST_LDFLAGS@ # This is because the dependency tracking misses @FOO@ vars in sources. strtoull.o: @CHARSET_OBJS@ |