aboutsummaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorng0 <ng0@infotropique.org>2017-09-06 07:22:18 +0000
committerng0 <ng0@infotropique.org>2017-09-06 07:22:18 +0000
commit8dc5e74692bffa4e1c6c9fc5478f58161c3cf712 (patch)
tree4f4a705c560b7ca896870321cd2bcdfaef5c188d /doc
parent2efea52adf3614043d95cb58da66d372e2bc9451 (diff)
downloadgnunet-8dc5e74692bffa4e1c6c9fc5478f58161c3cf712.tar.gz
gnunet-8dc5e74692bffa4e1c6c9fc5478f58161c3cf712.zip
doc: gnunet-c-tutorial: ftp://ftp.gnu.org -> https://gnu.org + gnupg file server location changed.
Diffstat (limited to 'doc')
-rw-r--r--doc/gnunet-c-tutorial.texi12
1 files changed, 6 insertions, 6 deletions
diff --git a/doc/gnunet-c-tutorial.texi b/doc/gnunet-c-tutorial.texi
index c62c9c076..03edeba8c 100644
--- a/doc/gnunet-c-tutorial.texi
+++ b/doc/gnunet-c-tutorial.texi
@@ -73,9 +73,9 @@ certain feature or a certain issue has been fixed since the last release.
73@subsection Obtaining a stable version 73@subsection Obtaining a stable version
74 74
75You can download the latest stable version of GNUnet from GNU FTP mirrors: 75You can download the latest stable version of GNUnet from GNU FTP mirrors:
76@uref{ftp://ftp.gnu.org/gnu/gnunet/gnunet-0.10.x.tar.gz} 76@uref{https://ftp.gnu.org/gnu/gnunet/gnunet-0.10.x.tar.gz}
77You should also download the signature file and verify the integrity of the tarball. 77You should also download the signature file and verify the integrity of the tarball.
78@uref{ftp://ftp.gnu.org/gnu/gnunet/gnunet-0.10.x.tar.gz.sig} 78@uref{https://ftp.gnu.org/gnu/gnunet/gnunet-0.10.x.tar.gz.sig}
79To verify the signature you should first import the GPG key used to sign the tarball 79To verify the signature you should first import the GPG key used to sign the tarball
80@example 80@example
81$ gpg --keyserver keys.gnupg.net --recv-keys 48426C7E 81$ gpg --keyserver keys.gnupg.net --recv-keys 48426C7E
@@ -125,11 +125,11 @@ The remainder of this tutorial assumes that you have Git Master checked out.
125@subsection Compiling and Installing GNUnet 125@subsection Compiling and Installing GNUnet
126 126
127First, you need to install at least libgnupgerror version 1.27 127First, you need to install at least libgnupgerror version 1.27
128@uref{ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.27.tar.bz2} 128@uref{https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.27.tar.bz2}
129and libgcrypt version 1.7.6 @uref{ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.7.6.tar.bz2}. 129and libgcrypt version 1.7.6 @uref{https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.7.6.tar.bz2}.
130 130
131@example 131@example
132$ wget ftp://ftp.gnupg.org/gcrypt/libgpg-error/libgpg-error-1.27.tar.bz2 132$ wget https://www.gnupg.org/ftp/gcrypt/libgpg-error/libgpg-error-1.27.tar.bz2
133$ tar xf libgpg-error-1.27.tar.bz2 133$ tar xf libgpg-error-1.27.tar.bz2
134$ cd libgpg-error-1.27 134$ cd libgpg-error-1.27
135$ ./configure 135$ ./configure
@@ -138,7 +138,7 @@ $ cd ..
138@end example 138@end example
139 139
140@example 140@example
141$ wget ftp://ftp.gnupg.org/gcrypt/libgcrypt/libgcrypt-1.7.6.tar.bz2 141$ wget https://www.gnupg.org/ftp/gcrypt/libgcrypt/libgcrypt-1.7.6.tar.bz2
142$ tar xf libgcrypt-1.7.6.tar.bz2 142$ tar xf libgcrypt-1.7.6.tar.bz2
143$ cd libgcrypt-1.7.6 143$ cd libgcrypt-1.7.6
144$ ./configure 144$ ./configure