On 10/18/13 10:52, Philippe Makowski wrote:
Alex,

your last changes give this results :
http://ci.ibphoenix.fr/job/Firebird30_Ubuntu_Linux/47/console

AUTORECONF=autoreconf

**Error**: You must have autoconf 2.63 or later installed.
Download the appropriate package for your distribution/OS,



Ubuntu 12.04 LTS (Precise Pangolin) is not an old distribution (April
2012) and it have autoconf 2.68 it is a distro with Long Term Support
ending April 2017

I hope you do not suggest to be targeted to 5-years old toolchain till 2017 :)

Well - can you try the patch attached on U12.04 and if it works we will enable 2.68. Must say I've used autoupgrade 2.69 and this is the main reason to require this version.

Obviously the error message is wrong, since I see in your commit:
58703 by alexpeshkoff:
Avoid deprecated macros in configure.ac. Use autoconf 2.69 as basic for
FB3.


I've fixed an error message.


PS :
snapshots don't build too, they use a far older Debian Distro
Should I upgrade the snapshot builder ?


I think yes.

Index: autogen.sh
===================================================================
--- autogen.sh	(revision 58705)
+++ autogen.sh	(working copy)
@@ -5,7 +5,6 @@
 
 PKG_NAME=Firebird3
 SRCDIR=`dirname $0`
-DIE=0
 
 if [ -z "$AUTORECONF" ]
 then
@@ -22,25 +21,6 @@
 ACLOCAL='aclocal -I .'
 export ACLOCAL
 
-VER=`$AUTORECONF --version|grep '^[Aa]utoreconf'|sed 's/^[^0-9]*//'`
-case "$VER" in
- 0* | 1\.* | 2\.[0-9] | 2\.[0-9][a-z]* | \
- 2\.[1-5][0-9] | 2\.[1-5][0-9][a-z]* | 2\.6[0-8] | 2\.6[0-8][a-z]* )
-  echo
-  echo "**Error**: You must have autoconf 2.69 or later installed."
-  echo "Download the appropriate package for your distribution/OS,"
-  echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/autoconf/";
-  DIE=1
-  ;;
-esac
-
-# Put other tests for programs here!
-
-# If anything failed, exit now.
-if test "$DIE" -eq 1; then
-  exit 1
-fi
-
 # Give a warning if no arguments to 'configure' have been supplied.
 if test -z "$*" -a x$NOCONFIGURE = x; then
   echo "**Warning**: I am going to run \`configure' with no arguments."
Index: configure.ac
===================================================================
--- configure.ac	(revision 58703)
+++ configure.ac	(working copy)
@@ -1,6 +1,6 @@
 dnl ############################# INITIALISATION ###############################
 
-AC_PREREQ([2.69])
+AC_PREREQ([2.68])
 AC_INIT
 AC_CONFIG_SRCDIR([src])
 
------------------------------------------------------------------------------
October Webinars: Code for Performance
Free Intel webinars can help you accelerate application performance.
Explore tips for MPI, OpenMP, advanced profiling, and more. Get the most from 
the latest Intel processors and coprocessors. See abstracts and register >
http://pubads.g.doubleclick.net/gampad/clk?id=60135031&iu=/4140/ostg.clktrk
Firebird-Devel mailing list, web interface at 
https://lists.sourceforge.net/lists/listinfo/firebird-devel

Reply via email to