Closed GoogleCodeExporter closed 9 years ago
You can fix this by ./configure --with-libgnutls-prefix=/usr
and make a executable script inside /usr/bin/libgnutls-config with following:
----cut-----
#!/bin/bash
pkg-config $1 gnutls
----cut-----
You might get an error about version conflict in which case you can edit script
to if $1 == "--version" then output (version its complaining about) or i just
skipped the version check in the configure file.
Original comment by kes...@gmail.com
on 9 Mar 2011 at 6:09
Thanks so much for the work around, I was having the exact same problem. Seems
like this wouldn't be that hard to address though...
Original comment by butter...@gmail.com
on 16 May 2011 at 10:35
Thank you very much. That has solved my problem !
Original comment by kerbach...@gmail.com
on 24 Jul 2011 at 1:49
[deleted comment]
pkg-config returns version on options "-modversion" so any one can create
"/usr/bin/libgnutls-config" script like:
#!/bin/bash
if [ "$1" == "--version" ]; then
pkg-config --modversion gnutls
else
pkg-config $1 gnutls
fi
Original comment by jagdeesh...@gmail.com
on 21 Sep 2011 at 9:31
Original comment by meduke...@gmail.com
on 7 Oct 2011 at 10:06
Original issue reported on code.google.com by
tubeclea...@gmail.com
on 3 Mar 2011 at 8:02