]> sigrok.org Git - libsigrok.git/blobdiff - src/output/gnuplot.c
Build: Set local include directories in Makefile.am
[libsigrok.git] / src / output / gnuplot.c
index 134fd9042df970c41220a7d28cc8d4061637fc0e..111dcadf26b6b4a4f8d2d14bb54d42616435bb67 100644 (file)
@@ -22,7 +22,7 @@
 #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"
@@ -43,7 +43,6 @@ static const char *gnuplot_header2 = "\
 # -----------------------------------------------------------------------------\n\
 # 0\t\tSample counter (for internal gnuplot purposes)\n";
 
-
 static int init(struct sr_output *o, GHashTable *options)
 {
        struct context *ctx;
@@ -220,8 +219,9 @@ static int cleanup(struct sr_output *o)
 SR_PRIV struct sr_output_module output_gnuplot = {
        .id = "gnuplot",
        .name = "Gnuplot",
-       .desc = "Gnuplot file format",
-       .exts = (const char*[]){"pl", NULL},
+       .desc = "Gnuplot data file format",
+       .exts = (const char*[]){"dat", NULL},
+       .flags = 0,
        .options = NULL,
        .init = init,
        .receive = receive,