From 24ce834f442a9bde9cfbf8ce08e2fbbe0bbd187b Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Fri, 9 Sep 2005 20:35:18 +0000 Subject: [PATCH] Hopefully fixing ABI with 1.0... --- CHANGELOG | 4 +++- configure.in | 8 ++++---- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index f94cf0ad..b142580d 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -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 diff --git a/configure.in b/configure.in index 206a2f66..6bf98038 100644 --- a/configure.in +++ b/configure.in @@ -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)