diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-09-30 15:41:42 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-09-30 15:45:20 +0300 |
commit | 62a4321812cd5ad919198f2d824e48216bdf03d0 (patch) | |
tree | 27ffba5f4684cddf81a40a4c717448457f4f4d13 /configure.in | |
parent | d25b61cd7fcf0c5c195bf5cc2db26b5b427012f9 (diff) |
Surely MOZILLA_TOOLKIT is never "gtk2" for MacOSX
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/configure.in b/configure.in index 651174427aed..5da3d75e3b34 100644 --- a/configure.in +++ b/configure.in @@ -5898,14 +5898,9 @@ Use "./download" to download.]) AC_MSG_RESULT([ok]) fi elif test "$_os" = "Darwin"; then - if test "$MOZILLA_TOOLKIT" = "gtk2"; then - AC_MSG_NOTICE([checking whether Mozilla can be built...]) - PKG_CHECK_MODULES(MOZGTK2, gtk+-2.0 >= 2.4 libIDL-2.0 >= 0.8, AC_MSG_NOTICE([OK - can build Mozilla]), AC_MSG_ERROR([Prerequisites to build Mozilla not met. Either use the precompiled Mozilla binaries or install the missing packages])) - else - PKG_CHECK_MODULES(MOZLIBREQ, libIDL-2.0 >= 0.6.3, MOZIDL="TRUE", MOZIDL="") - if test -z "$MOZIDL"; then - AC_MSG_ERROR([libIDL 0.6.3 or newer is needed to build Mozilla with Mac toolkit.]) - fi + PKG_CHECK_MODULES(MOZLIBREQ, libIDL-2.0 >= 0.6.3, MOZIDL="TRUE", MOZIDL="") + if test -z "$MOZIDL"; then + AC_MSG_ERROR([libIDL 0.6.3 or newer is needed to build Mozilla with Mac toolkit.]) fi else # Generic Unix/Linux section |