star-stl

Load STereo Lithography (StL) file format
git clone git://git.meso-star.fr/star-stl.git
Log | Files | Refs | README | LICENSE

commit dcb3372a9c7aca17c0291a1300673ff54b20329f
parent 7f1ebe8fd29611c5ba2935850d36678e7b5996b3
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Tue,  2 May 2023 12:02:59 +0200

Merge branch 'release_0.4.1'

Diffstat:
MREADME.md | 12++++++++----
Mcmake/CMakeLists.txt | 4++--
Msrc/sstl.c | 4++--
Msrc/sstl.h | 2+-
Msrc/test_sstl.c | 2+-
Msrc/test_sstl_load.c | 2+-
6 files changed, 15 insertions(+), 11 deletions(-)

diff --git a/README.md b/README.md @@ -15,6 +15,10 @@ can be edited, built, tested and installed as any CMake project. ## Release notes +### Version 0.4.1 + +Correction of a compilation error highlighted in particular by GCC 4.9.2 + ### Version 0.4 - Add write functionality (either to files or streams), @@ -38,8 +42,8 @@ can be edited, built, tested and installed as any CMake project. ## License -Copyright (C) 2015, 2016, 2019, 2021 |Méso|Star> (<contact@meso-star.com>). -Star-STL is free software released under the CeCILLv2.1 license. You are -welcome to redistribute it under certain conditions; refer to the COPYING files -for details. +Copyright (C) 2015, 2016, 2019, 2021, 2023 |Méso|Star> +(<contact@meso-star.com>). Star-STL is free software released under the +CeCILLv2.1 license. You are welcome to redistribute it under certain +conditions; refer to the COPYING files for details. diff --git a/cmake/CMakeLists.txt b/cmake/CMakeLists.txt @@ -1,4 +1,4 @@ -# Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com) +# Copyright (C) 2015, 2016, 2019, 2021, 2023 |Méso|Star> (contact@meso-star.com) # # This software is governed by the CeCILL license under French law and # abiding by the rules of distribution of free software. You can use, @@ -66,7 +66,7 @@ endif() set(VERSION_MAJOR 0) set(VERSION_MINOR 4) -set(VERSION_PATCH 0) +set(VERSION_PATCH 1) set(VERSION ${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}) set_target_properties(sstl PROPERTIES DEFINE_SYMBOL SSTL_SHARED_BUILD diff --git a/src/sstl.c b/src/sstl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2015, 2016, 2019, 2021, 2023 |Méso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, @@ -630,7 +630,7 @@ error: #if defined(COMPILER_GCC) #define FTELL(P, S) \ if(-1L == ((P) = ftell(S))) { res = RES_IO_ERR; goto error; } -#elif deined(COMPILER_CL) +#elif defined(COMPILER_CL) #define FTELL(S) \ if(-1L == ((P) = _ftelli64(S))) { res = RES_IO_ERR; goto error; } #else diff --git a/src/sstl.h b/src/sstl.h @@ -1,4 +1,4 @@ -/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2015, 2016, 2019, 2021, 2023 |Méso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, diff --git a/src/test_sstl.c b/src/test_sstl.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2015, 2016, 2019, 2021, 2023 |Méso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use, diff --git a/src/test_sstl_load.c b/src/test_sstl_load.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2015, 2016, 2019, 2021 |Meso|Star> (contact@meso-star.com) +/* Copyright (C) 2015, 2016, 2019, 2021, 2023 |Méso|Star> (contact@meso-star.com) * * This software is governed by the CeCILL license under French law and * abiding by the rules of distribution of free software. You can use,