diff options
author | Christian Persch <chpe@cvs.gnome.org> | 2005-02-22 02:40:44 +0800 |
---|---|---|
committer | Christian Persch <chpe@src.gnome.org> | 2005-02-22 02:40:44 +0800 |
commit | 5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa (patch) | |
tree | 973308f211646df767de7484729c87004f8ef2e2 | |
parent | 38637a7ffe353f89974e1a9fe1262ce77de062ea (diff) | |
download | gsoc2013-epiphany-5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa.tar gsoc2013-epiphany-5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa.tar.gz gsoc2013-epiphany-5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa.tar.bz2 gsoc2013-epiphany-5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa.tar.lz gsoc2013-epiphany-5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa.tar.xz gsoc2013-epiphany-5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa.tar.zst gsoc2013-epiphany-5ee293ce4fbdb38ca4057eb527ecb2a446caa4fa.zip |
Use $PKG_CONFIG.
2005-02-21 Christian Persch <chpe@cvs.gnome.org>
* configure.ac:
Use $PKG_CONFIG.
-rw-r--r-- | ChangeLog | 6 | ||||
-rw-r--r-- | configure.ac | 6 |
2 files changed, 9 insertions, 3 deletions
@@ -1,5 +1,11 @@ 2005-02-21 Christian Persch <chpe@cvs.gnome.org> + * configure.ac: + + Use $PKG_CONFIG. + +2005-02-21 Christian Persch <chpe@cvs.gnome.org> + * src/ephy-shell.c: (ephy_shell_new_tab_full): Load the page after showing the window. That way, if mozilla throws up diff --git a/configure.ac b/configure.ac index 605ea8c51..4527232c2 100644 --- a/configure.ac +++ b/configure.ac @@ -170,11 +170,11 @@ 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 + if $PKG_CONFIG --exists mozilla-gtkmozembed; then MOZILLA=mozilla - elif pkg-config --exists firefox-gtkmozembed; then + elif $PKG_CONFIG --exists firefox-gtkmozembed; then MOZILLA=firefox - elif pkg-config --exists thunderbird-gtkmozembed; then + elif $PKG_CONFIG --exists thunderbird-gtkmozembed; then MOZILLA=thunderbird else AC_MSG_ERROR([no mozilla installation found]) |