Ergebnis für URL: http://bugs.debian.org/529821
                           Debian Bug report logs - [1]#529821
                         elinks: FTBFS against gnutls26 >= 2.7.x

   [2]version graph

   Package: [3]elinks; Maintainer for [4]elinks is [5]aHhkm+d+ a+l+m+hkm+w+d+y+
   (Ahmed El-Mahmoudy) ; Source for [6]elinks is
   [7]src:elinks ([8]PTS, [9]buildd, [10]popcon).

   Reported by: [11]Andreas Metzler 

   Date: Thu, 21 May 2009 17:57:02 UTC

   Severity: important

   Tags: fixed-upstream

   Found in version elinks/0.12~pre3-2

   Fixed in version elinks/0.12~pre4-1

   Done: Y Giridhar Appaji Nag 

   Bug is archived. No further changes may be made.

   [12]Toggle useless messages

   View this report as an [13]mbox folder, [14]status mbox, [15]maintainer mbox
     ____________________________________________________________________________

   Report forwarded to debian-bugs-dist@lists.debian.org, Y Giridhar Appaji Nag
   :
   Bug#529821; Package elinks. (Thu, 21 May 2009 17:57:04 GMT) ([16]full text,
   [17]mbox, [18]link).
     ____________________________________________________________________________

   Acknowledgement sent to Andreas Metzler :
   New Bug report received and forwarded. Copy sent to Y Giridhar Appaji Nag
   . (Thu, 21 May 2009 17:57:04 GMT) ([19]full text, [20]mbox,
   [21]link).
     ____________________________________________________________________________

   [22]Message #5 received at submit@bugs.debian.org ([23]full text, [24]mbox,
   [25]reply):

   From: Andreas Metzler 
   To: Debian Bug Tracking System 
   Subject: elinks: FTBFS against gnutls26 >= 2.7.x
   Date: Thu, 21 May 2009 19:50:59 +0200

Package: elinks
Version: 0.12~pre3-2
Severity: important

The package's ./configure script is trying to invoke libgnutls-config
and/or libgnutls-extra-config to search for the gnutls library. Newer
version of gnutls do not ship these scripts anymore.

Please use another way to search for the gnutls library, e.g.
pkg-config or AC_LIB_HAVE_LINKFLAGS or AC_CHECK_FUNCS. For packages
that already use pkg-config to search for other libraries, pkg-config
will probably be the simplest way. Debian's gnutls packages have
shipped the necessary .pc files 0.3.5-1 (June 2006).

This is going to be a rc bug once gnutls26 2.8 is released and
uploaded to unstable. The second release candidata of 2.8 (2.7.12) is
available for testing in Debian/experimental.

cu andreas



     ____________________________________________________________________________

   Information forwarded to debian-bugs-dist@lists.debian.org, Y Giridhar Appaji Nag
   :
   Bug#529821; Package elinks. (Thu, 21 May 2009 20:33:02 GMT) ([26]full text,
   [27]mbox, [28]link).
     ____________________________________________________________________________

   Acknowledgement sent to Kalle Olavi Niemitalo :
   Extra info received and forwarded to list. Copy sent to Y Giridhar Appaji Nag
   . (Thu, 21 May 2009 20:33:02 GMT) ([29]full text, [30]mbox,
   [31]link).
     ____________________________________________________________________________

   [32]Message #10 received at 529821@bugs.debian.org ([33]full text, [34]mbox,
   [35]reply):

   From: Kalle Olavi Niemitalo 
   To: 529821@bugs.debian.org, elinks-dev@linuxfromscratch.org
   Subject: Re: Bug#529821: elinks: FTBFS against gnutls26 >= 2.7.x
   Date: Thu, 21 May 2009 23:20:30 +0300

[[36]Message part 1 (text/plain, inline)]
Andreas Metzler  writes:

> The package's ./configure script is trying to invoke libgnutls-config
> and/or libgnutls-extra-config to search for the gnutls library. Newer
> version of gnutls do not ship these scripts anymore.

