aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorChristian Persch <chpe@cvs.gnome.org>2005-03-10 07:35:02 +0800
committerChristian Persch <chpe@src.gnome.org>2005-03-10 07:35:02 +0800
commit5a678bc380c1e888664f3b35063c005b017eaa82 (patch)
tree953f571db863a8a03a13a5a8ac4de0229b42d3ad /configure.ac
parent41c91b71eed3ba293be5b9e57d58ceed7b4a9c31 (diff)
downloadgsoc2013-epiphany-5a678bc380c1e888664f3b35063c005b017eaa82.tar
gsoc2013-epiphany-5a678bc380c1e888664f3b35063c005b017eaa82.tar.gz
gsoc2013-epiphany-5a678bc380c1e888664f3b35063c005b017eaa82.tar.bz2
gsoc2013-epiphany-5a678bc380c1e888664f3b35063c005b017eaa82.tar.lz
gsoc2013-epiphany-5a678bc380c1e888664f3b35063c005b017eaa82.tar.xz
gsoc2013-epiphany-5a678bc380c1e888664f3b35063c005b017eaa82.tar.zst
gsoc2013-epiphany-5a678bc380c1e888664f3b35063c005b017eaa82.zip
Prefer firefox over mozilla libraries.
2005-03-10 Christian Persch <chpe@cvs.gnome.org> * configure.ac: Prefer firefox over mozilla libraries.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index 9da6520f3..c96bbcf8d 100644
--- a/configure.ac
+++ b/configure.ac
@@ -182,10 +182,10 @@ AC_ARG_WITH([mozilla],
dnl try to autodetect: if mozilla exists, use it, else try firefox, then thunderbird
if test "x$MOZILLA" = "x"; then
- if $PKG_CONFIG --exists mozilla-gtkmozembed; then
- MOZILLA=mozilla
- elif $PKG_CONFIG --exists firefox-gtkmozembed; then
+ if $PKG_CONFIG --exists firefox-gtkmozembed; then
MOZILLA=firefox
+ elif $PKG_CONFIG --exists mozilla-gtkmozembed; then
+ MOZILLA=mozilla
elif $PKG_CONFIG --exists thunderbird-gtkmozembed; then
MOZILLA=thunderbird
else