From 9c76afd8afc61e8f2fe3a634d3110b786b43b58e Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sat, 5 Aug 2023 20:36:05 -0400 Subject: [PATCH] examples/svgtiny_display_x11.c: include the system copy of svgtiny.h The header of this file includes instructions for how to build it: Compile using: gcc -g -W -Wall -o svgtiny_display_x11 svgtiny_display_x11.c \ `pkg-config --cflags --libs libsvgtiny cairo` -lX11 That pkg-config command will generate the flags to link against the installed copy of libsvgtiny. The line, #include "svgtiny.h" on the other hand, attempts to use a local header. This commit changes that line to, #include which will use the corresponding system header from whatever include directory pkg-config hands us for libsvgtiny. --- examples/svgtiny_display_x11.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/svgtiny_display_x11.c b/examples/svgtiny_display_x11.c index 6758bef..463beb8 100644 --- a/examples/svgtiny_display_x11.c +++ b/examples/svgtiny_display_x11.c @@ -32,7 +32,7 @@ #include #include #include -#include "svgtiny.h" +#include struct svgtiny_diagram *diagram; -- 2.43.2