aboutsummaryrefslogtreecommitdiff
path: root/configure
diff options
context:
space:
mode:
authorBernd Lamecker <blam@sepp.nbg.basyskom.de>2010-05-07 13:02:25 +0200
committerTorsten Rahn <Torsten.Rahn@basyskom.de>2010-05-07 13:23:28 +0200
commitabd89a5a54edc4722543b5ef5155ff3d67b7a804 (patch)
tree13ada8ea6046f04b330dd4de3766c0a5f3c6f7d1 /configure
parent02f5a292fd409defc59e52f78ae02defab3bb978 (diff)
Changes: build plainQt by default
RevBy: TrustMe
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure11
1 files changed, 8 insertions, 3 deletions
diff --git a/configure b/configure
index 7579bcf1..cf1b3292 100755
--- a/configure
+++ b/configure
@@ -60,7 +60,7 @@ CFG_DEV=no
CFG_MINIMAL=no
CFG_BUILD_TESTS=no
CFG_BUILD_BENCHMARKS=no
-CFG_BUILD_PLAINQT=no
+CFG_BUILD_PLAINQT=yes
M_DEFAULT_BUILD_PARTS="libs demos"
CFG_BUILD_PARTS=""
@@ -227,7 +227,9 @@ while [ "$#" -gt 0 ]; do
CFG_BUILD_BENCHMARKS="yes"
;;
plainqt)
- CFG_BUILD_PLAINQT="yes"
+ if [ "$VAL" = "yes" ] || [ "$VAL" = "no" ]; then
+ CFG_BUILD_PLAINQT="$VAL"
+ fi
;;
n900)
HAVE_N900="yes"
@@ -447,7 +449,6 @@ Additional options:
-tests ............. Build the tests.
-benchmarks ........ Build the benchmarks.
- -plainqt ........... Build the Plain Qt style plugin.
-n900 .............. Build libmeegotouch for the N900 device.
@@ -456,6 +457,10 @@ Additional options:
-no-gconf .......... Do not compile with gconf support.
+ -gconf ............. Compile with gconf support.
+
+ -no-plainqt......... Do not build the Plain Qt style plugin.
+ + -plainqt ........... Build the Plain Qt style plugin.
+
EOF
exit 0