I'll push the following patch to elinks-0.12 in the weekend if
nobody objects.  And then perhaps a separate one to mention the
pkg-config dependency in doc/installation.txt.

From aed0cd5e1b1ed3043fe409619d5a832b39895496 Mon Sep 17 00:00:00 2001
From: Kalle Olavi Niemitalo 
Date: Thu, 21 May 2009 22:52:57 +0300
Subject: [PATCH] Debian bug 529821: Use pkg-config, not libgnutls-config

The configure script used to run libgnutls-config in order to find the
compiler and linker options needed for using GNUTLS, but GNUTLS 2.7
apparently doesn't ship that script any more.  Use pkg-config instead.
GNUTLS 1.2.0 is the oldest version supported by ELinks, and that already
installs the gnutls.pc file required by pkg-config.

This commit also removes support for configure --with-gnutls=DIR.
The configure script used to look for libgnutls-config in DIR.
DIR thus had to be a directory where executable programs were installed,
and it's unlikely that gnutls.pc would be found there.  So, any callers
that used this feature would have to be changed anyway, and they can as
well be changed to set the PKG_CONFIG_PATH environment variable instead.
---
 NEWS         |    2 +
 configure.in |  110 +++++++++++++++++++++++++--------------------------------
 2 files changed, 50 insertions(+), 62 deletions(-)

diff --git a/NEWS b/NEWS
index 7a7ecc5..4b7a894 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,8 @@ includes the changes listed under ``ELinks 0.11.6.GIT now'' below.
 * critical bug 1071: Fix crash in get_dom_node_child.
 * Debian build bug 526349: Include asciidoc.py from AsciiDoc 7.1.2,
   to remove all dependencies on the installed version.
+* Debian build bug 529821: Use ``pkg-config gnutls'' instead of
+  ``libgnutls-config'', which is not included in GNUTLS 2.7.x.
 * build enhancement: Recognize ``configure --without-tre''.

 ELinks 0.12pre3:
diff --git a/configure.in b/configure.in
index 46cbb9a..d2af322 100644
--- a/configure.in
+++ b/configure.in
@@ -1004,15 +1004,14 @@ disable_openssl=""
 disable_gnutls=""
 enable_gnutls=""

-AC_ARG_WITH(gnutls, [  --without-gnutls        disable GNUTLS SSL support],
-           [if test "$with_gnutls" = no;  then disable_gnutls=yes; fi])
-AC_ARG_WITH(gnutls, [[  --with-gnutls[=DIR]     enable GNUTLS SSL support]],
-           [if test "$with_gnutls" != no;  then enable_gnutls=yes; fi])
-gnutls_withval="$withval"
-
-if test "$enable_gnutls" = yes; then
-       disable_openssl=yes;
-fi
+AC_ARG_WITH(gnutls, [[  --without-gnutls        disable GNUTLS SSL support]])
+AC_ARG_WITH(gnutls, [[  --with-gnutls           enable GNUTLS SSL support]],
+           [case "$with_gnutls" in
+               "no") disable_gnutls=yes;;
+               "yes") enable_gnutls=yes; disable_openssl=yes;;
+               *) AC_MSG_WARN([[Support for --with-gnutls=DIR has been removed.
+You may have to set the PKG_CONFIG_PATH environment variable instead.]]);;
+            esac])

 AC_ARG_WITH(openssl, [  --without-openssl       disable OpenSSL support],
            [if test "$with_openssl" = no;  then disable_openssl=yes; fi])
@@ -1071,68 +1070,55 @@ AC_MSG_RESULT($cf_result)

 CONFIG_GNUTLS_OPENSSL_COMPAT=no
 # ---- GNU TLS
-dnl We can't have AC_MSG_CHECKING here, because AC_PATH_PROG prints its own and
-dnl it looks ugly then.
-
 if test "$cf_result" = yes; then
