]> mj.ucw.cz Git - libucw.git/blobdiff - free/libs/examples/external-ucw-build/configure
Merge branch 'v3.12.4'
[libucw.git] / free / libs / examples / external-ucw-build / configure
index f87fcc735132e471a4abfc5bc206db351fdbd44d..ec4b279e7fbbed3f46fbdcac76280994efa11605 100755 (executable)
@@ -1,8 +1,6 @@
 #!/usr/bin/perl
-# Configure script for the libucw example
+# Configure script for the libucw example (inspired by ../external/configure)
 # (c) 2008 Michal Vaner <vorner@ucw.cz>
-# A lot copyed from ../external/configure
-# (c) 2007 Martin Mares <mj@ucw.cz>
 
 use warnings;
 use strict;
@@ -17,13 +15,15 @@ BEGIN {
                } elsif ($0 =~ m@^(.*)/configure$@ && -f "$1/$pkgfile") {
                        $srcdir=$1;
                } else {
-                       die "Don't know how to find myself. Please set SRCDIR manually.";
+                       die "Don't know how to find myself. Please set SRCDIR manually.\n";
                }
        }
-       # Ask pkg-config for the rest of configure
+       # Ask pkg-config if libucw is installed and find its configure modules
+       `pkg-config libucw --atleast-version=3.13`;
+       !$? or die "Package `libucw' (version 3.13 or newer) not found. Is PKG_CONFIG_PATH set properly?\n";
        $libdir=`pkg-config libucw --variable=perl_modules_dir`;
        chomp $libdir;
-       die "libUCW not found. Is PKG_CONFIG_PATH set properly?" if $? || not defined $libdir;
+       die "Unable to find the libucw configure system\n" if $? || not defined $libdir;
 }
 use lib $libdir;
 use UCW::Configure;