]> gitweb.michael.orlitzky.com - libsvgtiny.git/commitdiff
examples/svgtiny_display_x11.c: include the system copy of svgtiny.h master
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 6 Aug 2023 00:36:05 +0000 (20:36 -0400)
committerMichael Drake <tlsa@netsurf-browser.org>
Wed, 9 Aug 2023 20:16:41 +0000 (21:16 +0100)
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 <svgtiny.h>

which will use the corresponding system header from whatever include
directory pkg-config hands us for libsvgtiny.

examples/svgtiny_display_x11.c

index 6758befb1ce8c9bf612c4f96f205c1f8a5265c16..463beb80929b82dcc9e66f0cbaf145011c870e4e 100644 (file)
@@ -32,7 +32,7 @@
 #include <X11/keysym.h>
 #include <cairo.h>
 #include <cairo-xlib.h>
-#include "svgtiny.h"
+#include <svgtiny.h>
 
 
 struct svgtiny_diagram *diagram;