]> mj.ucw.cz Git - subauth.git/blob - configure
Elementary client and passing of JSON back and forth
[subauth.git] / configure
1 #!/usr/bin/perl
2 # Configure script for the sub-authentication daemon
3 # Inspired by LibUCW examples
4
5 use warnings;
6 use strict;
7
8 our($srcdir, $libdir);
9 BEGIN {
10         # Find the sources
11         my $pkgfile = "subauthd.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 subauthd ###\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
40 # Get some libraries
41 UCW::Configure::Pkg::PkgConfig("libucw") or Fail("libucw is required");
42 UCW::Configure::Pkg::PkgConfig("libucw-json") or Fail("libucw-json is required");
43 Finish();
44
45 Log "\nConfigured, run `make' to build everything.\n";