Skip to content

Commit 3a20161

Browse files
authored
Merge pull request #192 from Libvisual/readme-update
Core (Docs): Update links and C version requirement in readme files.
2 parents 67cb402 + 6c7b178 commit 3a20161

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

libvisual/README

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ The images in tests/images are licensed under Creative Commons
3636
(CC). See tests/images/license.txt for details.
3737

3838
Full license texts:
39-
* LGPL v2.1: http://www.gnu.org/licenses/lgpl-2.1.html
40-
* GPL v2.0 : http://www.gnu.org/licenses/gpl-2.0.html
41-
* CC : http://creativecommons.org/licenses/
39+
* LGPL v2.1: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html
40+
* GPL v2.0 : https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
41+
* CC : https://creativecommons.org/licenses/
4242

4343
Development
4444
-----------
@@ -52,7 +52,7 @@ Software Requirements
5252

5353
C/C++20 compiler
5454

55-
Libvisual uses several C99 and C++20 features for its modern API
55+
Libvisual uses several C11 and C++20 features for its modern API
5656
design and implementation, and as such, requires an up-to-date
5757
C/C++ compiler to build. Compilers tested and known to work are
5858
GCC 11+ and Clang 14+.
@@ -62,14 +62,14 @@ Libraries
6262
The core library is fairly self-contained and requires almost very
6363
little dependencies other than the standard C99 and C++11 libraries.
6464

65-
The Oil Runtime Compiler (http://code.entropywave.com/orc) (ORC)
66-
is required for generating a portion of Libvisual's SIMD routines.
65+
The Oil Runtime Compiler (https://gstreamer.freedesktop.org/projects/orc.html)
66+
(ORC) is required for generating a portion of Libvisual's SIMD routines.
6767

6868
GNU Gettext is optionally required (see note) for
6969
internationalisation.
7070

7171
The bundled examples, benchmarks and test programs mostly require
72-
SDL 1.2 (http://libsdl.org).
72+
SDL 1.2 (https://www.libsdl.org).
7373

7474
** Note: Gettext is integrated into glibc on Linux.
7575

@@ -78,7 +78,7 @@ Compiling and installing
7878

7979
Configuration
8080

81-
Building Libvisual requires CMake 3.20 (http://www.cmake.org) or
81+
Building Libvisual requires CMake 3.20 (https://www.cmake.org) or
8282
above. The command to configure the build is:
8383

8484
cmake .

libvisual/README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ necessary for display in any Libvisual-using application.
2222

2323
The Libvisual library that is in libvisual/ is licensed under the
2424
Lesser GNU General Public License (LGPL) v2.1
25-
([full text](http://www.gnu.org/licenses/lgpl-2.1.html)).
25+
([full text](https://www.gnu.org/licenses/old-licenses/lgpl-2.1.html)).
2626

2727
The example applications in examples/ are licensed under the General
2828
GNU Public License (GPL) v2
29-
([full text](http://www.gnu.org/licenses/gpl-2.0.html)).
29+
([full text](https://www.gnu.org/licenses/old-licenses/gpl-2.0.html)).
3030

3131
The tools in tools/ are licensed under the GPLv2.
3232

@@ -40,7 +40,7 @@ very useful information regarding our coding policies and such.
4040

4141
#### C/C++ compiler
4242

43-
Libvisual uses several C99 and C++20 features for its modern API
43+
Libvisual uses several C11 and C++20 features for its modern API
4444
design and implementation, and as such, requires an up-to-date C/C++
4545
compiler to build. Compilers tested and known to work are GCC 11+ and
4646
Clang 14+.
@@ -50,22 +50,22 @@ Clang 14+.
5050
The core library is fairly self-contained and requires almost very
5151
little dependencies other than the standard C99 and C++20 libraries.
5252

53-
The [Oil Runtime Compiler](http://code.entropywave.com/orc) (ORC) is
53+
The [Oil Runtime Compiler](https://gstreamer.freedesktop.org/projects/orc.html) (ORC) is
5454
required for generating a portion of Libvisual's SIMD routines.
5555

5656
GNU Gettext is optionally required (see note) for
5757
internationalisation.
5858

5959
The bundled examples, benchmarks and test programs mostly require
60-
[SDL 1.2](http://libsdl.org).
60+
[SDL 1.2](https://www.libsdl.org).
6161

6262
Note: Gettext is integrated into glibc on Linux.
6363

6464
### Compiling and Installing
6565

6666
#### Configuration
6767

68-
Building Libvisual requires [CMake 3.20](http://www.cmake.org) or
68+
Building Libvisual requires [CMake 3.20](https://www.cmake.org) or
6969
above. The command to configure the build is:
7070

7171
cmake .

0 commit comments

Comments
 (0)