X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=sidebyside;f=free%2Flibs%2Fconfigure;h=a359da281800638055b798e531eeb050949d8a83;hb=09e7fe5641b94148d998a1b620bf694f353cb17b;hp=be2aee08c841d67e59fadf22af703fec48262e68;hpb=aaa20e4500b8f34ae150ac98c541f94e588c78f5;p=libucw.git diff --git a/free/libs/configure b/free/libs/configure index be2aee08..a359da28 100755 --- a/free/libs/configure +++ b/free/libs/configure @@ -7,7 +7,7 @@ use strict; our $srcdir; BEGIN { - my $pkgfile = "lib/wildmatch.c"; + my $pkgfile = "ucw/wildmatch.c"; if (!defined ($srcdir = $ENV{"SRCDIR"})) { if (-f $pkgfile) { $srcdir="."; @@ -17,15 +17,17 @@ BEGIN { die "Don't know how to find myself. Please set SRCDIR manually."; } } - require "$srcdir/lib/perl/Configure.pm"; + require "$srcdir/ucw/perl/Configure.pm"; UCW::Configure::import UCW::Configure; } Init($srcdir, "default.cfg"); -Include "lib/default.cfg"; +Include "ucw/default.cfg"; Log "### Configuring Sherlock Libraries " . Get("SHERLOCK_VERSION") . " with configuration " . Get("CONFIG") . "\n"; Include Get("CONFIG"); -Include "lib/autoconf.cfg"; +Include "ucw/paths.cfg"; +Include "ucw/autoconf.cfg"; +Include "ucw/ucw.cfg"; Finish(); Log "\nConfigured, run `make' to build everything.\n";