]> mj.ucw.cz Git - libucw.git/blob - examples/external-ucw-build/configure
Exampled moved to a top-level directory
[libucw.git] / examples / external-ucw-build / configure
1 #!/usr/bin/perl
2 # Configure script for the libucw example (inspired by ../external/configure)
3 # (c) 2008 Michal Vaner <vorner@ucw.cz>
4
5 use warnings;
6 use strict;
7
8 our($srcdir, $libdir);
9 BEGIN {
10         # Find the sources
11         my $pkgfile = "test.c";
12         if (!defined ($srcdir = $ENV{"SRCDIR"})) {
13                 if (-f $pkgfile) {
14                         $srcdir=".";
15                 } elsif ($0 =~ m@^(.*)/configure$@ && -f "$1/$pkgfile") {
16                         $srcdir=$1;
17                 } else {
18                         die "Don't know how to find myself. Please set SRCDIR manually.\n";
19                 }
20         }
21         # Ask pkg-config if libucw is installed and find its configure modules
22         `pkg-config libucw --atleast-version=3.13`;
23         !$? or die "Package `libucw' (version 3.13 or newer) not found. Is PKG_CONFIG_PATH set properly?\n";
24         $libdir=`pkg-config libucw --variable=perl_modules_dir`;
25         chomp $libdir;
26         die "Unable to find the libucw configure system\n" if $? || not defined $libdir;
27 }
28 use lib $libdir;
29 use UCW::Configure;
30
31 Init($srcdir, 'default.cfg');
32 Log "### Configuring TestApp ###\n\n";
33 Include Get("CONFIG");
34 # What should be detected?
35 require UCW::Configure::Build;
36 require UCW::Configure::Paths;
37 require UCW::Configure::C;
38 require UCW::Configure::Pkg;
39 # You could generate your own documentation, too
40 # require UCW::Configure::Doc;
41
42 # Get some libraries
43 UCW::Configure::Pkg::PkgConfig("libucw") or Fail("libUCW is required");
44 Finish();
45
46 Log "\nConfigured, run `make' to build everything.\n";