]> sigrok.org Git - libsigrok.git/blobdiff - src/output/gnuplot.c
output/analog: Drop unused fancyprint() and si_printf().
[libsigrok.git] / src / output / gnuplot.c
index 053f042495bdd45adbbb44f14e4f54c26fbf6c31..9a2a78cdff7c5599f9c047976d6e237ffbdf3c58 100644 (file)
  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
  */
 
+#include <config.h>
 #include <stdlib.h>
 #include <string.h>
 #include <glib.h>
-#include "config.h" /* Needed for PACKAGE_STRING and others. */
-#include "libsigrok.h"
+#include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
 #define LOG_PREFIX "output/gnuplot"
@@ -107,8 +107,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",
@@ -221,6 +221,7 @@ SR_PRIV struct sr_output_module output_gnuplot = {
        .name = "Gnuplot",
        .desc = "Gnuplot data file format",
        .exts = (const char*[]){"dat", NULL},
+       .flags = 0,
        .options = NULL,
        .init = init,
        .receive = receive,