diff options
author | unknown <mtaylor@qualinost.(none)> | 2007-01-19 16:54:01 -0800 |
---|---|---|
committer | unknown <mtaylor@qualinost.(none)> | 2007-01-19 16:54:01 -0800 |
commit | 5eeee409e79e3ac50d1941eb7f167c244ce2fc90 (patch) | |
tree | 2f6831555c8c9a7cbcd82fdd55f490c009257512 /configure.in | |
parent | 74eac22e4e1d437191be8b9fc536071382330f2e (diff) | |
download | mariadb-git-5eeee409e79e3ac50d1941eb7f167c244ce2fc90.tar.gz |
Fixed the make distcheck problem. We only really need to create libndb.ver if we are building Ndb.
config/ac-macros/ha_ndbcluster.m4:
We only need to create this file if we are building Ndb in the first place. Moving the code to ha_ndbcluster.m4
configure.in:
We only need to create this file if we are building Ndb in the first place. Moving the code to ha_ndbcluster.m4
ndb/src/Makefile.am:
BUILT_SOURCES is uneccesary. Removing it. The real problem was related to building or not building Ndb.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/configure.in b/configure.in index f5cb21ac58f..48587e5b501 100644 --- a/configure.in +++ b/configure.in @@ -388,13 +388,6 @@ if $LD --version 2>/dev/null|grep -q GNU; then fi AC_SUBST(LD_VERSION_SCRIPT) -# libndbclient versioning when linked with GNU ld. -if $LD --version 2>/dev/null|grep -q GNU; then - NDB_LD_VERSION_SCRIPT="-Wl,--version-script=\$(top_builddir)/ndb/src/libndb.ver" - AC_CONFIG_FILES(ndb/src/libndb.ver) -fi -AC_SUBST(NDB_LD_VERSION_SCRIPT) - # Avoid bug in fcntl on some versions of linux AC_MSG_CHECKING([if we should use 'skip-external-locking' as default for $target_os]) |