-       cf_result="not used"
-
-else
-       EL_SAVE_FLAGS
-       cf_result="no"
+       AC_MSG_CHECKING([[for GNUTLS]])
+       AC_MSG_RESULT([[not used, because OpenSSL was chosen]])

-       if test -z "$disable_gnutls"; then
-               # Sure, we maybe _could_ use their macro, but how to ensure
-               # that the ./configure script won't fail if the macro won't be
-               # found..? :( --pasky
+elif test -n "$disable_gnutls"; then
+       AC_MSG_CHECKING([[for GNUTLS]])
+       AC_MSG_RESULT([[explicitly disabled]])

-               GNUTLS_PATH="$PATH:/usr/local/gnutls:/opt:/opt/gnutls"
-
-               if test -d "$gnutls_withval"; then
-                       GNUTLS_PATH="$gnutls_withval:$GNUTLS_PATH"
-               fi
-
-               AC_PATH_PROG(LIBGNUTLS_CONFIG, libgnutls-config, no, $GNUTLS_PATH)
-
-               if test "$LIBGNUTLS_CONFIG" = "no" ; then
-                       cf_result=no
-               else
-                       GNUTLS_CFLAGS=`$LIBGNUTLS_CONFIG --cflags`
-                       GNUTLS_LIBS=`$LIBGNUTLS_CONFIG --libs`
-
-                       LIBS="$GNUTLS_LIBS $LIBS_X"
-                       CFLAGS="$CFLAGS_X $GNUTLS_CFLAGS"
-                       CPPFLAGS="$CPPFLAGS_X $GNUTLS_CFLAGS"
-
-                       # Verify if it's really usable.  gnutls_session was
-                       # renamed to gnutls_session_t before GNU TLS 1.2.0
-                       # (on 2004-06-13); ELinks now requires this.
-                       AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include ]], [[
gnutls_session_t dummy;
-                                    gnutls_check_version(NULL)]])],[cf_result=yes],[cf_re
sult=no])
-               fi
+else
+       cf_result=no
+       AC_MSG_CHECKING([[for GNUTLS (1.2 or later) in pkg-config]])
+       if pkg-config --atleast-version=1.2 gnutls; then
+               GNUTLS_CFLAGS=`pkg-config --cflags gnutls`
+               GNUTLS_LIBS=`pkg-config --libs gnutls`
+               AC_MSG_RESULT([[yes: $GNUTLS_CFLAGS $GNUTLS_LIBS]])
+
+               # Verify if it's really usable.  gnutls_session was
+               # renamed to gnutls_session_t before GNU TLS 1.2.0
+               # (on 2004-06-13); ELinks now requires this.
+               AC_MSG_CHECKING([[whether GNUTLS can be linked with]])
+               EL_SAVE_FLAGS
+               LIBS="$GNUTLS_LIBS $LIBS"
+               CFLAGS="$CFLAGS $GNUTLS_CFLAGS"
+               CPPFLAGS="$CPPFLAGS $GNUTLS_CFLAGS"
+               AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include ]],
+                                               [[gnutls_session_t dummy;
+                                                 gnutls_check_version(NULL)]])],
+                              [cf_result=yes],
+                              [cf_result=no])
+               EL_RESTORE_FLAGS
+       fi
+       # This can match either AC_MSG_CHECKING above.  A bit hacky...
+       AC_MSG_RESULT([[$cf_result]])

-               if test "$cf_result" = yes; then
-                       EL_CONFIG(CONFIG_GNUTLS, [GNUTLS])
+       if test "$cf_result" = yes; then
+               EL_CONFIG(CONFIG_GNUTLS, [GNUTLS])

-                       CFLAGS="$CFLAGS_X"
-                       AC_SUBST(GNUTLS_CFLAGS)
+               LIBS="$GNUTLS_LIBS $LIBS"
+               AC_SUBST(GNUTLS_CFLAGS)

