Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Hopefully fixing ABI with 1.0...
  • Loading branch information
icculus committed Sep 9, 2005
1 parent 0e54e2a commit 24ce834
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG
Expand Up @@ -2,7 +2,9 @@
* CHANGELOG.
*/

09092005 - Some tweaks to PHYSFS_Allocator.
09092005 - Some tweaks to PHYSFS_Allocator. Apparently configure.in doesn't
work like I thought for version bumps, so it thinks 1.1.0 isn't
binary compatible with 1.0...fixed, I think.
09062005 - Happy September. Changed the allocation abstraction to use
PHYSFS_uint64 instead of size_t, so we don't have to include
system headers inside physfs.h. Minor MingW fixes (but it's still
Expand Down
8 changes: 4 additions & 4 deletions configure.in
Expand Up @@ -14,10 +14,10 @@ dnl ---------------------------------------------------------------------
# set BINARY_AGE and INTERFACE_AGE to 0.

MAJOR_VERSION=1
MINOR_VERSION=1
MICRO_VERSION=0
INTERFACE_AGE=0
BINARY_AGE=0
MINOR_VERSION=0
MICRO_VERSION=1
INTERFACE_AGE=1
BINARY_AGE=1
VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION

AC_SUBST(MAJOR_VERSION)
Expand Down

0 comments on commit 24ce834

Please sign in to comment.