logo

badwolf

Minimalist and privacy-oriented WebKitGTK+ browser
commit: bd5214c5fdc97491b50e036402526a71f161277f
parent: d31bfb015bd5fd67ec3043a4749d5dc135b57548
Author: Haelwenn (lanodan) Monnier <contact@hacktivis.me>
Date:   Thu, 28 Mar 2019 21:59:35 +0100

move to C 11 because of WebKit

And this standard is behind a huge paywall, thanks I hate it,
but well you know what to do. :D

Diffstat:

MMakefile2+-
MREADME.md2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile @@ -5,7 +5,7 @@ PREFIX = /usr/local DEPS = gtk+-3.0 webkit2gtk-4.0 OBJS = badwolf -CC = cc -std=c99 +CC = cc -std=c11 CFLAGS = -g -Wall -Wextra CDEPS = `pkg-config --cflags $(DEPS)` LIBS = `pkg-config --libs $(DEPS)` diff --git a/README.md b/README.md @@ -32,7 +32,7 @@ Files ending in `.sig` are OpenPGP signatures done with my [key](https://hacktiv ## Manual Installation Dependencies are: - [WebKitGTK](https://webkitgtk.org/), only the latest stable will be fully supported -- C99+ Compiler (such as clang or gcc) +- C11 Compiler (such as clang or gcc) - POSIX make (works with GNU or BSD) Compilation is done with `make`, install with `make install`.