|
From: Chad M. <cmm...@us...> - 2005-12-08 05:56:41
|
Update of /cvsroot/seq/showeq In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24045 Modified Files: ChangeLog acinclude.m4 configure.in Log Message: Live compatibility as of 12/7 Index: acinclude.m4 =================================================================== RCS file: /cvsroot/seq/showeq/acinclude.m4,v retrieving revision 1.10 retrieving revision 1.11 diff -u -d -r1.10 -r1.11 --- acinclude.m4 13 Sep 2005 15:23:08 -0000 1.10 +++ acinclude.m4 8 Dec 2005 05:56:33 -0000 1.11 @@ -717,11 +717,13 @@ qt_target_version="3.2.0" if test $qt_major_version -le 2 ; then - AC_MSG_ERROR([Please Make sure qt $qt_target_version or later is installed!!!]); -elif test $qt_major_version -le 3 ; then + AC_MSG_ERROR([ShowEQ requires qt $qt_target_version or later, but does not support qt 4 yet. Please make sure qt $qt_target_version or later is installed!!!]); +elif test $qt_major_version -eq 3 ; then if test $qt_minor_version -lt 2 ; then - AC_MSG_ERROR([Please Make sure qt $qt_target_version or later is installed!!!]); + AC_MSG_ERROR([ShowEQ requires qt $qt_target_version or later, but does not support qt 4 yet. Please make sure qt $qt_target_version or later is installed!!!]); fi; +else + AC_MSG_ERROR([ShowEQ requires qt $qt_target_version or later, but does not support qt 4 yet. Please make sure qt $qt_target_version or later is installed!!!]); fi; dnl ************************************ Index: ChangeLog =================================================================== RCS file: /cvsroot/seq/showeq/ChangeLog,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- ChangeLog 29 Oct 2005 23:15:31 -0000 1.11 +++ ChangeLog 8 Dec 2005 05:56:33 -0000 1.12 @@ -1,5 +1,13 @@ Version: $Id$ $Name$ +purple (12/07/05) +------------------ ++ Updated version to 5.2.3.0 ++ Beefed up configure checks for qt so people don't get qt4 when they + upgrade to the latest version ++ Redid most world opcodes, zone opcodes ++ Updated structs for 12/7 live + purple (10/29/05) ------------------ + Updated version to 5.2.2.0 Index: configure.in =================================================================== RCS file: /cvsroot/seq/showeq/configure.in,v retrieving revision 1.60 retrieving revision 1.61 diff -u -d -r1.60 -r1.61 --- configure.in 29 Oct 2005 23:15:32 -0000 1.60 +++ configure.in 8 Dec 2005 05:56:33 -0000 1.61 @@ -2,7 +2,7 @@ dnl $Id$ $Name$ AC_PREREQ(2.59) -AC_INIT(showeq, 5.2.2.0) +AC_INIT(showeq, 5.2.3.0) AC_CONFIG_SRCDIR(src/main.cpp) AC_CANONICAL_SYSTEM |