Skip to content
This repository has been archived by the owner on Feb 28, 2019. It is now read-only.

Commit

Permalink
Conditional iks-server compilation (--without-iks)
Browse files Browse the repository at this point in the history
* added --without-iks flag to configure.ac, which disables iks-server
  compilation - needed ie. for ARM architecture, where iks-server
  compilation fails due to some C++11 features used in its code.
  • Loading branch information
Tomasz Pieczerak committed Nov 27, 2014
1 parent 4cb220b commit 4775ee8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -1122,6 +1122,9 @@ if test x$lua_optimise = xyes; then
AC_DEFINE(LUA_PARAM_OPTIMISE, 1, [Define if lua param optimiser should be built in])
fi

# iks conditional building
AC_ARG_WITH([iks], AC_HELP_STRING([--without-iks], [Do not compile iks]))

# Resources directory
SUBDIRS="$SUBDIRS resources script"

Expand All @@ -1131,7 +1134,7 @@ if test x$no_python != xyes -a x$with_mingw32 != xyes; then
fi

# iks system directory
if test x$with_mingw32 != xyes; then
if test x$with_mingw32 != xyes -a x$with_iks != xno; then
SUBDIRS="$SUBDIRS iks"
fi

Expand Down

0 comments on commit 4775ee8

Please sign in to comment.