Skip to content

Commit

Permalink
Merge pull request #1218 from dwcaress/caress-tmp
Browse files Browse the repository at this point in the history
Setup for 5.7.9beta13
  • Loading branch information
dwcaress authored Jul 18, 2021
2 parents 19576a8 + ba9c092 commit b132375
Show file tree
Hide file tree
Showing 18 changed files with 1,932 additions and 96 deletions.
7 changes: 7 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Distributions that do not include "beta" in the tag name correspond to the major
announced releases. The source distributions associated with all releases, major
or beta, are equally accessible as tarballs through the Github interface.

- Version 5.7.9beta13 July 18, 2021
- Version 5.7.9beta12 July 4, 2021
- Version 5.7.9beta11 June 26, 2021
- Version 5.7.9beta10 June 16, 2021
Expand Down Expand Up @@ -391,6 +392,12 @@ or beta, are equally accessible as tarballs through the Github interface.
### MB-System Version 5.7 Release Notes:
--

#### 5.7.9beta13 (July 18, 2021)

Mbextractsegy - fixed plotting so that the last plot is correct.

TRN: updated TRN documentation.

#### 5.7.9beta12 (July 4, 2021)

Build system: Fixed location of RPC and XDR headers for Ubuntu 21.
Expand Down
22 changes: 11 additions & 11 deletions configure
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.71 for mbsystem 5.7.9beta12.
# Generated by GNU Autoconf 2.71 for mbsystem 5.7.9beta13.
#
# Report bugs to <http://listserver.mbari.org/sympa/arc/mbsystem>.
#
Expand Down Expand Up @@ -621,8 +621,8 @@ MAKEFLAGS=
# Identity of this package.
PACKAGE_NAME='mbsystem'
PACKAGE_TARNAME='mbsystem'
PACKAGE_VERSION='5.7.9beta12'
PACKAGE_STRING='mbsystem 5.7.9beta12'
PACKAGE_VERSION='5.7.9beta13'
PACKAGE_STRING='mbsystem 5.7.9beta13'
PACKAGE_BUGREPORT='http://listserver.mbari.org/sympa/arc/mbsystem'
PACKAGE_URL='http://www.mbari.org/data/mbsystem/'

Expand Down Expand Up @@ -1522,7 +1522,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures mbsystem 5.7.9beta12 to adapt to many kinds of systems.
\`configure' configures mbsystem 5.7.9beta13 to adapt to many kinds of systems.

Usage: $0 [OPTION]... [VAR=VALUE]...

Expand Down Expand Up @@ -1597,7 +1597,7 @@ fi

if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of mbsystem 5.7.9beta12:";;
short | recursive ) echo "Configuration of mbsystem 5.7.9beta13:";;
esac
cat <<\_ACEOF

Expand Down Expand Up @@ -1766,7 +1766,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
mbsystem configure 5.7.9beta12
mbsystem configure 5.7.9beta13
generated by GNU Autoconf 2.71

Copyright (C) 2021 Free Software Foundation, Inc.
Expand Down Expand Up @@ -2302,7 +2302,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by mbsystem $as_me 5.7.9beta12, which was
It was created by mbsystem $as_me 5.7.9beta13, which was
generated by GNU Autoconf 2.71. Invocation command line was

$ $0$ac_configure_args_raw
Expand Down Expand Up @@ -3274,7 +3274,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu



printf "%s\n" "#define VERSION_DATE \"4 July 2021\"" >>confdefs.h
printf "%s\n" "#define VERSION_DATE \"18 July 2021\"" >>confdefs.h


printf "%s\n" " "
Expand Down Expand Up @@ -5369,7 +5369,7 @@ fi

# Define the identity of the package.
PACKAGE='mbsystem'
VERSION='5.7.9beta12'
VERSION='5.7.9beta13'


printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h
Expand Down Expand Up @@ -25372,7 +25372,7 @@ cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by mbsystem $as_me 5.7.9beta12, which was
This file was extended by mbsystem $as_me 5.7.9beta13, which was
generated by GNU Autoconf 2.71. Invocation command line was

CONFIG_FILES = $CONFIG_FILES
Expand Down Expand Up @@ -25441,7 +25441,7 @@ ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\
cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
ac_cs_config='$ac_cs_config_escaped'
ac_cs_version="\\
mbsystem config.status 5.7.9beta12
mbsystem config.status 5.7.9beta13
configured by $0, generated by GNU Autoconf 2.71,
with options \\"\$ac_cs_config\\"

Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ dnl See README file for copying and redistribution conditions.
dnl--------------------------------------------------------------------

dnl Initialize and set version and version date
AC_INIT([mbsystem],[5.7.9beta12],[http://listserver.mbari.org/sympa/arc/mbsystem],[mbsystem],[http://www.mbari.org/data/mbsystem/])
AC_DEFINE(VERSION_DATE, ["4 July 2021"], [Set VERSION_DATE define in mb_config.h])
AC_INIT([mbsystem],[5.7.9beta13],[http://listserver.mbari.org/sympa/arc/mbsystem],[mbsystem],[http://www.mbari.org/data/mbsystem/])
AC_DEFINE(VERSION_DATE, ["18 July 2021"], [Set VERSION_DATE define in mb_config.h])

AS_ECHO([" "])
AS_ECHO(["------------------------------------------------------------------------------"])
Expand Down
4 changes: 2 additions & 2 deletions libtool
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#! /bin/sh
# Generated automatically by config.status (mbsystem) 5.7.9beta12
# Libtool was configured on host bochica.shore.mbari.org:
# Generated automatically by config.status (mbsystem) 5.7.9beta13
# Libtool was configured on host tharp.local:
# NOTE: Changes made to this file will be lost: look at ltmain.sh.

# Provide generalized library-building support services.
Expand Down
8 changes: 4 additions & 4 deletions src/mbio/mb_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
#define PACKAGE_NAME "mbsystem"

/* Define to the full name and version of this package. */
#define PACKAGE_STRING "mbsystem 5.7.9beta12"
#define PACKAGE_STRING "mbsystem 5.7.9beta13"

/* Define to the one symbol short name of this package. */
#define PACKAGE_TARNAME "mbsystem"
Expand All @@ -107,7 +107,7 @@
#define PACKAGE_URL "http://www.mbari.org/data/mbsystem/"

/* Define to the version of this package. */
#define PACKAGE_VERSION "5.7.9beta12"
#define PACKAGE_VERSION "5.7.9beta13"

/* Build tools using PCL */
/* #undef PCLTOOLS_ENABLED */
Expand All @@ -124,10 +124,10 @@
#define TEST_ENABLED 1

/* Version number of package */
#define VERSION "5.7.9beta12"
#define VERSION "5.7.9beta13"

/* Set VERSION_DATE define in mb_config.h */
#define VERSION_DATE "4 July 2021"
#define VERSION_DATE "18 July 2021"

/* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most
significant byte first (like Motorola and SPARC, unlike Intel). */
Expand Down
Loading

0 comments on commit b132375

Please sign in to comment.