File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1+ 2017.118: 2.19.4
2+ - Add global LM_SIZEOF_OFF_T variable that is set to the size of
3+ the off_t data type as determined at compile time.
4+
152017.075: 2.19.3
26 - Add missing public, global symbols to libmseed.map, thanks
37 to Elliott Sales de Andrade.
Original file line number Diff line number Diff line change 2828extern "C" {
2929#endif
3030
31- #define LIBMSEED_VERSION "2.19.3 "
32- #define LIBMSEED_RELEASE "2017.075 "
31+ #define LIBMSEED_VERSION "2.19.4 "
32+ #define LIBMSEED_RELEASE "2017.118 "
3333
3434/* C99 standard headers */
3535#include <stdlib.h>
@@ -118,6 +118,8 @@ extern "C" {
118118 #include <inttypes.h>
119119#endif
120120
121+ extern int LM_SIZEOF_OFF_T ; /* Size of off_t data type determined at build time */
122+
121123#define MINRECLEN 128 /* Minimum Mini-SEED record length, 2^7 bytes */
122124 /* Note: the SEED specification minimum is 256 */
123125#define MAXRECLEN 1048576 /* Maximum Mini-SEED record length, 2^20 bytes */
Original file line number Diff line number Diff line change 1010 unpackdatabyteorder;
1111 unpackencodingformat;
1212 unpackencodingfallback;
13+ LM_SIZEOF_OFF_T;
1314
1415 local:
1516 *;
Original file line number Diff line number Diff line change 33 *
44 * Platform portability routines.
55 *
6- * modified: 2010.304
6+ * modified: 2017.118
77 ***************************************************************************/
88
99/* Define _LARGEFILE_SOURCE to get ftello/fseeko on some systems (Linux) */
1010#define _LARGEFILE_SOURCE 1
1111
1212#include "libmseed.h"
1313
14+ /* Size of off_t data type as determined at build time */
15+ int LM_SIZEOF_OFF_T = sizeof (off_t );
16+
1417/***************************************************************************
1518 * lmp_ftello:
1619 *
You can’t perform that action at this time.
0 commit comments