X-Git-Url: https://sigrok.org/gitweb/?a=blobdiff_plain;f=src%2Foutput%2Fgnuplot.c;h=c92907394f1f1dd94f61c1ba081d97bc99a125c3;hb=32af282c5e1d64e878438aafe7c69efd2b4a4bd6;hp=134fd9042df970c41220a7d28cc8d4061637fc0e;hpb=8a174d23427735617d69c7502ed8dcade786bbf9;p=libsigrok.git diff --git a/src/output/gnuplot.c b/src/output/gnuplot.c index 134fd904..c9290739 100644 --- a/src/output/gnuplot.c +++ b/src/output/gnuplot.c @@ -21,8 +21,7 @@ #include #include #include -#include "config.h" /* Needed for PACKAGE_STRING and others. */ -#include "libsigrok.h" +#include #include "libsigrok-internal.h" #define LOG_PREFIX "output/gnuplot" @@ -43,7 +42,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; @@ -108,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", @@ -220,8 +218,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,