diff options
| author | Paul Eggert | 2014-05-10 19:52:00 -0700 |
|---|---|---|
| committer | Paul Eggert | 2014-05-10 19:52:00 -0700 |
| commit | 0994e45d163f121a64084a3b8bf7bb67dc4cef18 (patch) | |
| tree | ec1b7142a27926b1f52632167266aa77954df8e5 | |
| parent | 68b067b393816584d2ab6356d3706aea41352209 (diff) | |
| download | emacs-0994e45d163f121a64084a3b8bf7bb67dc4cef18.tar.gz emacs-0994e45d163f121a64084a3b8bf7bb67dc4cef18.zip | |
Revert last two changes.
Fixes: debbugs:17438
| -rw-r--r-- | ChangeLog | 7 | ||||
| -rwxr-xr-x | autogen.sh | 5 |
2 files changed, 0 insertions, 12 deletions
| @@ -1,10 +1,3 @@ | |||
| 1 | 2014-05-11 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Require pkg-config 0.26 or later (Bug#17438). | ||
| 4 | Earlier versions are buggy, as pkg-config --libs can output | ||
| 5 | nothing, which causes xrandr link failures. | ||
| 6 | * autogen.sh (pkg_config_min): Make this at least 0.26. | ||
| 7 | |||
| 8 | 2014-05-07 Glenn Morris <rgm@gnu.org> | 1 | 2014-05-07 Glenn Morris <rgm@gnu.org> |
| 9 | 2 | ||
| 10 | * autogen.sh: Check for failing aclocal. | 3 | * autogen.sh: Check for failing aclocal. |
diff --git a/autogen.sh b/autogen.sh index 3d26df870d4..32f86ab8200 100755 --- a/autogen.sh +++ b/autogen.sh | |||
| @@ -42,11 +42,6 @@ autoconf_min=`sed -n 's/^ *AC_PREREQ(\([0-9\.]*\)).*/\1/p' configure.ac` | |||
| 42 | automake_min=`sed -n 's/^ *AM_INIT_AUTOMAKE(\([0-9\.]*\)).*/\1/p' configure.ac` | 42 | automake_min=`sed -n 's/^ *AM_INIT_AUTOMAKE(\([0-9\.]*\)).*/\1/p' configure.ac` |
| 43 | 43 | ||
| 44 | pkg_config_min=`sed -n 's/^ *PKG_PROG_PKG_CONFIG(\([0-9\.]*\)).*/\1/p' configure.ac` | 44 | pkg_config_min=`sed -n 's/^ *PKG_PROG_PKG_CONFIG(\([0-9\.]*\)).*/\1/p' configure.ac` |
| 45 | # Building from the repository needs pkg-config 0.26 or later; see Bug#17438. | ||
| 46 | case $pkg_config_min in | ||
| 47 | 0.[0-9] | 0.[0-9].* | 0.1[0-9] | 0.1[0-9].* | 0.2[0-5] | 0.2[0-5].* ) | ||
| 48 | pkg_config_min=0.26 | ||
| 49 | esac | ||
| 50 | 45 | ||
| 51 | ## $1 = program, eg "autoconf". | 46 | ## $1 = program, eg "autoconf". |
| 52 | ## Echo the version string, eg "2.59". | 47 | ## Echo the version string, eg "2.59". |