diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-06-18 00:16:30 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-06-18 00:16:30 +0200 |
commit | 59902bb3ec30c6e256e31a9c295139b6acd75ddf (patch) | |
tree | 6fd1d85298a7e2d4567332942b8a26669e23fd67 | |
parent | use less unicode (diff) | |
download | libgamma-59902bb3ec30c6e256e31a9c295139b6acd75ddf.tar.gz libgamma-59902bb3ec30c6e256e31a9c295139b6acd75ddf.tar.bz2 libgamma-59902bb3ec30c6e256e31a9c295139b6acd75ddf.tar.xz |
gcc is required
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | DEPENDENCIES | 4 | ||||
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | TODO | 3 |
3 files changed, 7 insertions, 2 deletions
diff --git a/DEPENDENCIES b/DEPENDENCIES index 445852e..51b0281 100644 --- a/DEPENDENCIES +++ b/DEPENDENCIES @@ -23,7 +23,7 @@ BUILD DEPENDENCIES: grep sed coreutils - c99 + gcc general-preprocessor (gpp) python3 texinfo Optional: for info, pdf, ps and dvi manuals @@ -46,7 +46,7 @@ DEPENDENCIES SOURCES: grep https://www.gnu.org/software/grep sed https://www.gnu.org/software/sed coreutils https://www.gnu.org/software/coreutils - c99 https://gcc.gnu.org + gcc https://gcc.gnu.org general-preprocessor (gpp) https://github.com/maandree/gpp python3 https://www.python.org/ texinfo https://www.gnu.org/software/texinfo/ @@ -31,6 +31,8 @@ PKGNAME ?= libgamma # General-preprocess command. (https://github.com/maandree/gpp) GPP ?= gpp +CC = gcc + # Enabled warnings. WARN = -Wall -Wextra -pedantic -Wdouble-promotion -Wformat=2 -Winit-self \ @@ -13,3 +13,6 @@ Unsupported display servers: Wayland I do not think Wayland have gamma ramp support Mir I do not think Mir have gamma ramp support + +c99 sould be sufficient + |