]> sigrok.org Git - libsigrok.git/blobdiff - src/output/gnuplot.c
Consistently use SR_PACKAGE_VERSION instead of VERSION
[libsigrok.git] / src / output / gnuplot.c
index 111dcadf26b6b4a4f8d2d14bb54d42616435bb67..c92907394f1f1dd94f61c1ba081d97bc99a125c3 100644 (file)
@@ -21,7 +21,6 @@
 #include <stdlib.h>
 #include <string.h>
 #include <glib.h>
-#include "config.h" /* Needed for PACKAGE_STRING and others. */
 #include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
@@ -107,8 +106,8 @@ static GString *gen_header(const struct sr_output *o)
        t = time(NULL);
        header = g_string_sized_new(512);
        g_string_printf(header, "%s", gnuplot_header);
-       g_string_append_printf(header, "# Generated by %s on %s",
-                       PACKAGE_STRING, ctime(&t));
+       g_string_append_printf(header, "# Generated by %s %s on %s",
+                       PACKAGE_NAME, SR_PACKAGE_VERSION_STRING, ctime(&t));
 
        num_channels = g_slist_length(o->sdi->channels);
        g_string_append_printf(header, "# Acquisition with %d/%d channels",