]> sigrok.org Git - libsigrok.git/commitdiff
Consistently use SR_PACKAGE_VERSION instead of VERSION
authorDaniel Elstner <redacted>
Wed, 12 Aug 2015 22:38:47 +0000 (00:38 +0200)
committerDaniel Elstner <redacted>
Sun, 16 Aug 2015 16:28:13 +0000 (18:28 +0200)
bindings/cxx/libsigrokcxx.pc.in
configure.ac
libsigrok.pc.in
src/output/ascii.c
src/output/bits.c
src/output/csv.c
src/output/gnuplot.c
src/output/hex.c
src/output/srzip.c
src/output/vcd.c
src/session_file.c

index 0abc2e5ed7f778766ed64451368854362ae9bee8..10a92f2dce314b88dcbd2af7b49d9323f51485a3 100644 (file)
@@ -7,8 +7,7 @@ Name: libsigrokcxx
 Description: C++ bindings for libsigrok
 URL: http://www.sigrok.org
 Requires: libsigrok glibmm-2.4
-Version: @VERSION@
+Version: @SR_PACKAGE_VERSION@
 Libs: -L${libdir} -lsigrokcxx
 Libs.private: -lm
 Cflags: -I${includedir}
-
index 46ed9de379e934263dd0d62fc18baf9c0a09c7ea..68e642f20b13948c9280c9efabaa68a9032c9f47 100644 (file)
@@ -35,7 +35,7 @@ AC_CONFIG_MACRO_DIR([autostuff])
 AC_CONFIG_AUX_DIR([autostuff])
 
 # We require at least automake 1.11 (needed for 'silent rules').
-AM_INIT_AUTOMAKE([1.11 -Wall -Werror subdir-objects check-news color-tests])
+AM_INIT_AUTOMAKE([1.11 -Wall -Werror no-define subdir-objects check-news color-tests])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
 m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
 
index 219f7c3ba00322096de835b7df817f01a7929a14..a0616c8840d261c2498acfcc24d12503efe9287c 100644 (file)
@@ -8,8 +8,7 @@ Description: Backend library of the sigrok logic analyzer software
 URL: http://www.sigrok.org
 Requires: glib-2.0
 Requires.private: @SR_PKGLIBS@
-Version: @VERSION@
+Version: @SR_PACKAGE_VERSION@
 Libs: -L${libdir} -lsigrok
 Libs.private: -lm
 Cflags: -I${includedir}
-
index f45081f1e90aef1279f605233b50f84af5d66d1a..1f60c680a895150c9240826b8e1881e47e9d6b7d 100644 (file)
@@ -107,7 +107,7 @@ static GString *gen_header(const struct sr_output *o)
        }
 
        header = g_string_sized_new(512);
-       g_string_printf(header, "%s\n", PACKAGE_STRING);
+       g_string_printf(header, "%s %s\n", PACKAGE_NAME, SR_PACKAGE_VERSION_STRING);
        num_channels = g_slist_length(o->sdi->channels);
        g_string_append_printf(header, "Acquisition with %d/%d channels",
                        ctx->num_enabled_channels, num_channels);
index eb134b4e699b770bdc06116e80a15e43fbf9e540..79146adf9aba35736c5a7376185dae20ecc0309b 100644 (file)
@@ -101,7 +101,7 @@ static GString *gen_header(const struct sr_output *o)
        }
 
        header = g_string_sized_new(512);
-       g_string_printf(header, "%s\n", PACKAGE_STRING);
+       g_string_printf(header, "%s %s\n", PACKAGE_NAME, SR_PACKAGE_VERSION_STRING);
        num_channels = g_slist_length(o->sdi->channels);
        g_string_append_printf(header, "Acquisition with %d/%d channels",
                        ctx->num_enabled_channels, num_channels);
index 36cf2e86931b6cb7cd1552eb42716f4191dec6e3..d3f9966497bebabf722d309d3a705030570f48b0 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"
 
@@ -118,8 +117,8 @@ static GString *gen_header(const struct sr_output *o)
 
        /* Some metadata */
        t = time(NULL);
