Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 48269 | Differences between
and this patch

Collapse All | Expand All

(-)m4-0.4/ax_check_wx_gtk.m4 (-2 / +2 lines)
Lines 8-20 Link Here
8
[
8
[
9
  GTK_USEDVERSION=''
9
  GTK_USEDVERSION=''
10
  AC_MSG_CHECKING(if wxWindows was linked with GTK2)
10
  AC_MSG_CHECKING(if wxWindows was linked with GTK2)
11
  if $WX_CONFIG_NAME --static --libs | grep '_gtk2-' > /dev/null ; then
11
  if $WX_CONFIG_NAME --libs | grep -E '_gtk2u?d?[[-_]]' > /dev/null ; then
12
     GTK_USEDVERSION=2
12
     GTK_USEDVERSION=2
13
     AC_MSG_RESULT(yes)
13
     AC_MSG_RESULT(yes)
14
  else
14
  else
15
     AC_MSG_RESULT(no)
15
     AC_MSG_RESULT(no)
16
     AC_MSG_CHECKING(if wxWindows was linked with GTK)
16
     AC_MSG_CHECKING(if wxWindows was linked with GTK)
17
     if $WX_CONFIG_NAME --static --libs | grep '_gtk-' > /dev/null ; then
17
     if $WX_CONFIG_NAME --libs | grep -E '_gtku?d?[[-_]]' > /dev/null ; then
18
       GTK_USEDVERSION=1
18
       GTK_USEDVERSION=1
19
       AC_MSG_RESULT(yes)
19
       AC_MSG_RESULT(yes)
20
     else
20
     else

Return to bug 48269