summaryrefslogtreecommitdiff
path: root/innobase/configure.in
diff options
context:
space:
mode:
authorunknown <svoj@mysql.com>2005-06-23 21:29:44 +0500
committerunknown <svoj@mysql.com>2005-06-23 21:29:44 +0500
commit74307f39ebee0a1e4a14d9a989fbc92fa97a8f16 (patch)
tree7e5898f4bccacf80838cba216436eb38c4d2a069 /innobase/configure.in
parent089d20959e2f5551473f843f320495a811b6191b (diff)
downloadmariadb-git-74307f39ebee0a1e4a14d9a989fbc92fa97a8f16.tar.gz
WL#2286 - Compile MySQL w/YASSL support
Fix for compilation failure with Forte Developer C++. configure.in: Export ARFLAGS, so innobase could pick it up. innobase/configure.in: Use ARFLAGS exported by parent configure script.
Diffstat (limited to 'innobase/configure.in')
-rw-r--r--innobase/configure.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/innobase/configure.in b/innobase/configure.in
index baf11272ab9..c56bd8274c4 100644
--- a/innobase/configure.in
+++ b/innobase/configure.in
@@ -117,6 +117,13 @@ case "$target" in
CFLAGS="$CFLAGS -DUNIV_MUST_NOT_INLINE";;
esac
+# must go in pair with AR as set by MYSQL_CHECK_AR
+if test -z "$ARFLAGS"
+then
+ ARFLAGS="cru"
+fi
+AC_SUBST(ARFLAGS)
+
AC_OUTPUT(Makefile os/Makefile ut/Makefile btr/Makefile dnl
buf/Makefile data/Makefile dnl
dict/Makefile dyn/Makefile dnl