aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2021-08-08 13:47:10 -0400
committerDavid Robillard <d@drobilla.net>2022-01-28 21:57:07 -0500
commit411b2ffac686478f3312c4a0c5cf20a230a3f728 (patch)
tree32070da3c5bd7245da2a66a344232ce5178e117f /src
parent5a39e907a9a1fad87c35a94ea1e534deeb2316f9 (diff)
downloadserd-411b2ffac686478f3312c4a0c5cf20a230a3f728.tar.gz
serd-411b2ffac686478f3312c4a0c5cf20a230a3f728.tar.bz2
serd-411b2ffac686478f3312c4a0c5cf20a230a3f728.zip
Add version constants to public header
Diffstat (limited to 'src')
-rw-r--r--src/serd_config.h3
-rw-r--r--src/serdi.c10
2 files changed, 7 insertions, 6 deletions
diff --git a/src/serd_config.h b/src/serd_config.h
index 53378a48..90888c39 100644
--- a/src/serd_config.h
+++ b/src/serd_config.h
@@ -28,9 +28,6 @@
#ifndef SERD_CONFIG_H
#define SERD_CONFIG_H
-// Define version unconditionally so a warning will catch a mismatch
-#define SERD_VERSION "1.0.1"
-
#if !defined(SERD_NO_DEFAULT_CONFIG)
// We need unistd.h to check _POSIX_VERSION
diff --git a/src/serdi.c b/src/serdi.c
index 2de41ce7..d84e3663 100644
--- a/src/serdi.c
+++ b/src/serdi.c
@@ -1,5 +1,5 @@
/*
- Copyright 2011-2020 David Robillard <d@drobilla.net>
+ Copyright 2011-2021 David Robillard <d@drobilla.net>
Permission to use, copy, modify, and/or distribute this software for any
purpose with or without fee is hereby granted, provided that the above
@@ -14,7 +14,6 @@
OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
-#include "serd_config.h"
#include "system.h"
#include "serd/serd.h"
@@ -47,11 +46,16 @@ typedef struct {
static int
print_version(void)
{
- printf("serdi " SERD_VERSION " <http://drobilla.net/software/serd>\n");
+ printf("serdi %d.%d.%d <http://drobilla.net/software/serd>\n",
+ SERD_MAJOR_VERSION,
+ SERD_MINOR_VERSION,
+ SERD_MICRO_VERSION);
+
printf("Copyright 2011-2021 David Robillard <d@drobilla.net>.\n"
"License: <http://www.opensource.org/licenses/isc>\n"
"This is free software; you are free to change and redistribute it."
"\nThere is NO WARRANTY, to the extent permitted by law.\n");
+
return 0;
}