Loading ChangeLog +10 −1 Original line number Diff line number Diff line 2013-03-23 17:22 2013-03-25 22:14 * nmxptool: Loading @@ -6,6 +6,15 @@ Matteo Quintiliani - Istituto Nazionale di Geofisica e Vulcanologia - Italy Mail bug reports and suggestions to <matteo.quintiliani@ingv.it> 2013-03-25 13:00 mtheo <matteo.quintiliani@ingv.it> * [r1420] configure.in: Incremented release candidate version to nmxptool 2.1.1-rc4 2013-03-23 16:22 mtheo <matteo.quintiliani@ingv.it> * [r1418] ChangeLog: Updated ChangeLog 2013-03-23 16:21 mtheo <matteo.quintiliani@ingv.it> * [r1417] lib/nmxp_data.c, src/nmxptool.c: Fixed big endian byte order Loading HISTORY +4 −3 Original line number Diff line number Diff line Loading @@ -2,12 +2,13 @@ nmxptool Release History ######################### * Release 2.1.1-rc3 (2013/03/23) - Fixed bug: from now on, nmxptool will always create big-endian mini-SEED records (C. Trabant) * Release 2.1.1-rc4 (2013/03/26) - Fixed bug: SEED utilizes the Big Endian word order as its standard. In 2003, the FDSN adopted the format rule that Steim1 and Steim2 data records are to be written with the big-endian encoding only. From now on, nmxptool will only create big-endian Steim[12] compressed mini-SEED records (thanks to C. Trabant and S. Stromme) - Improvement: restart connection if any data is received within 60 seconds timeout = (NMXP_HIGHEST_TIMEOUT * 2) - News: windows binary distribution is available again. Loading README +5 −4 Original line number Diff line number Diff line Loading @@ -333,16 +333,17 @@ architectures. - ACKNOWLEDGEMENT In no particular order: * Stefano Pintore - I.N.G.V. (Istituto Nazionale di Geofisica e Vulcanologia) * Salvatore Mazza - I.N.G.V. * Marco Olivieri - I.N.G.V. * Luigi Falco - I.N.G.V. * Stefano Pintore - INGV (Istituto Nazionale di Geofisica e Vulcanologia) * Salvatore Mazza - INGV * Marco Olivieri - INGV * Luigi Falco - INGV * Paul Friberg - ISTI (Instrumental Software Technologies, Inc.) * Marian Jusko * Efthimios Sokos - (University of Patras - Greece) * Roman Racine - (ETH Zurich - Swiss Seismological Service) * Jean-Marie Saurel - (Institut de Physique du Globe de Paris) * Chad Trabant - IRIS (Incorporated Research Institutions for Seismology) * Sandy Stromme - IRIS - LICENSE Loading configure.in +26 −10 Original line number Diff line number Diff line Loading @@ -42,6 +42,10 @@ BINARY_DIST_NAME_SUFFIX=$host AC_MSG_NOTICE(BINARY_DIST_NAME_SUFFIX set to $BINARY_DIST_NAME_SUFFIX) AC_SUBST(BINARY_DIST_NAME_SUFFIX) avail_libmseed=YES avail_seedlink=YES avail_ew=YES #mtheo # AM_INIT_AUTOMAKE(FULL_PACKAGE_NAME,VERSION) AM_INIT_AUTOMAKE([full_package_name], [version]) Loading Loading @@ -141,9 +145,9 @@ AS_IF([test "x$enable_libmseed" != xno], # [], # [AC_MSG_FAILURE([libmseed found but libnmxp does not support it. (Try --disable-libmseed to disable)])]) ], [AC_MSG_WARN([ libmseed is not available (--disable-libmseed to disable) ]) [ avail_libmseed=NO AC_MSG_WARN([libmseed is not available (--disable-libmseed to disable)]) # AC_CHECK_LIB([nmxp], [nmxp_openSocket], [], [AC_MSG_ERROR([libnmxp not found or it supports libmseed # but libmseed is not available anymore! Try to recompile libnmxp! # ])]) Loading @@ -152,9 +156,11 @@ AS_IF([test "x$enable_libmseed" != xno], ], [ # AC_CHECK_LIB([nmxp], [nmxp_openSocket], [], [AC_MSG_ERROR([libnmxp not found or supports libmseed (--enable-libmseed to enable)!])]) avail_libmseed=NO AC_MSG_WARN([libmseed feature has been disabled!]) ] ) AM_CONDITIONAL(ENABLE_LIBMSEED, test x$enable_libmseed != xno) AC_ARG_VAR(EW_HOME, [Earthworm home directory]) AC_ARG_VAR(EW_VERSION, [Earthworm version directory]) Loading Loading @@ -223,10 +229,14 @@ AS_IF([test "x$enable_ew" != xno], LIBS="$LIBS $EWOBJS" ]) ], [AC_MSG_WARN([Earthworm files are not available (--disable-ew to disable)])] [ avail_ew=NO AC_MSG_WARN([Earthworm files are not available (--disable-ew to disable)])] ) ], [AC_MSG_WARN([ew feature has been disabled!])] [ avail_ew=NO AC_MSG_WARN([ew feature has been disabled!])] ) AM_CONDITIONAL(ENABLE_EWSOURCES, test x$EWOS != x) AM_CONDITIONAL(ENABLE_EW, test x$enable_ew != xno) Loading @@ -238,7 +248,11 @@ AC_ARG_VAR(SEISCOMPDIR, [SeisComP root directory - default is /home/sysop/seisco # Seedlink check. AS_IF([test "x$enable_seedlink" != xno], [ AC_CHECK_FILES([./src/seedlink_plugin.c ./src/seedlink_plugin.h], [], AC_MSG_ERROR([seedlink plug-in sources not found!])) AC_CHECK_FILES([./src/seedlink_plugin.c ./src/seedlink_plugin.h], [], [ avail_seedlink=NO AC_MSG_ERROR([seedlink plug-in sources not found!])] ) AS_IF([test "x$SEISCOMPDIR" == x], [ Loading @@ -249,7 +263,9 @@ AS_IF([test "x$enable_seedlink" != xno], AC_SUBST(SEISCOMPDIR) ], [AC_MSG_WARN([seedlink feature has been disabled!])] [ avail_seedlink=NO AC_MSG_WARN([seedlink feature has been disabled!])] ) AM_CONDITIONAL(ENABLE_SEEDLINK, test x$enable_seedlink != xno) Loading Loading @@ -353,9 +369,9 @@ AC_OUTPUT # AC_MSG_NOTICE([ # Enabled features: libmseed ($enable_ew), SeedLink ($enable_seedlink), Earthworm ($enable_ew).]) AC_MSG_NOTICE([Enabled features libmseed : $enable_ew SeedLink : $enable_seedlink Earthworm: $enable_ew]) libmseed : $avail_libmseed SeedLink : $avail_seedlink Earthworm: $avail_ew]) AC_MSG_NOTICE([ Compile nmxptool using 'make'.]) Loading Loading
ChangeLog +10 −1 Original line number Diff line number Diff line 2013-03-23 17:22 2013-03-25 22:14 * nmxptool: Loading @@ -6,6 +6,15 @@ Matteo Quintiliani - Istituto Nazionale di Geofisica e Vulcanologia - Italy Mail bug reports and suggestions to <matteo.quintiliani@ingv.it> 2013-03-25 13:00 mtheo <matteo.quintiliani@ingv.it> * [r1420] configure.in: Incremented release candidate version to nmxptool 2.1.1-rc4 2013-03-23 16:22 mtheo <matteo.quintiliani@ingv.it> * [r1418] ChangeLog: Updated ChangeLog 2013-03-23 16:21 mtheo <matteo.quintiliani@ingv.it> * [r1417] lib/nmxp_data.c, src/nmxptool.c: Fixed big endian byte order Loading
HISTORY +4 −3 Original line number Diff line number Diff line Loading @@ -2,12 +2,13 @@ nmxptool Release History ######################### * Release 2.1.1-rc3 (2013/03/23) - Fixed bug: from now on, nmxptool will always create big-endian mini-SEED records (C. Trabant) * Release 2.1.1-rc4 (2013/03/26) - Fixed bug: SEED utilizes the Big Endian word order as its standard. In 2003, the FDSN adopted the format rule that Steim1 and Steim2 data records are to be written with the big-endian encoding only. From now on, nmxptool will only create big-endian Steim[12] compressed mini-SEED records (thanks to C. Trabant and S. Stromme) - Improvement: restart connection if any data is received within 60 seconds timeout = (NMXP_HIGHEST_TIMEOUT * 2) - News: windows binary distribution is available again. Loading
README +5 −4 Original line number Diff line number Diff line Loading @@ -333,16 +333,17 @@ architectures. - ACKNOWLEDGEMENT In no particular order: * Stefano Pintore - I.N.G.V. (Istituto Nazionale di Geofisica e Vulcanologia) * Salvatore Mazza - I.N.G.V. * Marco Olivieri - I.N.G.V. * Luigi Falco - I.N.G.V. * Stefano Pintore - INGV (Istituto Nazionale di Geofisica e Vulcanologia) * Salvatore Mazza - INGV * Marco Olivieri - INGV * Luigi Falco - INGV * Paul Friberg - ISTI (Instrumental Software Technologies, Inc.) * Marian Jusko * Efthimios Sokos - (University of Patras - Greece) * Roman Racine - (ETH Zurich - Swiss Seismological Service) * Jean-Marie Saurel - (Institut de Physique du Globe de Paris) * Chad Trabant - IRIS (Incorporated Research Institutions for Seismology) * Sandy Stromme - IRIS - LICENSE Loading
configure.in +26 −10 Original line number Diff line number Diff line Loading @@ -42,6 +42,10 @@ BINARY_DIST_NAME_SUFFIX=$host AC_MSG_NOTICE(BINARY_DIST_NAME_SUFFIX set to $BINARY_DIST_NAME_SUFFIX) AC_SUBST(BINARY_DIST_NAME_SUFFIX) avail_libmseed=YES avail_seedlink=YES avail_ew=YES #mtheo # AM_INIT_AUTOMAKE(FULL_PACKAGE_NAME,VERSION) AM_INIT_AUTOMAKE([full_package_name], [version]) Loading Loading @@ -141,9 +145,9 @@ AS_IF([test "x$enable_libmseed" != xno], # [], # [AC_MSG_FAILURE([libmseed found but libnmxp does not support it. (Try --disable-libmseed to disable)])]) ], [AC_MSG_WARN([ libmseed is not available (--disable-libmseed to disable) ]) [ avail_libmseed=NO AC_MSG_WARN([libmseed is not available (--disable-libmseed to disable)]) # AC_CHECK_LIB([nmxp], [nmxp_openSocket], [], [AC_MSG_ERROR([libnmxp not found or it supports libmseed # but libmseed is not available anymore! Try to recompile libnmxp! # ])]) Loading @@ -152,9 +156,11 @@ AS_IF([test "x$enable_libmseed" != xno], ], [ # AC_CHECK_LIB([nmxp], [nmxp_openSocket], [], [AC_MSG_ERROR([libnmxp not found or supports libmseed (--enable-libmseed to enable)!])]) avail_libmseed=NO AC_MSG_WARN([libmseed feature has been disabled!]) ] ) AM_CONDITIONAL(ENABLE_LIBMSEED, test x$enable_libmseed != xno) AC_ARG_VAR(EW_HOME, [Earthworm home directory]) AC_ARG_VAR(EW_VERSION, [Earthworm version directory]) Loading Loading @@ -223,10 +229,14 @@ AS_IF([test "x$enable_ew" != xno], LIBS="$LIBS $EWOBJS" ]) ], [AC_MSG_WARN([Earthworm files are not available (--disable-ew to disable)])] [ avail_ew=NO AC_MSG_WARN([Earthworm files are not available (--disable-ew to disable)])] ) ], [AC_MSG_WARN([ew feature has been disabled!])] [ avail_ew=NO AC_MSG_WARN([ew feature has been disabled!])] ) AM_CONDITIONAL(ENABLE_EWSOURCES, test x$EWOS != x) AM_CONDITIONAL(ENABLE_EW, test x$enable_ew != xno) Loading @@ -238,7 +248,11 @@ AC_ARG_VAR(SEISCOMPDIR, [SeisComP root directory - default is /home/sysop/seisco # Seedlink check. AS_IF([test "x$enable_seedlink" != xno], [ AC_CHECK_FILES([./src/seedlink_plugin.c ./src/seedlink_plugin.h], [], AC_MSG_ERROR([seedlink plug-in sources not found!])) AC_CHECK_FILES([./src/seedlink_plugin.c ./src/seedlink_plugin.h], [], [ avail_seedlink=NO AC_MSG_ERROR([seedlink plug-in sources not found!])] ) AS_IF([test "x$SEISCOMPDIR" == x], [ Loading @@ -249,7 +263,9 @@ AS_IF([test "x$enable_seedlink" != xno], AC_SUBST(SEISCOMPDIR) ], [AC_MSG_WARN([seedlink feature has been disabled!])] [ avail_seedlink=NO AC_MSG_WARN([seedlink feature has been disabled!])] ) AM_CONDITIONAL(ENABLE_SEEDLINK, test x$enable_seedlink != xno) Loading Loading @@ -353,9 +369,9 @@ AC_OUTPUT # AC_MSG_NOTICE([ # Enabled features: libmseed ($enable_ew), SeedLink ($enable_seedlink), Earthworm ($enable_ew).]) AC_MSG_NOTICE([Enabled features libmseed : $enable_ew SeedLink : $enable_seedlink Earthworm: $enable_ew]) libmseed : $avail_libmseed SeedLink : $avail_seedlink Earthworm: $avail_ew]) AC_MSG_NOTICE([ Compile nmxptool using 'make'.]) Loading