Commit b299fd965d9fb8cf870164f2aea6814d87f35a55
Exists in
master
Merge branch 'wip-documentation' into 'master'
documentation updates to replace URLs that do not contain useful information See merge request !2
Showing
3 changed files
with
4 additions
and
7 deletions
Show diff stats
No preview for this file type
README
... | ... | @@ -9,12 +9,9 @@ Authors: James S. Plank (University of Tennessee) |
9 | 9 | |
10 | 10 | External Documentation: |
11 | 11 | |
12 | -The programmer's manual and tutorial is provided in two places: | |
12 | +See the file Manual.pdf for the programmer's manual and tutorial. | |
13 | 13 | |
14 | -1.) A copy is hosted on BitBucket at https://bitbucket.org/jimplank/jerasure/downloads/Jerasure-Manual.pdf | |
15 | -2.) A copy is also available at http://web.eecs.utk.edu/~plank/plank/papers/UT-EECS-14-721.html | |
16 | - | |
17 | -See https://bitbucket.org/jimplank/gf-complete for GF-Complete. | |
14 | +See https://jerasure.org/jerasure/gf-complete for GF-Complete. | |
18 | 15 | |
19 | 16 | NOTE: You must have GF-Complete installed (or compiled) in order to use Jerasure 2.0. |
20 | 17 | ... | ... |
configure.ac
... | ... | @@ -2,7 +2,7 @@ |
2 | 2 | |
3 | 3 | AC_PREREQ([2.65]) |
4 | 4 | AC_INIT([Jerasure], [2.0], [], [], |
5 | - [https://bitbucket.org/jimplank/jerasure]) | |
5 | + [https://jerasure.org/jerasure/jerasure]) | |
6 | 6 | AC_CONFIG_SRCDIR([src/jerasure.c]) |
7 | 7 | AC_CONFIG_HEADERS([include/config.h]) |
8 | 8 | |
... | ... | @@ -24,7 +24,7 @@ AC_PROG_CC |
24 | 24 | AC_CHECK_LIB([gf_complete], [gf_init_easy], [], |
25 | 25 | [AC_MSG_FAILURE( |
26 | 26 | [You need to have gf_complete installed. |
27 | - gf_complete is available from http://web.eecs.utk.edu/~plank/plank/papers/CS-13-703.html]) | |
27 | + gf_complete is available from http://jerasure.org/jerasure/gf-complete]) | |
28 | 28 | ]) |
29 | 29 | |
30 | 30 | # Checks for header files. | ... | ... |