diff options
Diffstat (limited to 'acinclude.m4')
-rw-r--r-- | acinclude.m4 | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/acinclude.m4 b/acinclude.m4 index e0c1706c63..7b0c5d9593 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -47,12 +47,21 @@ if test x$2 = xdevpkg; then fi if test -f /etc/debian_version -a x"$tor_$1_$2_debian" != x; then AC_WARN([On Debian, you can install$h $1 using "apt-get install $tor_$1_$2_debian"]) + if test x"$tor_$1_$2_debian" != x"$tor_$1_devpkg_debian"; then + AC_WARN([ You will probably need $tor_$1_devpkg_debian too.]) + fi fi if test -f /etc/fedora-release -a x"$tor_$1_$2_redhat" != x; then AC_WARN([On Fedora Core, you can install$h $1 using "yum install $tor_$1_$2_redhat"]) + if test x"$tor_$1_$2_redhat != x"$tor_$1_devpkg_redhat"; then + AC_WARN([ You will probably need $tor_$1_devpkg_redhat too.]) + fi else if test -f /etc/redhat-release -a x"$tor_$1_$2_redhat" != x; then AC_WARN([On most Redhat-based systems, you can get$h $1 by installing the $tor_$1_$2_redhat" RPM package]) + if test x"$tor_$1_$2_redhat" != x"$tor_$1_devpkg_redhat"; then + AC_WARN([ You will probably need $tor_$1_devpkg_redhat too.]) + fi fi fi ]) |