aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
Diffstat (limited to 'doc')
-rw-r--r--doc/handbook/chapters/developer.texi27
1 files changed, 18 insertions, 9 deletions
diff --git a/doc/handbook/chapters/developer.texi b/doc/handbook/chapters/developer.texi
index aa52210e3..f6cf82971 100644
--- a/doc/handbook/chapters/developer.texi
+++ b/doc/handbook/chapters/developer.texi
@@ -1246,14 +1246,14 @@ for the remainder of this section.
1246 1246
1247@example 1247@example
1248cd \$TMPDIR 1248cd \$TMPDIR
1249wget https://ftp.gnu.org/gnu/gnunet/gnurl-7.60.0.tar.Z 1249wget https://ftp.gnu.org/gnu/gnunet/gnurl-7.65.3.tar.Z
1250wget https://ftp.gnu.org/gnu/gnunet/gnurl-7.60.0.tar.Z.sig 1250wget https://ftp.gnu.org/gnu/gnunet/gnurl-7.65.3.tar.Z.sig
1251@end example 1251@end example
1252 1252
1253Next, verify the digital signature of the file: 1253Next, verify the digital signature of the file:
1254 1254
1255@example 1255@example
1256gpg --verify gnurl-7.60.0.tar.Z.sig 1256gpg --verify gnurl-7.65.3.tar.Z.sig
1257@end example 1257@end example
1258 1258
1259If gpg fails, you might try with @command{gpg2} on your OS. If the error 1259If gpg fails, you might try with @command{gpg2} on your OS. If the error
@@ -1265,19 +1265,28 @@ keyserver first:
1265gpg --keyserver pgp.mit.edu --recv-keys A88C8ADD129828D7EAC02E52E22F9BBFEE348588 1265gpg --keyserver pgp.mit.edu --recv-keys A88C8ADD129828D7EAC02E52E22F9BBFEE348588
1266@end example 1266@end example
1267 1267
1268or
1269
1270@example
1271gpg --keyserver hkps://keys.openpgp.org --recv-keys A88C8ADD129828D7EAC02E52E22F9BBFEE348588
1272@end example
1273
1268and rerun the verification command. 1274and rerun the verification command.
1269 1275
1270libgnurl will require the following packages to be present at runtime: 1276libgnurl will require the following packages to be present at runtime:
1271gnutls (with DANE support / libunbound), libidn, zlib and at compile time: 1277GnuTLS (with DANE support / libunbound), libidn, zlib and at compile time:
1272libtool, groff, perl, pkg-config, and python 2.7. 1278libtool, perl, pkg-config, and (for tests) python (2.7, or
1279any version of python 3).
1273 1280
1274Once you have verified that all the required packages are present on your 1281Once you have verified that all the required packages are present on your
1275system, we can proceed to compile libgnurl: 1282system, we can proceed to compile libgnurl. This assumes you will install
1283gnurl in the default location as prefix. To change this, pass --prefix= to
1284the configure-gnurl script (which is a simple wrapper around configure).
1276 1285
1277@example 1286@example
1278tar -xvf gnurl-7.60.0.tar.Z 1287tar -xvf gnurl-7.65.3.tar.Z
1279cd gnurl-7.60.0 1288cd gnurl-7.65.3
1280sh configure --disable-ntlm-wb 1289sh ./configure-gnurl
1281make 1290make
1282make -C tests test 1291make -C tests test
1283sudo make install 1292sudo make install