mirror of
https://github.com/MariaDB/server.git
synced 2026-04-20 23:35:32 +02:00
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.
This commit is contained in:
parent
089d20959e
commit
74307f39eb
2 changed files with 8 additions and 1 deletions
|
|
@ -342,7 +342,7 @@ AC_SUBST(CXXFLAGS)
|
|||
AC_SUBST(LD)
|
||||
AC_SUBST(INSTALL_SCRIPT)
|
||||
|
||||
export CC CXX CFLAGS LD LDFLAGS AR
|
||||
export CC CXX CFLAGS LD LDFLAGS AR ARFLAGS
|
||||
|
||||
if test "$GCC" = "yes"
|
||||
then
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue