diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile | 2 | ||||
-rw-r--r-- | lib/libcqrlogo.c | 2 | ||||
-rw-r--r-- | lib/libcqrlogo.h | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/Makefile b/lib/Makefile index 068a482..952bdb4 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -6,7 +6,7 @@ LN := ln # flags CFLAGS += -std=c11 -O2 -fPIC -Wall -Werror -CFLAGS += -liniparser +CFLAGS += $(shell pkg-config --cflags --libs iniparser) CFLAGS += $(shell pkg-config --cflags --libs libpng) CFLAGS += $(shell pkg-config --cflags --libs zlib) CFLAGS += $(shell pkg-config --cflags --libs libqrencode) diff --git a/lib/libcqrlogo.c b/lib/libcqrlogo.c index d7a7a1b..5716c73 100644 --- a/lib/libcqrlogo.c +++ b/lib/libcqrlogo.c @@ -1,5 +1,5 @@ /* - * (C) 2013-2024 by Christian Hesse <mail@eworm.de> + * (C) 2013-2025 by Christian Hesse <mail@eworm.de> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by diff --git a/lib/libcqrlogo.h b/lib/libcqrlogo.h index 102975b..ba6cc97 100644 --- a/lib/libcqrlogo.h +++ b/lib/libcqrlogo.h @@ -1,5 +1,5 @@ /* - * (C) 2013-2024 by Christian Hesse <mail@eworm.de> + * (C) 2013-2025 by Christian Hesse <mail@eworm.de> * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -30,7 +30,7 @@ #include <png.h> #include <zlib.h> #include <qrencode.h> -#include <iniparser.h> +#include <iniparser/iniparser.h> /* a bitmap */ struct cqr_bitmap { |