-       g_string_append_printf(header, "; CSV, generated by %s on %s",
-                       PACKAGE_STRING, ctime(&t));
+       g_string_append_printf(header, "; CSV, generated by %s %s on %s",
+                       PACKAGE_NAME, SR_PACKAGE_VERSION_STRING, ctime(&t));
 
        /* Columns / channels */
        num_channels = g_slist_length(o->sdi->channels);
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",
index 52c33a10cf2727720f613928d9edee6474b22c42..10e4d0cc98b369eb3f19a434e894359124567ec5 100644 (file)
@@ -106,7 +106,7 @@ static GString *gen_header(const struct sr_output *o)
        }
 
        header = g_string_sized_new(512);
-       g_string_printf(header, "%s\n", PACKAGE_STRING);
+       g_string_printf(header, "%s %s\n", PACKAGE_NAME, SR_PACKAGE_VERSION_STRING);
        num_channels = g_slist_length(o->sdi->channels);
        g_string_append_printf(header, "Acquisition with %d/%d channels",
                        ctx->num_enabled_channels, num_channels);
index ae066cde228b4f66a240458cf0f803281b0e6db4..e52fec875fbc9031e384622c29e683fd78eb86ec 100644 (file)
@@ -96,7 +96,7 @@ static int zip_create(const struct sr_output *o)
        close(tmpfile);
        meta = g_fopen(metafile, "wb");
        fprintf(meta, "[global]\n");
-       fprintf(meta, "sigrok version = %s\n", PACKAGE_VERSION);
+       fprintf(meta, "sigrok version = %s\n", SR_PACKAGE_VERSION_STRING);
        fprintf(meta, "[device 1]\ncapturefile = logic-1\n");
        fprintf(meta, "total probes = %d\n", g_slist_length(o->sdi->channels));
        s = sr_samplerate_string(outc->samplerate);
index 8dd503a273ea42649458284a0c22a8c3d177e221..fd7b9123cefda54b98fa32e0bce26fa6fabba194 100644 (file)
@@ -22,7 +22,6 @@
 #include <stdlib.h>
 #include <string.h>
 #include <glib.h>
-#include "config.h" /* Needed for PACKAGE and others. */
 #include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
@@ -104,7 +103,7 @@ static GString *gen_header(const struct sr_output *o)
 
        /* generator */
        g_string_append_printf(header, "$version %s %s $end\n",
-                       PACKAGE, PACKAGE_VERSION);
+                       PACKAGE_NAME, SR_PACKAGE_VERSION_STRING);
        g_string_append_printf(header, "$comment\n  Acquisition with "
                        "%d/%d channels", ctx->num_enabled_channels, num_channels);
 
@@ -135,7 +134,7 @@ static GString *gen_header(const struct sr_output *o)
        g_free(frequency_s);
 
        /* scope */
-       g_string_append_printf(header, "$scope module %s $end\n", PACKAGE);
+       g_string_append_printf(header, "$scope module %s $end\n", PACKAGE_NAME);
 
        /* Wires / channels */
        for (i = 0, l = o->sdi->channels; l; l = l->next, i++) {
index e0c544bfc42e579f5f78bc5b150789fc55035e04..5aed89b8bbf2530cccfc21c0d1d3cba1ff9ed616 100644 (file)
@@ -26,7 +26,6 @@
 #include <errno.h>
 #include <glib.h>
 #include <glib/gstdio.h>
-#include "config.h" /* Needed for PACKAGE_VERSION and others. */
 #include <libsigrok/libsigrok.h>
 #include "libsigrok-internal.h"
 
@@ -351,7 +350,7 @@ SR_API int sr_session_save_init(struct sr_session *session,
        close(tmpfile);
        meta = g_fopen(metafile, "wb");
        fprintf(meta, "[global]\n");
-       fprintf(meta, "sigrok version = %s\n", PACKAGE_VERSION);
+       fprintf(meta, "sigrok version = %s\n", SR_PACKAGE_VERSION_STRING);
 
        /* metadata */
        fprintf(meta, "[device 1]\n");