[libmseed] 01/05: New upstream version 2.19.4

Pierre Duperray zulu-guest at moszumanska.debian.org
Sat Nov 18 19:53:54 UTC 2017


This is an automated email from the git hooks/post-receive script.

zulu-guest pushed a commit to branch master
in repository libmseed.

commit d72c6e5b10505b176f509eb33ebadb270b27f203
Author: Pierre Duperray <pierreduperray at free.fr>
Date:   Wed Aug 2 19:25:16 2017 +0200

    New upstream version 2.19.4
---
 ChangeLog    | 8 ++++++++
 README.md    | 2 +-
 libmseed.h   | 6 ++++--
 libmseed.map | 6 ++++++
 lmplatform.c | 5 ++++-
 5 files changed, 23 insertions(+), 4 deletions(-)

diff --git a/ChangeLog b/ChangeLog
index 4b6e1e9..8c766f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2017.118: 2.19.4
+	- Add global LM_SIZEOF_OFF_T variable that is set to the size of
+	the off_t data type as determined at compile time.
+
+2017.075: 2.19.3
+	- Add missing public, global symbols to libmseed.map, thanks
+	to Elliott Sales de Andrade.
+
 2017.061: 2.19.2
 	- Provide install target in Makefile thanks to by Pierre Duperray.
 	- Deprecate dynamic build target, the shared target will now build
diff --git a/README.md b/README.md
index b424a18..1a7cb33 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ Solaris and Win32 environments.
 
 ## Documentation
 
-The [Wiki](https://github.com/iris-edu/libmseed/Wiki) provides an
+The [Wiki](https://github.com/iris-edu/libmseed/wiki) provides an
 overview of using the library. For function level documentation,
 man pages are included in the [doc](doc) directory.
 
diff --git a/libmseed.h b/libmseed.h
index b578906..87adb84 100644
--- a/libmseed.h
+++ b/libmseed.h
@@ -28,8 +28,8 @@
 extern "C" {
 #endif
 
-#define LIBMSEED_VERSION "2.19.2"
-#define LIBMSEED_RELEASE "2017.061"
+#define LIBMSEED_VERSION "2.19.4"
+#define LIBMSEED_RELEASE "2017.118"
 
 /* C99 standard headers */
 #include <stdlib.h>
@@ -118,6 +118,8 @@ extern "C" {
   #include <inttypes.h>
 #endif
 
+extern int LM_SIZEOF_OFF_T;  /* Size of off_t data type determined at build time */
+
 #define MINRECLEN   128      /* Minimum Mini-SEED record length, 2^7 bytes */
                              /* Note: the SEED specification minimum is 256 */
 #define MAXRECLEN   1048576  /* Maximum Mini-SEED record length, 2^20 bytes */
diff --git a/libmseed.map b/libmseed.map
index 27c5ab6..a66f9c6 100644
--- a/libmseed.map
+++ b/libmseed.map
@@ -4,7 +4,13 @@
       msr_*;
       mst_*;
       mstl_*;
+      packheaderbyteorder;
+      packdatabyteorder;
+      unpackheaderbyteorder;
+      unpackdatabyteorder;
       unpackencodingformat;
+      unpackencodingfallback;
+      LM_SIZEOF_OFF_T;
 
   local:
       *;
diff --git a/lmplatform.c b/lmplatform.c
index 9023d0b..c6e2210 100644
--- a/lmplatform.c
+++ b/lmplatform.c
@@ -3,7 +3,7 @@
  *
  * Platform portability routines.
  *
- * modified: 2010.304
+ * modified: 2017.118
  ***************************************************************************/
 
 /* Define _LARGEFILE_SOURCE to get ftello/fseeko on some systems (Linux) */
@@ -11,6 +11,9 @@
 
 #include "libmseed.h"
 
+/* Size of off_t data type as determined at build time */
+int LM_SIZEOF_OFF_T = sizeof(off_t);
+
 /***************************************************************************
  * lmp_ftello:
  *

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/libmseed.git



More information about the debian-science-commits mailing list