X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=free%2Flibs%2Fexamples%2Finternal%2Fconfigure;h=6f4a678d757d57c71a709f3ba350e1b5c41295b3;hb=89f86d97def2a365b1799f70e3f254264b9c7615;hp=e4b5f1003536d9cffe4987b242b2727162ee0030;hpb=aaa20e4500b8f34ae150ac98c541f94e588c78f5;p=libucw.git diff --git a/free/libs/examples/internal/configure b/free/libs/examples/internal/configure index e4b5f100..6f4a678d 100755 --- a/free/libs/examples/internal/configure +++ b/free/libs/examples/internal/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/UCW/Configure.pm"; UCW::Configure::import UCW::Configure; } Init($srcdir, "default.cfg"); -Include "lib/default.cfg"; +Include "ucw/default.cfg"; Log "### Configuring TestApp ###\n\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";