diff options
author | Guillem Jover <guillem@debian.org> | 2007-02-19 10:49:41 +0000 |
---|---|---|
committer | Guillem Jover <guillem@hadrons.org> | 2010-06-10 23:21:21 +0200 |
commit | 15e26ad92220337f2022e06ebec21023c820a359 (patch) | |
tree | 1f606677b15edf760ce1579dde0f4f085aa9f1ec | |
parent | ebc9adad5584a2a437f21e1036d350b7b01cd0f2 (diff) | |
download | inetutils-15e26ad92220337f2022e06ebec21023c820a359.tar.gz |
Fix typo for ifreq member check in configure.ac
Which was making the package to FTBFS on GNU/kFreeBSD.
Closes: #403708
Thanks-to: Petr Salinger <Petr.Salinger@seznam.cz>
-rw-r--r-- | debian/changelog | 9 | ||||
-rw-r--r-- | debian/patches/03_ifreq_typo.patch | 13 | ||||
-rw-r--r-- | debian/patches/series | 1 |
3 files changed, 23 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 044029f..7021e05 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,12 @@ +inetutils (2:1.5.dfsg.1-3) UNRELEASED; urgency=low + + * Fix typo for ifreq member check in configure.ac which was making the + package to FTBFS on GNU/kFreeBSD. (Closes: #403708) + - debian/patches/03_ifreq_typo.patch: New file. + Thanks to Petr Salinger <Petr.Salinger@seznam.cz>. + + -- Guillem Jover <guillem@debian.org> Mon, 19 Feb 2007 01:49:16 +0200 + inetutils (2:1.5.dfsg.1-2) unstable; urgency=low * Add a Depends on tcpd in inetutils-inetd. diff --git a/debian/patches/03_ifreq_typo.patch b/debian/patches/03_ifreq_typo.patch new file mode 100644 index 0000000..e40a1df --- /dev/null +++ b/debian/patches/03_ifreq_typo.patch @@ -0,0 +1,13 @@ +Index: configure.ac +=================================================================== +--- configure.ac.orig 2007-02-19 01:44:47.000000000 +0200 ++++ configure.ac 2007-02-19 01:44:52.000000000 +0200 +@@ -531,7 +531,7 @@ if test "$ac_cv_header_utmpx_h" = yes; t + IU_CHECK_MEMBERS([struct utmpx.ut_tv], , , [#include <utmpx.h>]) + fi + +-IU_CHECK_MEMBERS([stuct ifreq.ifr_index, ++IU_CHECK_MEMBERS([struct ifreq.ifr_index, + struct ifreq.ifr_netmask, + struct ifreq.ifr_broadaddr], , , + [#include <sys/types.h> diff --git a/debian/patches/series b/debian/patches/series index 7e8db5e..12f3bd5 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -1,6 +1,7 @@ 00_build_dfsg.patch 01_no_link_extralibs.patch -p0 02_missing_config.rpath.patch -p0 +03_ifreq_typo.patch -p0 10_syslog_klog_doc.patch -p0 22_syslogd_conf.patch -p1 30_ping_suid_perms.patch -p0 |