Skip to Content.
Sympa Menu

freetds - RE: [freetds] Nightly build fails

freetds AT lists.ibiblio.org

Subject: FreeTDS Development Group

List archive

Chronological Thread  
  • From: "ZIGLIO, Frediano, VF-IT" <Frediano.Ziglio AT vodafone.com>
  • To: "FreeTDS Development Group" <freetds AT lists.ibiblio.org>
  • Subject: RE: [freetds] Nightly build fails
  • Date: Wed, 30 Mar 2005 17:01:26 +0200

>
> >
> > According to last night's log, I can't currently construct a
> > snapshot.
> > Haven't had time to look into it further.
> >
> > I didn't take the build box offline until Friday, March 28.
> The last
> > successful build was on the 23rd. Maybe something was
> checked in that
> > day.
> >
> > Log follows.
> >
>
> ... omissis ...
>
> > exit 1; fi; done
> > make: don't know how to make num_limits.h. Stop
> >
>
> "make charset" in src/tds build num_limits.h
> I don't like to commit autogenerated files...
>
> perhaps a role like
>
> num_limits.h: numeric.pl
> perl numeric.pl > num_limits.tmp && mv num_limits.tmp
> num_limits.h
>
> in Makefile.am will suit. However I don't remember why for charset we
> don't have such role...
>

This should be sufficient

EXTRA_DIST = numeric.pl

num_limits.h: numeric.pl
rm -f $@
perl $< > .$@
mv .$@ $@

(you have to distribute numeric.pl to make make happy and distribute
num_limits.h to avoid perl during compile phase)

freddy77




Archive powered by MHonArc 2.6.24.

Top of Page