
rs at plusw
Jul 17, 2009, 2:16 PM
Post #3 of 9
(2486 views)
Permalink
|
Hi, give me a hint: How can I get 1.11.3 ? at github I searched but found only 1.11.2 (master) Am 17.07.2009 um 19:56 schrieb Paul Orrock: > I think that I fixed this, compare the version in git with the > version in 1.11.3 > > Regards > > Paul > > On 17 Jul 2009, at 18:25, Rolf Schaufelberger <rs [at] plusw> wrote: > >> Hi, >> I'm just trying a fresh install of 1.11.3 and found, that inst/ >> reqired.pl reports not needed prereqs as missing. >> The error ist in line 90f , the call to hard_fail does >> >> hard_fail( >> "Required software not found:\n\n", >> $RESULTS{PG} ? '' : "\tPostgreSQL >= 7.3.0 (http://postgresql.org >> )\n", >> SRESULTS{MYSQL} ? '' : "..." , >> >> ... >> >> So , when I choose Pg it prints MYSQL as missing since >> RESULTS{MYSQL} does not exist . >> >> Changed this to >> >> hard_fail( >> "Required software not found:\n\n", >> ( !exists $RESULTS{PG} || $RESULTS{PG} ) ? '' : ... >> >> for all tests , see attached file. >> >> Sorry, I'm not (yet ) very familiar with git to be sure that I'm >> doing all right. >> >> >> Mit freundlichen Grüßen >> Rolf Schaufelberger >> >> plusW GmbH >> Stuttgarter Str. 26 Tel. 07183 30 21 36 >> 73635 Rudersberg Fax 07183 30 21 85 >> >> www.plusw.de >> www.mypixler.com >> www.calendrino.de >> >> >> >> >> <required.pl> Mit freundlichen Grüßen Rolf Schaufelberger plusW GmbH Stuttgarter Str. 26 Tel. 07183 30 21 36 73635 Rudersberg Fax 07183 30 21 85 www.plusw.de www.mypixler.com www.calendrino.de
|