You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
352 B
15 lines
352 B
CPPFLAGS="$CPPFLAGS -DKOMMANDER -DDESIGNER -DQT_NO_SQL -DHAVE_KDE"
|
|
|
|
# Process user input to configure
|
|
build_kommander="yes"
|
|
AC_ARG_WITH(kommander,
|
|
[ --without-kommander don't build Kommander],
|
|
[if test "$withval" = "no" ; then
|
|
build_kommander="no"
|
|
fi])
|
|
|
|
if test "$build_kommander" = "no"; then
|
|
DO_NOT_COMPILE="$DO_NOT_COMPILE kommander"
|
|
fi
|
|
|