-                       # GnuTLS 2.2.0 changed libgnutls-openssl from GPLv2+
-                       # to GPLv3+.  Don't link that with the GPLv2 ELinks.
-                       # ELinks will use its internal MD5 code instead.
-                       CONFIG_GNUTLS_OPENSSL_COMPAT=no
-               else
-                       if test -n "$gnutls_withval" && test "x$gnutls_withval" != xno; th
en
-                               AC_MSG_ERROR([GNUTLS (1.2 or later) not found.  ELinks no
longer supports GNUTLS 1.1.])
-                       fi
-                       EL_RESTORE_FLAGS
-               fi
+               # GnuTLS 2.2.0 changed libgnutls-openssl from GPLv2+
+               # to GPLv3+.  Don't link that with the GPLv2 ELinks.
+               # ELinks will use its internal MD5 code instead.
+               CONFIG_GNUTLS_OPENSSL_COMPAT=no
+       elif test "${with_gnutls-no}" != "no"; then
+               AC_MSG_ERROR([[GNUTLS (1.2 or later) not found.  ELinks no longer supports
 GNUTLS 1.1.]])
        fi
 fi

-AC_MSG_CHECKING([for GNU TLS (1.2 or later)])
-AC_MSG_RESULT($cf_result)
-
 # Final SSL setup

 EL_CONFIG_DEPENDS(CONFIG_SSL, [CONFIG_OPENSSL CONFIG_GNUTLS], [SSL])
--
1.6.2.5.13.g7f975


[[37]Message part 2 (application/pgp-signature, inline)]
     ____________________________________________________________________________

   Information forwarded to debian-bugs-dist@lists.debian.org, Y Giridhar Appaji Nag
   :
   Bug#529821; Package elinks. (Sun, 31 May 2009 10:12:08 GMT) ([38]full text,
   [39]mbox, [40]link).
     ____________________________________________________________________________

   Acknowledgement sent to Kalle Olavi Niemitalo :
   Extra info received and forwarded to list. Copy sent to Y Giridhar Appaji Nag
   . (Sun, 31 May 2009 10:12:08 GMT) ([41]full text, [42]mbox,
   [43]link).
     ____________________________________________________________________________

   [44]Message #15 received at 529821@bugs.debian.org ([45]full text, [46]mbox,
   [47]reply):

   From: Kalle Olavi Niemitalo 
   To: 526349@bugs.debian.org, 529821@bugs.debian.org, 528661@bugs.debian.org
   Subject: fixed in upstream ELinks 0.12pre4
   Date: Sun, 31 May 2009 13:01:02 +0300

[[48]Message part 1 (text/plain, inline)]
package elinks
tags 529821 + fixed-upstream
quit

These bugs have been fixed in today's upstream ELinks 0.12pre4.

* Debian build bug 529821: Use ``pkg-config gnutls'' instead of
  ``libgnutls-config'', which is not included in GNUTLS 2.7.x.
  You can no longer specify the location of GNUTLS using
  ``configure --with-gnutls=DIR''.
* Debian bug 528661: If using GNUTLS 2.1.7 or later, disable various
  TLS extensions (including CERT and SERVERNAME) to help handshaking
  with the SSLv3-only bugzilla.novell.com.
* Debian build bug 526349: Include asciidoc.py from AsciiDoc 7.1.2,
  to remove all dependencies on the installed version.

FYI, there's also one change thought useful for Debian's elinks-lite.

* build enhancement: Recognize ``configure --without-tre''.

