diff options
author | unknown <sasha@mysql.sashanet.com> | 2002-03-30 16:24:30 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2002-03-30 16:24:30 -0700 |
commit | 869e671f98b1a056595e259283bf4e5e40256a20 (patch) | |
tree | f611ec442ca101c4c2ac5d8133a9ddd352ae197b /libmysqld | |
parent | 72f1fc7e36a15b59f22dee2639d80cd2538f692d (diff) | |
download | mariadb-git-869e671f98b1a056595e259283bf4e5e40256a20.tar.gz |
fix to make the compile work with --with-other-libc
libmysqld/examples/Makefile.am:
honor client link flags in libmysqld example builds
vio/Makefile.am:
honor client link flags in vio test program builds
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/examples/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/examples/Makefile.am b/libmysqld/examples/Makefile.am index d9f9f05ae97..ecfcbccd322 100644 --- a/libmysqld/examples/Makefile.am +++ b/libmysqld/examples/Makefile.am @@ -11,7 +11,7 @@ DEFS = -DEMBEDDED_LIBRARY INCLUDES = -I$(top_srcdir)/include $(openssl_includes) \ -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/client LIBS = @LIBS@ -LDADD = ../libmysqld.a @innodb_system_libs@ @LIBDL@ $(CXXLDFLAGS) +LDADD = @CLIENT_EXTRA_LDFLAGS@ ../libmysqld.a @innodb_system_libs@ @LIBDL@ $(CXXLDFLAGS) mysqltest_SOURCES = mysqltest.c |