star-gas

Load and structure gas data
git clone git://git.meso-star.fr/star-gas.git
Log | Files | Refs | README | LICENSE

commit 2672212111b3960b35a3602b97574039b4ae6a85
parent 281ea9fe03e59f9b76e59b7c5e868b5420c62fd4
Author: Vincent Forest <vincent.forest@meso-star.com>
Date:   Mon,  2 Mar 2026 15:34:13 +0100

Fix export of library symbols

The macro used to define that library symbols should be exported was not
the right one. Its name was that of the macro of another library from
which the Makefile file had been copied.

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -32,7 +32,7 @@ SRC = src/sgas.c OBJ = $(SRC:.c=.o) DEP = $(SRC:.c=.d) -CFLAGS_LIB = -std=c99 $(CFLAGS_SO) $(INCS) -DSMETEO_SHARED_BUILD +CFLAGS_LIB = -std=c99 $(CFLAGS_SO) $(INCS) -DSGAS_SHARED_BUILD LDFLAGS_LIB = $(LDFLAGS_SO) $(LIBS) library: .config $(DEP)