Compare commits

..

2 Commits

Author SHA1 Message Date
Ryan C. Gordon bfa7997c67
unix: Better base dir calculation for Solaris.
This idea came from https://github.com/libsdl-org/SDL/pull/6681 (thanks!)

(cherry picked from commit 9266e773d3)
2022-11-27 21:46:12 -05:00
Ryan C. Gordon eb3383b532
Bumped version to 3.2.0! 2022-09-30 16:13:07 -04:00
4 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@
# compile, using preprocessor checks for platform-specific bits instead of
# testing in here.
set(PHYSFS_VERSION 3.3.0)
set(PHYSFS_VERSION 3.2.0)
cmake_minimum_required(VERSION 3.0)

View File

@ -2,7 +2,7 @@
# wmake -f Makefile.os2
LIBNAME = physfs
VERSION = 3.3.0
VERSION = 3.2.0
LIBFILE = $(LIBNAME).lib
DLLFILE = $(LIBNAME).dll

View File

@ -435,7 +435,7 @@ typedef struct PHYSFS_Version
#ifndef DOXYGEN_SHOULD_IGNORE_THIS
#define PHYSFS_VER_MAJOR 3
#define PHYSFS_VER_MINOR 3
#define PHYSFS_VER_MINOR 2
#define PHYSFS_VER_PATCH 0
#endif /* DOXYGEN_SHOULD_IGNORE_THIS */

View File

@ -31,7 +31,7 @@
#include "physfs.h"
#define TEST_VERSION_MAJOR 3
#define TEST_VERSION_MINOR 3
#define TEST_VERSION_MINOR 2
#define TEST_VERSION_PATCH 0
static FILE *history_file = NULL;