Skip to content

Commit

Permalink
Merge pull request #1438 from dwcaress/caress-tmp
Browse files Browse the repository at this point in the history
Fix GSF build, release 5.8.1beta06
  • Loading branch information
dwcaress authored Feb 24, 2024
2 parents 7ba817c + f5d2106 commit c81b6dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions ChangeLog.html
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ <h3 id="toc_1">MB-System Version 5.8 Releases and Release Notes:</h3>
<hr>

<ul>
<li>Version 5.8.1beta05 February 23, 2024</li>
<li>Version 5.8.1beta06 February 24, 2024</li>
<li>Version 5.8.1beta04 February 16, 2024</li>
<li>Version 5.8.1beta03 February 8, 2024</li>
<li>Version 5.8.1beta02 February 7, 2024</li>
Expand All @@ -370,7 +370,7 @@ <h3 id="toc_1">MB-System Version 5.8 Releases and Release Notes:</h3>

<hr>

<h4 id="toc_2">5.8.1beta05 (February 23, 2024)</h4>
<h4 id="toc_2">5.8.1beta06 (February 24, 2024)</h4>

<p>CMake build system: Fixed ability to set OTPS location in cmake build system.</p>

Expand Down
4 changes: 2 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ or beta, are equally accessible as tarballs through the Github interface.
### MB-System Version 5.8 Releases and Release Notes:
---

- Version 5.8.1beta05 February 23, 2024
- Version 5.8.1beta06 February 24, 2024
- Version 5.8.1beta04 February 16, 2024
- Version 5.8.1beta03 February 8, 2024
- Version 5.8.1beta02 February 7, 2024
Expand All @@ -32,7 +32,7 @@ or beta, are equally accessible as tarballs through the Github interface.

---

#### 5.8.1beta05 (February 23, 2024)
#### 5.8.1beta06 (February 24, 2024)

CMake build system: Fixed ability to set OTPS location in cmake build system.

Expand Down
3 changes: 1 addition & 2 deletions src/gsf/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ message("In src/gsf")

add_library(
mbgsf
dump_gsf.c
gsf_compress.c
gsf_enc.c
gsf_indx.c
Expand All @@ -38,7 +37,7 @@ target_compile_definitions(mbgsf PRIVATE USE_DEFAULT_FILE_FUNCTIONS=1)
target_include_directories(mbgsf PUBLIC ${CMAKE_CURRENT_SOURCE_DIR})

add_executable(dump_gsf dump_gsf.c gsf.h)
target_link_libraries(dump_gsf PRIVATE mbgsf)
target_link_libraries(dump_gsf PRIVATE mbgsf m)

install(TARGETS mbgsf DESTINATION ${CMAKE_INSTALL_LIBDIR})
install(TARGETS dump_gsf DESTINATION ${CMAKE_INSTALL_BINDIR})
Expand Down
4 changes: 2 additions & 2 deletions src/mbio/mb_define.h
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
#include <stdint.h>

/* Define version and date for this release */
#define MB_VERSION "5.8.1beta05"
#define MB_VERSION_DATE "23 February 2024"
#define MB_VERSION "5.8.1beta06"
#define MB_VERSION_DATE "24 February 2024"

/* CMake supports current OS's and so there is only one form of RPC and XDR and no mb_config.h file */
#ifdef CMAKE_BUILD_SYSTEM
Expand Down

0 comments on commit c81b6dc

Please sign in to comment.