[[49]Message part 2 (application/pgp-signature, inline)]
     ____________________________________________________________________________

   Tags added: fixed-upstream Request was from Kalle Olavi Niemitalo  to
   control@bugs.debian.org. (Sun, 31 May 2009 10:12:10 GMT) ([50]full text,
   [51]mbox, [52]link).
     ____________________________________________________________________________

   Tags added: pending Request was from Y Giridhar Appaji Nag  to
   control@bugs.debian.org. (Tue, 02 Jun 2009 12:36:05 GMT) ([53]full text,
   [54]mbox, [55]link).
     ____________________________________________________________________________

   Reply sent to Y Giridhar Appaji Nag :
   You have taken responsibility. (Sun, 07 Jun 2009 17:36:13 GMT) ([56]full text,
   [57]mbox, [58]link).
     ____________________________________________________________________________

   Notification sent to Andreas Metzler :
   Bug acknowledged by developer. (Sun, 07 Jun 2009 17:36:13 GMT) ([59]full text,
   [60]mbox, [61]link).
     ____________________________________________________________________________

   [62]Message #24 received at 529821-close@bugs.debian.org ([63]full text,
   [64]mbox, [65]reply):

   From: Y Giridhar Appaji Nag 
   To: 529821-close@bugs.debian.org
   Subject: Bug#529821: fixed in elinks 0.12~pre4-1
   Date: Sun, 07 Jun 2009 17:17:08 +0000

Source: elinks
Source-Version: 0.12~pre4-1

We believe that the bug you reported is fixed in the latest version of
elinks, which is due to be installed in the Debian FTP archive:

elinks-data_0.12~pre4-1_all.deb
  to pool/main/e/elinks/elinks-data_0.12~pre4-1_all.deb
elinks-doc_0.12~pre4-1_all.deb
  to pool/main/e/elinks/elinks-doc_0.12~pre4-1_all.deb
elinks-lite_0.12~pre4-1_i386.deb
  to pool/main/e/elinks/elinks-lite_0.12~pre4-1_i386.deb
elinks_0.12~pre4-1.diff.gz
  to pool/main/e/elinks/elinks_0.12~pre4-1.diff.gz
elinks_0.12~pre4-1.dsc
  to pool/main/e/elinks/elinks_0.12~pre4-1.dsc
elinks_0.12~pre4-1_i386.deb
  to pool/main/e/elinks/elinks_0.12~pre4-1_i386.deb
elinks_0.12~pre4.orig.tar.gz
  to pool/main/e/elinks/elinks_0.12~pre4.orig.tar.gz



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 529821@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Y Giridhar Appaji Nag  (supplier of updated elinks package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmaster@debian.org)


-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA256

Format: 1.8
Date: Mon, 01 Jun 2009 16:38:57 +0530
Source: elinks
Binary: elinks elinks-data elinks-doc elinks-lite
Architecture: source i386 all
Version: 0.12~pre4-1
Distribution: unstable
Urgency: low
Maintainer: Y Giridhar Appaji Nag 
Changed-By: Y Giridhar Appaji Nag 
Description:
 elinks     - advanced text-mode WWW browser
 elinks-data - advanced text-mode WWW browser - data files
 elinks-doc - advanced text-mode WWW browser - documentation
 elinks-lite - advanced text-mode WWW browser - lightweight version
