[pango: 1/31] [modules] Build all modules statically by default
- From: Behdad Esfahbod <behdad src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [pango: 1/31] [modules] Build all modules statically by default
- Date: Sun, 5 Apr 2015 20:03:53 +0000 (UTC)
commit 7e7159e48164ef0487ba039555ee0418972340e7
Author: Khaled Hosny <khaledhosny eglug org>
Date: Sat Jul 26 08:38:55 2014 +0200
[modules] Build all modules statically by default
configure.ac | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/configure.ac b/configure.ac
index 6626f55..1a4cabc 100644
--- a/configure.ac
+++ b/configure.ac
@@ -501,12 +501,12 @@ AC_MSG_CHECKING(modules to link statically)
AC_ARG_WITH(included_modules,
AC_HELP_STRING([--with-included-modules=no/yes/MODULE1 MODULE2 ...],
- [build the given modules included @<:@default=no@:>@]))
+ [build the given modules included @<:@default=yes@:>@]))
included_modules=""
case x$with_included_modules in
- xyes) included_modules=$all_modules ;;
- xno|x) included_modules="" ;;
+ xyes|x) included_modules=$all_modules ;;
+ xno) included_modules="" ;;
*) included_modules=$with_included_modules ;;
esac
AC_MSG_RESULT($included_modules)
@@ -519,12 +519,12 @@ AC_MSG_CHECKING(dynamic modules to build)
AC_ARG_WITH(dynamic_modules,
AC_HELP_STRING([--with-dynamic-modules=no/yes/MODULE1 MODULE2 ...],
- [build the given dynamic modules @<:@default=yes@:>@]))
+ [build the given dynamic modules @<:@default=no@:>@]))
dynamic_modules=""
case x$with_dynamic_modules in
- xyes|x) dynamic_modules=$all_modules ;;
- xno) dynamic_modules="" ;;
+ xyes) dynamic_modules=$all_modules ;;
+ xno|x) dynamic_modules="" ;;
*) dynamic_modules=$with_dynamic_modules ;;
esac
AC_MSG_RESULT([$dynamic_modules (those built into Pango will be excluded)])
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]