** added endian checks in configure

** decreased versions in the auto* checks


git-svn-id: http://svn.osgeo.org/qgis/trunk@1380 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
jobi 2004-05-12 08:28:04 +00:00
parent 90dce01931
commit d8f710b4c3
3 changed files with 19 additions and 6 deletions

View File

@ -1,9 +1,13 @@
QGIS Change Log QGIS Change Log
ChangeLog,v 1.68 2004/05/11 23:08:45 timlinux Exp ChangeLog,v 1.69 2004/05/12 08:28:04 jobi Exp
------------------------------------------------------------------------------ ------------------------------------------------------------------------------
Version 0.3 'Madison' .... developement version Version 0.3 'Madison' .... developement version
2004-05-12 0.2.0devel8 2004-05-12 [jobi] 0.2.0devel9
** Added endian checks in configure
** decreased versions in the auto* checks
2004-05-12 [ts] 0.2.0devel8
** Added addProject(QString) to plugin interface. ** Added addProject(QString) to plugin interface.
2004-05-05 [jobi] 0.2.0devel7 2004-05-05 [jobi] 0.2.0devel7

View File

@ -3,7 +3,7 @@
# Automakeversion # Automakeversion
AM_1=1 AM_1=1
AM_2=7 AM_2=7
AM_3=6 AM_3=2
# Autoconfversion # Autoconfversion
AC_1=2 AC_1=2
@ -11,7 +11,7 @@ AC_2=57
# Libtoolversion # Libtoolversion
LT_1=1 LT_1=1
LT_2=5 LT_2=4
# Check automake version # Check automake version
AM_VERSION=`automake --version | sed -n -e 's#[^0-9]* \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*$#\1 \2 \3#p'` AM_VERSION=`automake --version | sed -n -e 's#[^0-9]* \([0-9]*\)\.\([0-9]*\)\.\([0-9]*\).*$#\1 \2 \3#p'`

View File

@ -1,6 +1,6 @@
dnl Process this file with autoconf to produce a configure script. dnl Process this file with autoconf to produce a configure script.
dnl configure.in,v 1.72 2004/05/11 23:08:45 timlinux Exp dnl configure.in,v 1.73 2004/05/12 08:28:04 jobi Exp
AC_INIT AC_INIT
@ -24,7 +24,7 @@ dnl ---------------------------------------------------------------------------
MAJOR_VERSION=0 MAJOR_VERSION=0
MINOR_VERSION=2 MINOR_VERSION=2
MICRO_VERSION=0 MICRO_VERSION=0
EXTRA_VERSION=8 EXTRA_VERSION=9
if test $EXTRA_VERSION -eq 0; then if test $EXTRA_VERSION -eq 0; then
VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION} VERSION=${MAJOR_VERSION}.${MINOR_VERSION}.${MICRO_VERSION}
else else
@ -52,6 +52,15 @@ AC_LIBTOOL_DLOPEN
AC_PROG_LIBTOOL AC_PROG_LIBTOOL
dnl ---------------------------------------------------------------------------
dnl Check for Endian stuff to manage big endian anomalies
dnl ---------------------------------------------------------------------------
AC_C_BIGENDIAN
AC_CHECK_HEADERS([endian.h])
AC_CHECK_HEADERS([machine/endian.h])
dnl --------------------------------------------------------------------------- dnl ---------------------------------------------------------------------------
dnl Qt check dnl Qt check
dnl --------------------------------------------------------------------------- dnl ---------------------------------------------------------------------------