Skip to content

Commit

Permalink
bumped version to 2024.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Andras Pahi committed Aug 3, 2024
1 parent e1ae221 commit 516f7f6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ endif


ifeq ($(OSTYPE),darwin)
LIBS = -lm -framework CoreServices -framework DirectoryService -framework Security
LIBS += -framework CoreServices -framework DirectoryService -framework Security
EXTRA += -Wno-deprecated-declarations

endif
Expand Down Expand Up @@ -105,6 +105,11 @@ all: ${PROG} api_test

${PROG}: ${OBJS}
${CC} ${EXTRA} -o ${PROG} ${OBJS} ${LIBS}
rm -f darwin.rpath

darwin.rpath: ${PROG}
install_name_tool -add_rpath /usr/local/lib ${PROG}
touch darwin.rpath

libmv1api.a: ${COMOBJS} ${LIBOBJS}
${AR} cru $@ ${COMOBJS} ${LIBOBJS}
Expand Down
6 changes: 3 additions & 3 deletions include/mumps.h
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,9 @@
#define MAP_CHUNK (4*1024) // map is written in 4K chunks
#define MAX_MAP_BYTES (MAX_MAP_CHUNKS * 32 * MAP_CHUNK) // 4MB for now
#define MAX_DATABASE_BLKS 2147483647 // max of 2**31-1 for now
#define VERSION_MAJOR 2023 // Major version number
#define VERSION_MINOR 2 // Minor version number
#define VERSION_TEST 1 // Test version number
#define VERSION_MAJOR 2024 // Major version number
#define VERSION_MINOR 8 // Minor version number
#define VERSION_TEST 0 // Test version number
#define KBYTE ((size_t) 1024) // 1024
#define MBYTE ((size_t) 1048576) // 1024*1024
#define DAEMONS 10 // Jobs per daemon
Expand Down

0 comments on commit 516f7f6

Please sign in to comment.