Build: remove extra whitespace

This commit is contained in:
Christian Beer 2017-10-25 10:09:10 +02:00
parent 9585a50671
commit 0a02ac343e
1 changed files with 10 additions and 11 deletions

View File

@ -1,8 +1,8 @@
dnl These functions still require wxWidgets.m4 dnl These functions still require wxWidgets.m4
AC_DEFUN([BOINC_OPTIONS_WXWIDGETS],[ AC_DEFUN([BOINC_OPTIONS_WXWIDGETS],[
AC_ARG_ENABLE(unicode, AC_ARG_ENABLE(unicode,
AS_HELP_STRING([--enable-unicode/--disable-unicode], AS_HELP_STRING([--enable-unicode/--disable-unicode],
[enable/disable building the manager with unicode support]), [enable/disable building the manager with unicode support]),
[enable_unicode="$enableval"], [enable_unicode="$enableval"],
@ -27,14 +27,14 @@ dnl Find the default wxWidgets options.
ac_cv_wxwidgets_options="" ac_cv_wxwidgets_options=""
wx_default_config="`$WX_CONFIG ${ac_cv_wxwidgets_options} --selected-config`" wx_default_config="`$WX_CONFIG ${ac_cv_wxwidgets_options} --selected-config`"
if test "x${enable_unicode}" = x ; then if test "x${enable_unicode}" = x ; then
isuc="`echo ${wx_default_config} | grep unicode`" isuc="`echo ${wx_default_config} | grep unicode`"
if test "x${isuc}" = x ; then if test "x${isuc}" = x ; then
enable_unicode=no enable_unicode=no
else else
enable_unicode=yes enable_unicode=yes
fi fi
fi fi
if test "x${enable_unicode}" != x ; then if test "x${enable_unicode}" != x ; then
if $WX_CONFIG ${ac_cv_wxwidgets_options} --unicode=${enable_unicode} --selected-config 2>&1 >/dev/null ; then if $WX_CONFIG ${ac_cv_wxwidgets_options} --unicode=${enable_unicode} --selected-config 2>&1 >/dev/null ; then
ac_cv_wxwidgets_options="${ac_cv_wxwidgets_options} --unicode=${enable_unicode}" ac_cv_wxwidgets_options="${ac_cv_wxwidgets_options} --unicode=${enable_unicode}"
@ -45,13 +45,13 @@ dnl Find the default wxWidgets options.
else else
uprf="unicode" uprf="unicode"
nprf="ascii" nprf="ascii"
fi fi
AC_MSG_WARN([ AC_MSG_WARN([
=============================================================================== ===============================================================================
WARNING: No ${uprf} libraries for wxWidgets are installed. WARNING: No ${uprf} libraries for wxWidgets are installed.
==> building with ${nprf} libraries. ==> building with ${nprf} libraries.
You requested a ${uprf} build, but configure is unable to find ${uprf} You requested a ${uprf} build, but configure is unable to find ${uprf}
wxWidgets libraries. We will build with the default ${nprf} libraries. wxWidgets libraries. We will build with the default ${nprf} libraries.
=============================================================================== ===============================================================================
]) ])
@ -71,19 +71,18 @@ WARNING: No ${uprf} libraries for wxWidgets are installed.
gtkver=none gtkver=none
AM_CONDITIONAL([GUI_GTK], echo $wx_default_config | grep -i ^gtk 2>&1 >/dev/null) AM_CONDITIONAL([GUI_GTK], echo $wx_default_config | grep -i ^gtk 2>&1 >/dev/null)
if echo $wx_default_config | grep -i gtk 2>&1 >/dev/null ; then if echo $wx_default_config | grep -i gtk 2>&1 >/dev/null ; then
case ${wx_default_config} in case ${wx_default_config} in
gtk3-*) gtkver=gtk+-3.0 gtk3-*) gtkver=gtk+-3.0
;; ;;
gtk2-*) gtkver=gtk+-2.0 gtk2-*) gtkver=gtk+-2.0
;; ;;
gtk-*) gtkver=gtk+ gtk-*) gtkver=gtk+
;; ;;
esac esac
GTK_CFLAGS="`pkg-config --cflags $gtkver`" GTK_CFLAGS="`pkg-config --cflags $gtkver`"
GTK_LIBS="`pkg-config --libs $gtkver`" GTK_LIBS="`pkg-config --libs $gtkver`"
fi fi
AC_SUBST([GTK_CFLAGS]) AC_SUBST([GTK_CFLAGS])
AC_SUBST([GTK_LIBS]) AC_SUBST([GTK_LIBS])
AC_MSG_RESULT([$gtkver]) AC_MSG_RESULT([$gtkver])
]) ])