Closes: [66]514544 [67]526349 [68]528661 [69]529821
Changes:
 elinks (0.12~pre4-1) unstable; urgency=low
 .
   * New upstream release 0.12pre4
     + Refresh patches for new upstream release
     + Includes asciidoc.py from AsciiDoc 7.1.2 (Closes: #[70]526349)
     + With GNUTLS 2.1.7 or later disable few TLS extensions -- helps
       handshaking with SSLv3-only bugzilla.novell.com (Closes: #[71]528661)
     + Fixes crash while viewing RSS files (Closes: #[72]514544)
     + Prevents FTBFS with gnutls26 >= 2.7.x:  Build-Depends: pkg-config to
       use 'pkg-config gnutls' instead of 'libgnutls-config' (Closes: #[73]529821)
   * Compile elinks-lite with --without-tre
Checksums-Sha1:
 7917ab019addd32484fc0a0d2f0bb838356c2ef8 1814 elinks_0.12~pre4-1.dsc
 a205912dca137efa817a92bf4ac3a0fb76b7854f 4178911 elinks_0.12~pre4.orig.tar.gz
 3b969594c6923856f01527bba4cbe50034a59159 21071 elinks_0.12~pre4-1.diff.gz
 48547d6c511f7cb98648ab720093e3ae5ffa8239 530422 elinks_0.12~pre4-1_i386.deb
 c321237c795a3179fae38b27c5f06a524127b1d4 353976 elinks-lite_0.12~pre4-1_i386.deb
 2f03fdf8c9be54a0895784019b2f059998b70ac2 587108 elinks-data_0.12~pre4-1_all.deb
 d7c30ac7330c3a8cece18decffdd081e7d187440 622710 elinks-doc_0.12~pre4-1_all.deb
Checksums-Sha256:
 0e3604ef6b98d5cf9ca291d5dc409d2dee83a7a490d43d6afc2a7a3d4f06f799 1814 elinks_0.12~pre4-1.
dsc
 8f9f4b912312db6cb0303ac3c73e19bcac71a1714898b851877f8fcda5d22504 4178911 elinks_0.12~pre4
.orig.tar.gz
 6852763a11683656aae79c3acdd567c74bf29adda78da01375f577277761098e 21071 elinks_0.12~pre4-1
.diff.gz
 7ee900c698bf0c5f6c87986963f05350cfec8c809dcbd783ce64c1b1a36cfbf0 530422 elinks_0.12~pre4-
1_i386.deb
 03a39c047e89ea8df4f88fe7b63611fbe74be385f93a6e19655f56e65186d243 353976 elinks-lite_0.12~
pre4-1_i386.deb
 7b54fd999109ab793b94f11a0d9abb23cc6617c27e006ab491d1c3ede93168b6 587108 elinks-data_0.12~
pre4-1_all.deb
 24140d295a9324fe8583fa5e99e0188f7750a816dbaf4092fcc2920e3e4f6366 622710 elinks-doc_0.12~p
re4-1_all.deb
Files:
 4073253692bf30018f448d88588d0863 1814 web optional elinks_0.12~pre4-1.dsc
 4fc38dfe0835268840dc20a28d6c5d0a 4178911 web optional elinks_0.12~pre4.orig.tar.gz
 7ff7856e12fe2d794c519c08aaf0874c 21071 web optional elinks_0.12~pre4-1.diff.gz
 bb3ae2ff9e91b39f04ae7f798f6789ed 530422 web optional elinks_0.12~pre4-1_i386.deb
 6e630de566355752a25148a8f8ee1319 353976 web extra elinks-lite_0.12~pre4-1_i386.deb
 0d25db752c70a85814591657c7a4f9f4 587108 web optional elinks-data_0.12~pre4-1_all.deb
 d05e98ff284e39a7a2fb57645e3b20b6 622710 doc optional elinks-doc_0.12~pre4-1_all.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.9 (GNU/Linux)

iQEcBAEBCAAGBQJKK/OeAAoJENbfLHnbvsrcXCIH/RLIXoUW8RFGSZaGTWtM0350
HiTPdO50rqiDVmqkkjI/0kCeImYB6Fbj9KW0DXfC76MP5QLtT79SAAPK/i1sRD4U
m+VZ1R5Y9TTKmcLyqQvOh42Pk7bv/KOOh0OaUdjCsraibP9MuVbHoTLD/m421iLE
MJgFrPmCGtPcK55PMgg3bjM+KarSUZXbF6safPBncdBnPwYWuqAkeYnuRzpWwS23
uaTMcTCwC6OtbgItEQPy7h8bLgWvUzaVehUJERS5wK4rORMZk+qhJN0aUG9MD14a
WOaWX1z09qF5QuBUV19aGlo4X4381QvkZtA/6N/cl5BSJbXAvEDYJBNlp6UvWa4=
=/tb/
-----END PGP SIGNATURE-----




     ____________________________________________________________________________

   Bug archived. Request was from Debbugs Internal Request 
   to internal_control@bugs.debian.org. (Fri, 24 Jul 2009 07:30:33 GMT) ([74]full
   text, [75]mbox, [76]link).
     ____________________________________________________________________________

   Send a report that [77]this bug log contains spam.
     ____________________________________________________________________________


    Debian bug tracking system administrator . Last
    modified: Wed May 8 22:46:03 2024; Machine Name: bembo
    [79]Debian Bug tracking system
    Debbugs is free software and licensed under the terms of the GNU Public License
    version 2. The current version can be obtained from
    [80]https://bugs.debian.org/debbugs-source/.
    Copyright © 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97
    Ian Jackson, 2005-2017 Don Armstrong, and many other contributors.

References

   1. mailto:529821@bugs.debian.org
   2. https://bugs.debian.org/cgi-bin/version.cgi?info=1;found=elinks%2F0.12~pre3-2;package=elinks;fixed=elinks%2F0.12~pre4-1;absolute=0;collapse=1
   3. https://bugs.debian.org/cgi-bin/pkgreport.cgi?package=elinks
   4. https://bugs.debian.org/cgi-bin/pkgreport.cgi?package=elinks
   5. https://bugs.debian.org/cgi-bin/pkgreport.cgi?maint=aelmahmoudy%40users.sourceforge.net
   6. https://bugs.debian.org/cgi-bin/pkgreport.cgi?package=elinks
   7. https://bugs.debian.org/cgi-bin/pkgreport.cgi?src=elinks
   8. https://tracker.debian.org/pkg/elinks
   9. https://buildd.debian.org/elinks
  10. https://qa.debian.org/popcon.php?package=elinks
  11. https://bugs.debian.org/cgi-bin/pkgreport.cgi?submitter=ametzler%40downhill.at.eu.org
  12. javascript:toggle_infmessages();
  13. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes
  14. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;mboxstatus=yes
  15. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;mboxmaint=yes
  16. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=2
  17. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=2
  18. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#1
  19. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=4
  20. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=4
  21. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#3
  22. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#5
  23. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=5
  24. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=5
  25. mailto:529821@bugs.debian.org?In-Reply-To=%3C20090521175059.GF3443%40downhill.g.la%3E&subject=Re%3A%20elinks%3A%20FTBFS%20against%20gnutls26%20%3E%3D%202.7.x&body=On%20Thu%2C%2021%20May%202009%2019%3A50%3A59%20%2B0200%20Andreas%20Metzler%20%3Cametzler%40downhill.at.eu.org%3E%20wrote%3A%0A%3E%20Package%3A%20elinks%0A%3E%20Version%3A%200.12~pre3-2%0A%3E%20Severity%3A%20important%0A%3E%20%0A%3E%20The%20package%27s%20.%2Fconfigure%20script%20is%20trying%20to%20invoke%20libgnutls-config%0A%3E%20and%2For%20libgnutls-extra-config%20to%20search%20for%20the%20gnutls%20library.%20Newer%0A%3E%20version%20of%20gnutls%20do%20not%20ship%20these%20scripts%20anymore.%0A%3E%20%0A%3E%20Please%20use%20another%20way%20to%20search%20for%20the%20gnutls%20library%2C%20e.g.%0A%3E%20pkg-config%20or%20AC_LIB_HAVE_LINKFLAGS%20or%20AC_CHECK_FUNCS.%20For%20packages%0A%3E%20that%20already%20use%20pkg-config%20to%20search%20for%20other%20libraries%2C%20pkg-config%0A%3E%20will%20probably%20be%20the%20simplest%20way.%20Debian%27s%20gnutls%20packages%20have%0A%3E%20shipped%20the%20necessary%20.pc%20files%200.3.5-1%20%28June%202006%29.%0A%3E%20%0A%3E%20This%20is%20going%20to%20be%20a%20rc%20bug%20once%20gnutls26%202.8%20is%20released%20and%0A%3E%20uploaded%20to%20unstable.%20The%20second%20release%20candidata%20of%202.8%20%282.7.12%29%20is%0A%3E%20available%20for%20testing%20in%20Debian%2Fexperimental.%0A%3E%20%0A%3E%20cu%20andreas%0A%3E%20%0A%3E%20%0A%3E%20%0A&References=%3C20090521175059.GF3443%40downhill.g.la%3E
  26. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=7
  27. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=7
  28. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#6
  29. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=9
  30. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=9
  31. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#8
  32. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#10
  33. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=10
  34. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=10
  35.
  36. https://bugs.debian.org/cgi-bin/bugreport.cgi?att=0;bug=529821;msg=10
  37. https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=529821;msg=10
  38. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=12
  39. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=12
  40. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#11
  41. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=14
  42. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=14
  43. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#13
  44. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#15
  45. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=15
  46. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=15
  47. mailto:529821@bugs.debian.org?In-Reply-To=%3C873aal8uch.fsf%40Astalo.kon.iki.fi%3E&subject=Re%3A%20fixed%20in%20upstream%20ELinks%200.12pre4&body=On%20Sun%2C%2031%20May%202009%2013%3A01%3A02%20%2B0300%20Kalle%20Olavi%20Niemitalo%20%3Ckon%40iki.fi%3E%20wrote%3A%0A%3E%20package%20elinks%0A%3E%20tags%20529821%20%2B%20fixed-upstream%0A%3E%20quit%0A%3E%20%0A%3E%20These%20bugs%20have%20been%20fixed%20in%20today%27s%20upstream%20ELinks%200.12pre4.%0A%3E%20%0A%3E%20%2A%20Debian%20build%20bug%20529821%3A%20Use%20%60%60pkg-config%20gnutls%27%27%20instead%20of%0A%3E%20%20%20%60%60libgnutls-config%27%27%2C%20which%20is%20not%20included%20in%20GNUTLS%202.7.x.%0A%3E%20%20%20You%20can%20no%20longer%20specify%20the%20location%20of%20GNUTLS%20using%0A%3E%20%20%20%60%60configure%20--with-gnutls%3DDIR%27%27.%0A%3E%20%2A%20Debian%20bug%20528661%3A%20If%20using%20GNUTLS%202.1.7%20or%20later%2C%20disable%20various%0A%3E%20%20%20TLS%20extensions%20%28including%20CERT%20and%20SERVERNAME%29%20to%20help%20handshaking%0A%3E%20%20%20with%20the%20SSLv3-only%20bugzilla.novell.com.%0A%3E%20%2A%20Debian%20build%20bug%20526349%3A%20Include%20asciidoc.py%20from%20AsciiDoc%207.1.2%2C%0A%3E%20%20%20to%20remove%20all%20dependencies%20on%20the%20installed%20version.%0A%3E%20%0A%3E%20FYI%2C%20there%27s%20also%20one%20change%20thought%20useful%20for%20Debian%27s%20elinks-lite.%0A%3E%20%0A%3E%20%2A%20build%20enhancement%3A%20Recognize%20%60%60configure%20--without-tre%27%27.%0A&References=%3C873aal8uch.fsf%40Astalo.kon.iki.fi%3E
  48. https://bugs.debian.org/cgi-bin/bugreport.cgi?att=0;bug=529821;msg=15
  49. https://bugs.debian.org/cgi-bin/bugreport.cgi?att=1;bug=529821;msg=15
  50. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=17
  51. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=17
  52. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#16
  53. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=19
  54. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=19
  55. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#18
  56. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=21
  57. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=21
  58. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#20
  59. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=23
  60. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=23
  61. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#22
  62. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#24
  63. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=24
  64. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=24
  65.
  66. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514544
  67. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526349
  68. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528661
  69. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821
  70. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=526349
  71. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=528661
  72. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=514544
  73. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821
  74. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;msg=26
  75. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821;mbox=yes;msg=26
  76. https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=529821#25
  77. https://bugs.debian.org/cgi-bin/bugspam.cgi?bug=529821
  78. mailto:owner@bugs.debian.org
  79. https://www.debian.org/Bugs/
  80. https://bugs.debian.org/debbugs-source/


Usage: http://www.kk-software.de/kklynxview/get/URL
e.g. http://www.kk-software.de/kklynxview/get/http://www.kk-software.de
Errormessages are in German, sorry ;-)