Package: libcutl
Version: 1.10.0+ds1-2
Severity: wishlist
Tags: patch
User: team+bo...@tracker.debian.org
Usertags: boost1.67

Dear Maintainer,

your package fails to build with boost1.67. You can find a build log
attached. If you want to attempt the build yourself, an updated version
of boost-defaults which brings in boost1.67 dependencies can be found
adding this line to your sources.list file:

  deb https://people.debian.org/~gio/reprepro unstable main

This bug has severity whishlist for the moment, but it will raised to RC
as soon as version 1.67 of Boost is promoted to default.

More specifically, your package fails building because it uses the old
tr1 namespace, instead of using the boost namespace directly. The
attached patch should fix this issue.

Please consider applying the attached patch as soon as boost1.67 is made
default in order to avoid FTBFS.

Thanks and all the best, Giovanni.
-- 
Giovanni Mascellani <g.mascell...@gmail.com>
Postdoc researcher - Université Libre de Bruxelles
From: Giovanni Mascellani <g...@debian.org>
Date: Tue, 9 Oct 2018 23:02:01 +0200
Subject: Use actual boost::regex.

---
 cutl/re/re.cxx | 44 ++++++++++++++++++++++----------------------
 m4/libboost.m4 |  6 +++---
 2 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/cutl/re/re.cxx b/cutl/re/re.cxx
index 3b132ab..654903f 100644
--- a/cutl/re/re.cxx
+++ b/cutl/re/re.cxx
@@ -9,7 +9,7 @@
 #ifndef LIBCUTL_EXTERNAL_BOOST
 #  include <cutl/details/boost/tr1/regex.hpp>
 #else
-#  include <boost/tr1/regex.hpp>
+#  include <boost/regex.hpp>
 #endif
 
 using namespace std;
@@ -40,17 +40,17 @@ namespace cutl
     struct basic_regex<C>::impl
     {
       typedef basic_string<C> string_type;
-      typedef tr1::basic_regex<C> regex_type;
+      typedef boost::basic_regex<C> regex_type;
       typedef typename regex_type::flag_type flag_type;
 
       impl () {}
       impl (regex_type const& r): r (r) {}
       impl (string_type const& s, bool icase)
       {
-        flag_type f (tr1::regex_constants::ECMAScript);
+        flag_type f (boost::regex_constants::ECMAScript);
 
         if (icase)
-          f |= tr1::regex_constants::icase;
+          f |= boost::regex_constants::icase;
 
         r.assign (s, f);
       }
@@ -118,15 +118,15 @@ namespace cutl
           impl_ = s == 0 ? new impl : new impl (*s, icase);
         else
         {
-          impl::flag_type f (tr1::regex_constants::ECMAScript);
+          impl::flag_type f (boost::regex_constants::ECMAScript);
 
           if (icase)
-            f |= tr1::regex_constants::icase;
+            f |= boost::regex_constants::icase;
 
           impl_->r.assign (*s, f);
         }
       }
-      catch (tr1::regex_error const& e)
+      catch (boost::regex_error const& e)
       {
         throw basic_format<char> (s == 0 ? "" : *s, e.what ());
       }
@@ -146,15 +146,15 @@ namespace cutl
           impl_ = s == 0 ? new impl : new impl (*s, icase);
         else
         {
-          impl::flag_type f (tr1::regex_constants::ECMAScript);
+          impl::flag_type f (boost::regex_constants::ECMAScript);
 
           if (icase)
-            f |= tr1::regex_constants::icase;
+            f |= boost::regex_constants::icase;
 
           impl_->r.assign (*s, f);
         }
       }
-      catch (tr1::regex_error const& e)
+      catch (boost::regex_error const& e)
       {
         throw basic_format<wchar_t> (s == 0 ? L"" : *s, e.what ());
       }
@@ -166,28 +166,28 @@ namespace cutl
     bool basic_regex<char>::
     match (string_type const& s) const
     {
-      return tr1::regex_match (s, impl_->r);
+      return boost::regex_match (s, impl_->r);
     }
 
     template <>
     bool basic_regex<wchar_t>::
     match (string_type const& s) const
     {
-      return tr1::regex_match (s, impl_->r);
+      return boost::regex_match (s, impl_->r);
     }
 
     template <>
     bool basic_regex<char>::
     search (string_type const& s) const
     {
-      return tr1::regex_search (s, impl_->r);
+      return boost::regex_search (s, impl_->r);
     }
 
     template <>
     bool basic_regex<wchar_t>::
     search (string_type const& s) const
     {
-      return tr1::regex_search (s, impl_->r);
+      return boost::regex_search (s, impl_->r);
     }
 
     template <>
@@ -196,13 +196,13 @@ namespace cutl
              string_type const& sub,
              bool first_only) const
     {
-      tr1::regex_constants::match_flag_type f (
-        tr1::regex_constants::format_default);
+      boost::regex_constants::match_flag_type f (
+        boost::regex_constants::format_default);
 
       if (first_only)
-        f |= tr1::regex_constants::format_first_only;
+        f |= boost::regex_constants::format_first_only;
 
-      return tr1::regex_replace (s, impl_->r, sub, f);
+      return boost::regex_replace (s, impl_->r, sub, f);
     }
 
     template <>
@@ -211,13 +211,13 @@ namespace cutl
              string_type const& sub,
              bool first_only) const
     {
-      tr1::regex_constants::match_flag_type f (
-        tr1::regex_constants::format_default);
+      boost::regex_constants::match_flag_type f (
+        boost::regex_constants::format_default);
 
       if (first_only)
-        f |= tr1::regex_constants::format_first_only;
+        f |= boost::regex_constants::format_first_only;
 
-      return tr1::regex_replace (s, impl_->r, sub, f);
+      return boost::regex_replace (s, impl_->r, sub, f);
     }
   }
 }
diff --git a/m4/libboost.m4 b/m4/libboost.m4
index a0b5a06..effb38e 100644
--- a/m4/libboost.m4
+++ b/m4/libboost.m4
@@ -129,13 +129,13 @@ dnl
 AC_DEFUN([LIBBOOST_REGEX], [
 LIBBOOST_LIB([regex],[
 AC_LANG_SOURCE([
-#include <boost/tr1/regex.hpp>
+#include <boost/regex.hpp>
 
 int
 main ()
 {
-  std::tr1::regex r ("te.t", std::tr1::regex_constants::ECMAScript);
-  return std::tr1::regex_match ("test", r) ? 0 : 1;
+  boost::regex r ("te.t", boost::regex_constants::ECMAScript);
+  return boost::regex_match ("test", r) ? 0 : 1;
 }
 ])],
 [$1],
Get:1 http://deb.debian.org/debian unstable InRelease [233 kB]
Get:2 https://people.debian.org/~gio/reprepro unstable InRelease [6844 B]
Get:3 http://deb.debian.org/debian unstable/main Sources.diff/Index [27.9 kB]
Get:4 http://deb.debian.org/debian unstable/main amd64 Packages.diff/Index [27.9 kB]
Get:5 http://deb.debian.org/debian unstable/main Sources 2018-09-24-2016.03.pdiff [18.9 kB]
Get:6 http://deb.debian.org/debian unstable/main Sources 2018-09-25-0210.07.pdiff [5710 B]
Get:7 http://deb.debian.org/debian unstable/main Sources 2018-09-25-0818.18.pdiff [8180 B]
Get:8 http://deb.debian.org/debian unstable/main Sources 2018-09-25-1414.06.pdiff [15.2 kB]
Get:9 http://deb.debian.org/debian unstable/main Sources 2018-09-25-2009.34.pdiff [8543 B]
Get:10 http://deb.debian.org/debian unstable/main Sources 2018-09-26-0208.49.pdiff [4854 B]
Get:11 http://deb.debian.org/debian unstable/main Sources 2018-09-26-0807.29.pdiff [4104 B]
Get:12 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-24-2016.03.pdiff [25.0 kB]
Get:13 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-0210.07.pdiff [27.8 kB]
Get:14 https://people.debian.org/~gio/reprepro unstable/main amd64 Packages [12.2 kB]
Get:11 http://deb.debian.org/debian unstable/main Sources 2018-09-26-0807.29.pdiff [4104 B]
Get:15 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-0818.18.pdiff [6665 B]
Get:16 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-1414.06.pdiff [12.7 kB]
Get:17 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-25-2009.34.pdiff [12.5 kB]
Get:18 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-0208.49.pdiff [7336 B]
Get:19 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-0807.29.pdiff [2664 B]
Get:19 http://deb.debian.org/debian unstable/main amd64 Packages 2018-09-26-0807.29.pdiff [2664 B]
Fetched 468 kB in 1s (369 kB/s)
Reading package lists...
Reading package lists...
Building dependency tree...
Reading state information...
The following NEW packages will be installed:
  autoconf automake autopoint autotools-dev bsdmainutils debhelper
  dh-autoreconf dh-strip-nondeterminism dwz file gettext gettext-base
  gir1.2-glib-2.0 gir1.2-harfbuzz-0.0 groff-base icu-devtools intltool-debian
  libarchive-zip-perl libboost-dev libboost-regex-dev libboost-regex1.67-dev
  libboost-regex1.67.0 libboost-system-dev libboost-system1.67-dev
  libboost-system1.67.0 libboost1.67-dev libbsd0 libcroco3 libexpat1
  libexpat1-dev libfile-stripnondeterminism-perl libfreetype6
  libgirepository-1.0-1 libglib2.0-0 libglib2.0-bin libglib2.0-data
  libglib2.0-dev libglib2.0-dev-bin libgraphite2-3 libgraphite2-dev
  libharfbuzz-dev libharfbuzz-gobject0 libharfbuzz-icu0 libharfbuzz0b
  libicu-dev libicu-le-hb-dev libicu-le-hb0 libicu60 libmagic-mgc libmagic1
  libmpdec2 libncurses6 libpcre16-3 libpcre3-dev libpcre32-3 libpcrecpp0v5
  libpipeline1 libpng16-16 libpython3-stdlib libpython3.6-minimal
  libpython3.6-stdlib libsigsegv2 libtimedate-perl libtool libxml2 m4 man-db
  mime-support pkg-config po-debconf python3 python3-distutils python3-lib2to3
  python3-minimal python3.6 python3.6-minimal zlib1g-dev
0 upgraded, 77 newly installed, 0 to remove and 2 not upgraded.
Need to get 52.0 MB of archives.
After this operation, 310 MB of additional disk space will be used.
Get:1 http://deb.debian.org/debian unstable/main amd64 libbsd0 amd64 0.9.1-1 [99.3 kB]
Get:2 http://deb.debian.org/debian unstable/main amd64 bsdmainutils amd64 11.1.2+b1 [191 kB]
Get:3 http://deb.debian.org/debian unstable/main amd64 groff-base amd64 1.22.3-10 [1176 kB]
Get:4 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-dev amd64 1.67.0.1 [3756 B]
Get:5 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-regex-dev amd64 1.67.0.1 [3804 B]
Get:6 https://people.debian.org/~gio/reprepro unstable/main amd64 libboost-system-dev amd64 1.67.0.1 [3676 B]
Get:7 http://deb.debian.org/debian unstable/main amd64 libpipeline1 amd64 1.5.0-1 [29.0 kB]
Get:8 http://deb.debian.org/debian unstable/main amd64 man-db amd64 2.8.4-2 [1194 kB]
Get:9 http://deb.debian.org/debian unstable/main amd64 libpython3.6-minimal amd64 3.6.6-4 [572 kB]
Get:10 http://deb.debian.org/debian unstable/main amd64 libexpat1 amd64 2.2.6-1 [105 kB]
Get:11 http://deb.debian.org/debian unstable/main amd64 python3.6-minimal amd64 3.6.6-4 [1650 kB]
Get:12 http://deb.debian.org/debian unstable/main amd64 python3-minimal amd64 3.6.6-1 [36.4 kB]
Get:13 http://deb.debian.org/debian unstable/main amd64 mime-support all 3.61 [37.1 kB]
Get:14 http://deb.debian.org/debian unstable/main amd64 libmpdec2 amd64 2.4.2-2 [87.2 kB]
Get:15 http://deb.debian.org/debian unstable/main amd64 libpython3.6-stdlib amd64 3.6.6-4 [1706 kB]
Get:16 http://deb.debian.org/debian unstable/main amd64 python3.6 amd64 3.6.6-4 [234 kB]
Get:17 http://deb.debian.org/debian unstable/main amd64 libpython3-stdlib amd64 3.6.6-1 [19.8 kB]
Get:18 http://deb.debian.org/debian unstable/main amd64 python3 amd64 3.6.6-1 [47.5 kB]
Get:19 http://deb.debian.org/debian unstable/main amd64 libmagic-mgc amd64 1:5.34-2 [239 kB]
Get:20 http://deb.debian.org/debian unstable/main amd64 libmagic1 amd64 1:5.34-2 [116 kB]
Get:21 http://deb.debian.org/debian unstable/main amd64 file amd64 1:5.34-2 [65.8 kB]
Get:22 http://deb.debian.org/debian unstable/main amd64 gettext-base amd64 0.19.8.1-7 [122 kB]
Get:23 http://deb.debian.org/debian unstable/main amd64 libsigsegv2 amd64 2.12-2 [32.8 kB]
Get:24 http://deb.debian.org/debian unstable/main amd64 m4 amd64 1.4.18-1 [202 kB]
Get:25 http://deb.debian.org/debian unstable/main amd64 autoconf all 2.69-11 [341 kB]
Get:26 http://deb.debian.org/debian unstable/main amd64 autotools-dev all 20180224.1 [77.0 kB]
Get:27 http://deb.debian.org/debian unstable/main amd64 automake all 1:1.16.1-1.1 [771 kB]
Get:28 http://deb.debian.org/debian unstable/main amd64 autopoint all 0.19.8.1-7 [434 kB]
Get:29 http://deb.debian.org/debian unstable/main amd64 libtool all 2.4.6-4 [547 kB]
Get:30 http://deb.debian.org/debian unstable/main amd64 dh-autoreconf all 19 [16.9 kB]
Get:31 http://deb.debian.org/debian unstable/main amd64 libarchive-zip-perl all 1.64-1 [96.8 kB]
Get:32 http://deb.debian.org/debian unstable/main amd64 libfile-stripnondeterminism-perl all 0.042-1 [20.1 kB]
Get:33 http://deb.debian.org/debian unstable/main amd64 libtimedate-perl all 2.3000-2 [42.2 kB]
Get:34 http://deb.debian.org/debian unstable/main amd64 dh-strip-nondeterminism all 0.042-1 [12.1 kB]
Get:35 http://deb.debian.org/debian unstable/main amd64 dwz amd64 0.12-2 [77.5 kB]
Get:36 http://deb.debian.org/debian unstable/main amd64 libglib2.0-0 amd64 2.58.1-2 [1223 kB]
Get:37 http://deb.debian.org/debian unstable/main amd64 libpng16-16 amd64 1.6.34-2 [288 kB]
Get:38 http://deb.debian.org/debian unstable/main amd64 libfreetype6 amd64 2.8.1-2 [461 kB]
Get:39 http://deb.debian.org/debian unstable/main amd64 libgraphite2-3 amd64 1.3.12-1 [80.2 kB]
Get:40 http://deb.debian.org/debian unstable/main amd64 libharfbuzz0b amd64 1.9.0-1 [923 kB]
Get:41 http://deb.debian.org/debian unstable/main amd64 libicu-le-hb0 amd64 1.0.3+git161113-5 [14.6 kB]
Get:42 http://deb.debian.org/debian unstable/main amd64 libicu60 amd64 60.2-6 [8073 kB]
Get:43 http://deb.debian.org/debian unstable/main amd64 libxml2 amd64 2.9.4+dfsg1-7+b1 [725 kB]
Get:44 http://deb.debian.org/debian unstable/main amd64 libcroco3 amd64 0.6.12-2 [144 kB]
Get:45 http://deb.debian.org/debian unstable/main amd64 libncurses6 amd64 6.1+20180714-1 [102 kB]
Get:46 http://deb.debian.org/debian unstable/main amd64 gettext amd64 0.19.8.1-7 [1304 kB]
Get:47 http://deb.debian.org/debian unstable/main amd64 intltool-debian all 0.35.0+20060710.4 [26.3 kB]
Get:48 http://deb.debian.org/debian unstable/main amd64 po-debconf all 1.0.20 [247 kB]
Get:49 http://deb.debian.org/debian unstable/main amd64 debhelper all 11.4 [985 kB]
Get:50 http://deb.debian.org/debian unstable/main amd64 libgirepository-1.0-1 amd64 1.58.0-1 [92.5 kB]
Get:51 http://deb.debian.org/debian unstable/main amd64 gir1.2-glib-2.0 amd64 1.58.0-1 [143 kB]
Get:52 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-gobject0 amd64 1.9.0-1 [659 kB]
Get:53 http://deb.debian.org/debian unstable/main amd64 gir1.2-harfbuzz-0.0 amd64 1.9.0-1 [664 kB]
Get:54 http://deb.debian.org/debian unstable/main amd64 icu-devtools amd64 60.2-6 [190 kB]
Get:55 http://deb.debian.org/debian unstable/main amd64 libboost1.67-dev amd64 1.67.0-7 [8388 kB]
Get:56 http://deb.debian.org/debian unstable/main amd64 libboost-regex1.67.0 amd64 1.67.0-7 [484 kB]
Get:57 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-icu0 amd64 1.9.0-1 [651 kB]
Get:58 http://deb.debian.org/debian unstable/main amd64 libglib2.0-data all 2.58.1-2 [1105 kB]
Get:59 http://deb.debian.org/debian unstable/main amd64 libglib2.0-bin amd64 2.58.1-2 [121 kB]
Get:60 http://deb.debian.org/debian unstable/main amd64 python3-lib2to3 all 3.6.6-1 [79.1 kB]
Get:61 http://deb.debian.org/debian unstable/main amd64 python3-distutils all 3.6.6-1 [144 kB]
Get:62 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev-bin amd64 2.58.1-2 [154 kB]
Get:63 http://deb.debian.org/debian unstable/main amd64 libpcre16-3 amd64 2:8.39-11 [258 kB]
Get:64 http://deb.debian.org/debian unstable/main amd64 libpcre32-3 amd64 2:8.39-11 [250 kB]
Get:65 http://deb.debian.org/debian unstable/main amd64 libpcrecpp0v5 amd64 2:8.39-11 [152 kB]
Get:66 http://deb.debian.org/debian unstable/main amd64 libpcre3-dev amd64 2:8.39-11 [651 kB]
Get:67 http://deb.debian.org/debian unstable/main amd64 pkg-config amd64 0.29-4+b1 [63.3 kB]
Get:68 http://deb.debian.org/debian unstable/main amd64 zlib1g-dev amd64 1:1.2.11.dfsg-1 [214 kB]
Get:69 http://deb.debian.org/debian unstable/main amd64 libglib2.0-dev amd64 2.58.1-2 [1445 kB]
Get:70 http://deb.debian.org/debian unstable/main amd64 libgraphite2-dev amd64 1.3.12-1 [22.6 kB]
Get:71 http://deb.debian.org/debian unstable/main amd64 libharfbuzz-dev amd64 1.9.0-1 [1001 kB]
Get:72 http://deb.debian.org/debian unstable/main amd64 libicu-le-hb-dev amd64 1.0.3+git161113-5 [30.0 kB]
Get:73 http://deb.debian.org/debian unstable/main amd64 libicu-dev amd64 60.2-6 [8900 kB]
Get:74 http://deb.debian.org/debian unstable/main amd64 libboost-regex1.67-dev amd64 1.67.0-7 [536 kB]
Get:75 http://deb.debian.org/debian unstable/main amd64 libboost-system1.67.0 amd64 1.67.0-7 [228 kB]
Get:76 http://deb.debian.org/debian unstable/main amd64 libboost-system1.67-dev amd64 1.67.0-7 [231 kB]
Get:77 http://deb.debian.org/debian unstable/main amd64 libexpat1-dev amd64 2.2.6-1 [152 kB]
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
debconf: unable to initialize frontend: Readline
debconf: (This frontend requires a controlling tty.)
debconf: falling back to frontend: Teletype
dpkg-preconfigure: unable to re-open stdin: 
Fetched 52.0 MB in 2s (27.8 MB/s)
Selecting previously unselected package libbsd0:amd64.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 15374 files and directories currently installed.)
Preparing to unpack .../0-libbsd0_0.9.1-1_amd64.deb ...
Unpacking libbsd0:amd64 (0.9.1-1) ...
Selecting previously unselected package bsdmainutils.
Preparing to unpack .../1-bsdmainutils_11.1.2+b1_amd64.deb ...
Unpacking bsdmainutils (11.1.2+b1) ...
Selecting previously unselected package groff-base.
Preparing to unpack .../2-groff-base_1.22.3-10_amd64.deb ...
Unpacking groff-base (1.22.3-10) ...
Selecting previously unselected package libpipeline1:amd64.
Preparing to unpack .../3-libpipeline1_1.5.0-1_amd64.deb ...
Unpacking libpipeline1:amd64 (1.5.0-1) ...
Selecting previously unselected package man-db.
Preparing to unpack .../4-man-db_2.8.4-2_amd64.deb ...
Unpacking man-db (2.8.4-2) ...
Selecting previously unselected package libpython3.6-minimal:amd64.
Preparing to unpack .../5-libpython3.6-minimal_3.6.6-4_amd64.deb ...
Unpacking libpython3.6-minimal:amd64 (3.6.6-4) ...
Selecting previously unselected package libexpat1:amd64.
Preparing to unpack .../6-libexpat1_2.2.6-1_amd64.deb ...
Unpacking libexpat1:amd64 (2.2.6-1) ...
Selecting previously unselected package python3.6-minimal.
Preparing to unpack .../7-python3.6-minimal_3.6.6-4_amd64.deb ...
Unpacking python3.6-minimal (3.6.6-4) ...
Setting up libpython3.6-minimal:amd64 (3.6.6-4) ...
Setting up libexpat1:amd64 (2.2.6-1) ...
Setting up python3.6-minimal (3.6.6-4) ...
Selecting previously unselected package python3-minimal.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16236 files and directories currently installed.)
Preparing to unpack .../0-python3-minimal_3.6.6-1_amd64.deb ...
Unpacking python3-minimal (3.6.6-1) ...
Selecting previously unselected package mime-support.
Preparing to unpack .../1-mime-support_3.61_all.deb ...
Unpacking mime-support (3.61) ...
Selecting previously unselected package libmpdec2:amd64.
Preparing to unpack .../2-libmpdec2_2.4.2-2_amd64.deb ...
Unpacking libmpdec2:amd64 (2.4.2-2) ...
Selecting previously unselected package libpython3.6-stdlib:amd64.
Preparing to unpack .../3-libpython3.6-stdlib_3.6.6-4_amd64.deb ...
Unpacking libpython3.6-stdlib:amd64 (3.6.6-4) ...
Selecting previously unselected package python3.6.
Preparing to unpack .../4-python3.6_3.6.6-4_amd64.deb ...
Unpacking python3.6 (3.6.6-4) ...
Selecting previously unselected package libpython3-stdlib:amd64.
Preparing to unpack .../5-libpython3-stdlib_3.6.6-1_amd64.deb ...
Unpacking libpython3-stdlib:amd64 (3.6.6-1) ...
Setting up python3-minimal (3.6.6-1) ...
Selecting previously unselected package python3.
(Reading database ... 
(Reading database ... 5%
(Reading database ... 10%
(Reading database ... 15%
(Reading database ... 20%
(Reading database ... 25%
(Reading database ... 30%
(Reading database ... 35%
(Reading database ... 40%
(Reading database ... 45%
(Reading database ... 50%
(Reading database ... 55%
(Reading database ... 60%
(Reading database ... 65%
(Reading database ... 70%
(Reading database ... 75%
(Reading database ... 80%
(Reading database ... 85%
(Reading database ... 90%
(Reading database ... 95%
(Reading database ... 100%
(Reading database ... 16665 files and directories currently installed.)
Preparing to unpack .../00-python3_3.6.6-1_amd64.deb ...
Unpacking python3 (3.6.6-1) ...
Selecting previously unselected package libmagic-mgc.
Preparing to unpack .../01-libmagic-mgc_1%3a5.34-2_amd64.deb ...
Unpacking libmagic-mgc (1:5.34-2) ...
Selecting previously unselected package libmagic1:amd64.
Preparing to unpack .../02-libmagic1_1%3a5.34-2_amd64.deb ...
Unpacking libmagic1:amd64 (1:5.34-2) ...
Selecting previously unselected package file.
Preparing to unpack .../03-file_1%3a5.34-2_amd64.deb ...
Unpacking file (1:5.34-2) ...
Selecting previously unselected package gettext-base.
Preparing to unpack .../04-gettext-base_0.19.8.1-7_amd64.deb ...
Unpacking gettext-base (0.19.8.1-7) ...
Selecting previously unselected package libsigsegv2:amd64.
Preparing to unpack .../05-libsigsegv2_2.12-2_amd64.deb ...
Unpacking libsigsegv2:amd64 (2.12-2) ...
Selecting previously unselected package m4.
Preparing to unpack .../06-m4_1.4.18-1_amd64.deb ...
Unpacking m4 (1.4.18-1) ...
Selecting previously unselected package autoconf.
Preparing to unpack .../07-autoconf_2.69-11_all.deb ...
Unpacking autoconf (2.69-11) ...
Selecting previously unselected package autotools-dev.
Preparing to unpack .../08-autotools-dev_20180224.1_all.deb ...
Unpacking autotools-dev (20180224.1) ...
Selecting previously unselected package automake.
Preparing to unpack .../09-automake_1%3a1.16.1-1.1_all.deb ...
Unpacking automake (1:1.16.1-1.1) ...
Selecting previously unselected package autopoint.
Preparing to unpack .../10-autopoint_0.19.8.1-7_all.deb ...
Unpacking autopoint (0.19.8.1-7) ...
Selecting previously unselected package libtool.
Preparing to unpack .../11-libtool_2.4.6-4_all.deb ...
Unpacking libtool (2.4.6-4) ...
Selecting previously unselected package dh-autoreconf.
Preparing to unpack .../12-dh-autoreconf_19_all.deb ...
Unpacking dh-autoreconf (19) ...
Selecting previously unselected package libarchive-zip-perl.
Preparing to unpack .../13-libarchive-zip-perl_1.64-1_all.deb ...
Unpacking libarchive-zip-perl (1.64-1) ...
Selecting previously unselected package libfile-stripnondeterminism-perl.
Preparing to unpack .../14-libfile-stripnondeterminism-perl_0.042-1_all.deb ...
Unpacking libfile-stripnondeterminism-perl (0.042-1) ...
Selecting previously unselected package libtimedate-perl.
Preparing to unpack .../15-libtimedate-perl_2.3000-2_all.deb ...
Unpacking libtimedate-perl (2.3000-2) ...
Selecting previously unselected package dh-strip-nondeterminism.
Preparing to unpack .../16-dh-strip-nondeterminism_0.042-1_all.deb ...
Unpacking dh-strip-nondeterminism (0.042-1) ...
Selecting previously unselected package dwz.
Preparing to unpack .../17-dwz_0.12-2_amd64.deb ...
Unpacking dwz (0.12-2) ...
Selecting previously unselected package libglib2.0-0:amd64.
Preparing to unpack .../18-libglib2.0-0_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-0:amd64 (2.58.1-2) ...
Selecting previously unselected package libpng16-16:amd64.
Preparing to unpack .../19-libpng16-16_1.6.34-2_amd64.deb ...
Unpacking libpng16-16:amd64 (1.6.34-2) ...
Selecting previously unselected package libfreetype6:amd64.
Preparing to unpack .../20-libfreetype6_2.8.1-2_amd64.deb ...
Unpacking libfreetype6:amd64 (2.8.1-2) ...
Selecting previously unselected package libgraphite2-3:amd64.
Preparing to unpack .../21-libgraphite2-3_1.3.12-1_amd64.deb ...
Unpacking libgraphite2-3:amd64 (1.3.12-1) ...
Selecting previously unselected package libharfbuzz0b:amd64.
Preparing to unpack .../22-libharfbuzz0b_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz0b:amd64 (1.9.0-1) ...
Selecting previously unselected package libicu-le-hb0:amd64.
Preparing to unpack .../23-libicu-le-hb0_1.0.3+git161113-5_amd64.deb ...
Unpacking libicu-le-hb0:amd64 (1.0.3+git161113-5) ...
Selecting previously unselected package libicu60:amd64.
Preparing to unpack .../24-libicu60_60.2-6_amd64.deb ...
Unpacking libicu60:amd64 (60.2-6) ...
Selecting previously unselected package libxml2:amd64.
Preparing to unpack .../25-libxml2_2.9.4+dfsg1-7+b1_amd64.deb ...
Unpacking libxml2:amd64 (2.9.4+dfsg1-7+b1) ...
Selecting previously unselected package libcroco3:amd64.
Preparing to unpack .../26-libcroco3_0.6.12-2_amd64.deb ...
Unpacking libcroco3:amd64 (0.6.12-2) ...
Selecting previously unselected package libncurses6:amd64.
Preparing to unpack .../27-libncurses6_6.1+20180714-1_amd64.deb ...
Unpacking libncurses6:amd64 (6.1+20180714-1) ...
Selecting previously unselected package gettext.
Preparing to unpack .../28-gettext_0.19.8.1-7_amd64.deb ...
Unpacking gettext (0.19.8.1-7) ...
Selecting previously unselected package intltool-debian.
Preparing to unpack .../29-intltool-debian_0.35.0+20060710.4_all.deb ...
Unpacking intltool-debian (0.35.0+20060710.4) ...
Selecting previously unselected package po-debconf.
Preparing to unpack .../30-po-debconf_1.0.20_all.deb ...
Unpacking po-debconf (1.0.20) ...
Selecting previously unselected package debhelper.
Preparing to unpack .../31-debhelper_11.4_all.deb ...
Unpacking debhelper (11.4) ...
Selecting previously unselected package libgirepository-1.0-1:amd64.
Preparing to unpack .../32-libgirepository-1.0-1_1.58.0-1_amd64.deb ...
Unpacking libgirepository-1.0-1:amd64 (1.58.0-1) ...
Selecting previously unselected package gir1.2-glib-2.0:amd64.
Preparing to unpack .../33-gir1.2-glib-2.0_1.58.0-1_amd64.deb ...
Unpacking gir1.2-glib-2.0:amd64 (1.58.0-1) ...
Selecting previously unselected package libharfbuzz-gobject0:amd64.
Preparing to unpack .../34-libharfbuzz-gobject0_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-gobject0:amd64 (1.9.0-1) ...
Selecting previously unselected package gir1.2-harfbuzz-0.0:amd64.
Preparing to unpack .../35-gir1.2-harfbuzz-0.0_1.9.0-1_amd64.deb ...
Unpacking gir1.2-harfbuzz-0.0:amd64 (1.9.0-1) ...
Selecting previously unselected package icu-devtools.
Preparing to unpack .../36-icu-devtools_60.2-6_amd64.deb ...
Unpacking icu-devtools (60.2-6) ...
Selecting previously unselected package libboost1.67-dev:amd64.
Preparing to unpack .../37-libboost1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-dev:amd64.
Preparing to unpack .../38-libboost-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-regex1.67.0:amd64.
Preparing to unpack .../39-libboost-regex1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-regex1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libharfbuzz-icu0:amd64.
Preparing to unpack .../40-libharfbuzz-icu0_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-icu0:amd64 (1.9.0-1) ...
Selecting previously unselected package libglib2.0-data.
Preparing to unpack .../41-libglib2.0-data_2.58.1-2_all.deb ...
Unpacking libglib2.0-data (2.58.1-2) ...
Selecting previously unselected package libglib2.0-bin.
Preparing to unpack .../42-libglib2.0-bin_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-bin (2.58.1-2) ...
Selecting previously unselected package python3-lib2to3.
Preparing to unpack .../43-python3-lib2to3_3.6.6-1_all.deb ...
Unpacking python3-lib2to3 (3.6.6-1) ...
Selecting previously unselected package python3-distutils.
Preparing to unpack .../44-python3-distutils_3.6.6-1_all.deb ...
Unpacking python3-distutils (3.6.6-1) ...
Selecting previously unselected package libglib2.0-dev-bin.
Preparing to unpack .../45-libglib2.0-dev-bin_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-dev-bin (2.58.1-2) ...
Selecting previously unselected package libpcre16-3:amd64.
Preparing to unpack .../46-libpcre16-3_2%3a8.39-11_amd64.deb ...
Unpacking libpcre16-3:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcre32-3:amd64.
Preparing to unpack .../47-libpcre32-3_2%3a8.39-11_amd64.deb ...
Unpacking libpcre32-3:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcrecpp0v5:amd64.
Preparing to unpack .../48-libpcrecpp0v5_2%3a8.39-11_amd64.deb ...
Unpacking libpcrecpp0v5:amd64 (2:8.39-11) ...
Selecting previously unselected package libpcre3-dev:amd64.
Preparing to unpack .../49-libpcre3-dev_2%3a8.39-11_amd64.deb ...
Unpacking libpcre3-dev:amd64 (2:8.39-11) ...
Selecting previously unselected package pkg-config.
Preparing to unpack .../50-pkg-config_0.29-4+b1_amd64.deb ...
Unpacking pkg-config (0.29-4+b1) ...
Selecting previously unselected package zlib1g-dev:amd64.
Preparing to unpack .../51-zlib1g-dev_1%3a1.2.11.dfsg-1_amd64.deb ...
Unpacking zlib1g-dev:amd64 (1:1.2.11.dfsg-1) ...
Selecting previously unselected package libglib2.0-dev:amd64.
Preparing to unpack .../52-libglib2.0-dev_2.58.1-2_amd64.deb ...
Unpacking libglib2.0-dev:amd64 (2.58.1-2) ...
Selecting previously unselected package libgraphite2-dev:amd64.
Preparing to unpack .../53-libgraphite2-dev_1.3.12-1_amd64.deb ...
Unpacking libgraphite2-dev:amd64 (1.3.12-1) ...
Selecting previously unselected package libharfbuzz-dev:amd64.
Preparing to unpack .../54-libharfbuzz-dev_1.9.0-1_amd64.deb ...
Unpacking libharfbuzz-dev:amd64 (1.9.0-1) ...
Selecting previously unselected package libicu-le-hb-dev:amd64.
Preparing to unpack .../55-libicu-le-hb-dev_1.0.3+git161113-5_amd64.deb ...
Unpacking libicu-le-hb-dev:amd64 (1.0.3+git161113-5) ...
Selecting previously unselected package libicu-dev.
Preparing to unpack .../56-libicu-dev_60.2-6_amd64.deb ...
Unpacking libicu-dev (60.2-6) ...
Selecting previously unselected package libboost-regex1.67-dev:amd64.
Preparing to unpack .../57-libboost-regex1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-regex1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-regex-dev:amd64.
Preparing to unpack .../58-libboost-regex-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-regex-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libboost-system1.67.0:amd64.
Preparing to unpack .../59-libboost-system1.67.0_1.67.0-7_amd64.deb ...
Unpacking libboost-system1.67.0:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-system1.67-dev:amd64.
Preparing to unpack .../60-libboost-system1.67-dev_1.67.0-7_amd64.deb ...
Unpacking libboost-system1.67-dev:amd64 (1.67.0-7) ...
Selecting previously unselected package libboost-system-dev:amd64.
Preparing to unpack .../61-libboost-system-dev_1.67.0.1_amd64.deb ...
Unpacking libboost-system-dev:amd64 (1.67.0.1) ...
Selecting previously unselected package libexpat1-dev:amd64.
Preparing to unpack .../62-libexpat1-dev_2.2.6-1_amd64.deb ...
Unpacking libexpat1-dev:amd64 (2.2.6-1) ...
Setting up libarchive-zip-perl (1.64-1) ...
Setting up mime-support (3.61) ...
Setting up libpng16-16:amd64 (1.6.34-2) ...
Setting up libtimedate-perl (2.3000-2) ...
Setting up libsigsegv2:amd64 (2.12-2) ...
Setting up groff-base (1.22.3-10) ...
Setting up libglib2.0-0:amd64 (2.58.1-2) ...
No schema files found: doing nothing.
Setting up gettext-base (0.19.8.1-7) ...
Setting up libpipeline1:amd64 (1.5.0-1) ...
Setting up m4 (1.4.18-1) ...
Setting up libbsd0:amd64 (0.9.1-1) ...
Setting up libgirepository-1.0-1:amd64 (1.58.0-1) ...
Setting up libfreetype6:amd64 (2.8.1-2) ...
Setting up libmagic-mgc (1:5.34-2) ...
Setting up libmagic1:amd64 (1:5.34-2) ...
Setting up libgraphite2-3:amd64 (1.3.12-1) ...
Setting up pkg-config (0.29-4+b1) ...
Setting up gir1.2-glib-2.0:amd64 (1.58.0-1) ...
Setting up libglib2.0-data (2.58.1-2) ...
Processing triggers for libc-bin (2.27-6) ...
Setting up dwz (0.12-2) ...
Setting up autotools-dev (20180224.1) ...
Setting up libboost1.67-dev:amd64 (1.67.0-7) ...
Setting up libexpat1-dev:amd64 (2.2.6-1) ...
Setting up libpcrecpp0v5:amd64 (2:8.39-11) ...
Setting up libpcre32-3:amd64 (2:8.39-11) ...
Setting up libpcre16-3:amd64 (2:8.39-11) ...
Setting up libboost-dev:amd64 (1.67.0.1) ...
Setting up bsdmainutils (11.1.2+b1) ...
update-alternatives: using /usr/bin/bsd-write to provide /usr/bin/write (write) in auto mode
update-alternatives: using /usr/bin/bsd-from to provide /usr/bin/from (from) in auto mode
Setting up libboost-system1.67.0:amd64 (1.67.0-7) ...
Setting up libglib2.0-bin (2.58.1-2) ...
Setting up libgraphite2-dev:amd64 (1.3.12-1) ...
Setting up libncurses6:amd64 (6.1+20180714-1) ...
Setting up autopoint (0.19.8.1-7) ...
Setting up libmpdec2:amd64 (2.4.2-2) ...
Setting up zlib1g-dev:amd64 (1:1.2.11.dfsg-1) ...
Setting up libfile-stripnondeterminism-perl (0.042-1) ...
Setting up libpython3.6-stdlib:amd64 (3.6.6-4) ...
Setting up libpcre3-dev:amd64 (2:8.39-11) ...
Setting up python3.6 (3.6.6-4) ...
Setting up libharfbuzz0b:amd64 (1.9.0-1) ...
Setting up autoconf (2.69-11) ...
Setting up file (1:5.34-2) ...
Setting up automake (1:1.16.1-1.1) ...
update-alternatives: using /usr/bin/automake-1.16 to provide /usr/bin/automake (automake) in auto mode
Setting up libboost-system1.67-dev:amd64 (1.67.0-7) ...
Setting up man-db (2.8.4-2) ...
debconf: unable to initialize frontend: Dialog
debconf: (TERM is not set, so the dialog frontend is not usable.)
debconf: falling back to frontend: Readline
Building database of manual pages ...
Setting up libharfbuzz-gobject0:amd64 (1.9.0-1) ...
Setting up libtool (2.4.6-4) ...
Setting up libpython3-stdlib:amd64 (3.6.6-1) ...
Setting up python3 (3.6.6-1) ...
running python rtupdate hooks for python3.6...
running python post-rtupdate hooks for python3.6...
Setting up libboost-system-dev:amd64 (1.67.0.1) ...
Setting up gir1.2-harfbuzz-0.0:amd64 (1.9.0-1) ...
Setting up python3-lib2to3 (3.6.6-1) ...
Setting up python3-distutils (3.6.6-1) ...
Setting up libglib2.0-dev-bin (2.58.1-2) ...
Setting up libglib2.0-dev:amd64 (2.58.1-2) ...
Setting up dh-autoreconf (19) ...
Setting up libicu-le-hb0:amd64 (1.0.3+git161113-5) ...
Setting up dh-strip-nondeterminism (0.042-1) ...
Setting up libicu60:amd64 (60.2-6) ...
Setting up libharfbuzz-icu0:amd64 (1.9.0-1) ...
Setting up libxml2:amd64 (2.9.4+dfsg1-7+b1) ...
Setting up libcroco3:amd64 (0.6.12-2) ...
Setting up icu-devtools (60.2-6) ...
Setting up libharfbuzz-dev:amd64 (1.9.0-1) ...
Setting up libboost-regex1.67.0:amd64 (1.67.0-7) ...
Setting up libicu-le-hb-dev:amd64 (1.0.3+git161113-5) ...
Setting up gettext (0.19.8.1-7) ...
Setting up libicu-dev (60.2-6) ...
Setting up intltool-debian (0.35.0+20060710.4) ...
Setting up po-debconf (1.0.20) ...
Setting up libboost-regex1.67-dev:amd64 (1.67.0-7) ...
Setting up libboost-regex-dev:amd64 (1.67.0.1) ...
Setting up debhelper (11.4) ...
Processing triggers for libc-bin (2.27-6) ...
Reading package lists...
Need to get 285 kB of source archives.
Get:1 http://deb.debian.org/debian unstable/main libcutl 1.10.0+ds1-2 (dsc) [1927 B]
Get:2 http://deb.debian.org/debian unstable/main libcutl 1.10.0+ds1-2 (tar) [276 kB]
Get:3 http://deb.debian.org/debian unstable/main libcutl 1.10.0+ds1-2 (diff) [7020 B]
dpkg-source: info: extracting libcutl in libcutl-1.10.0+ds1
dpkg-source: info: unpacking libcutl_1.10.0+ds1.orig.tar.xz
dpkg-source: info: unpacking libcutl_1.10.0+ds1-2.debian.tar.xz
dpkg-source: info: applying Hurd_PATH_MAX.patch
Fetched 285 kB in 0s (1962 kB/s)
dpkg-buildpackage: info: source package libcutl
dpkg-buildpackage: info: source version 1.10.0+ds1-2
dpkg-buildpackage: info: source distribution unstable
dpkg-buildpackage: info: source changed by Laszlo Boszormenyi (GCS) <g...@debian.org>
dpkg-buildpackage: info: host architecture amd64
 dpkg-source --before-build libcutl-1.10.0+ds1
 fakeroot debian/rules clean
dh clean --parallel --with autoreconf
   dh_clean
 dpkg-source -b libcutl-1.10.0+ds1
dpkg-source: info: using source format '3.0 (quilt)'
dpkg-source: info: building libcutl using existing ./libcutl_1.10.0+ds1.orig.tar.xz
dpkg-source: info: building libcutl in libcutl_1.10.0+ds1-2.debian.tar.xz
dpkg-source: info: building libcutl in libcutl_1.10.0+ds1-2.dsc
 debian/rules build
dh build --parallel --with autoreconf
   dh_update_autotools_config
   dh_autoreconf
libtoolize: putting auxiliary files in AC_CONFIG_AUX_DIR, 'config'.
libtoolize: copying file 'config/ltmain.sh'
libtoolize: putting macros in AC_CONFIG_MACRO_DIRS, 'm4'.
libtoolize: copying file 'm4/libtool.m4'
libtoolize: copying file 'm4/ltoptions.m4'
libtoolize: copying file 'm4/ltsugar.m4'
libtoolize: copying file 'm4/ltversion.m4'
libtoolize: copying file 'm4/lt~obsolete.m4'
configure.ac:12: installing 'config/compile'
configure.ac:11: installing 'config/missing'
cutl/Makefile.am: installing 'config/depcomp'
   debian/rules override_dh_auto_configure
make[1]: Entering directory '/home/builder/libcutl-1.10.0+ds1'
dh_auto_configure -- --with-external-expat --with-external-boost
	./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking --with-external-expat --with-external-boost
configure: WARNING: unrecognized options: --disable-maintainer-mode
checking for a BSD-compatible install... /usr/bin/install -c
checking whether build environment is sane... yes
checking for a thread-safe mkdir -p... /usr/bin/mkdir -p
checking for gawk... no
checking for mawk... mawk
checking whether make sets $(MAKE)... yes
checking whether make supports nested variables... yes
checking whether UID '1000' is supported by ustar format... yes
checking whether GID '1000' is supported by ustar format... yes
checking how to create a ustar tar archive... gnutar
checking whether make supports the include directive... yes (GNU style)
checking for gcc... gcc
checking whether the C compiler works... yes
checking for C compiler default output file name... a.out
checking for suffix of executables... 
checking whether we are cross compiling... no
checking for suffix of object files... o
checking whether we are using the GNU C compiler... yes
checking whether gcc accepts -g... yes
checking for gcc option to accept ISO C89... none needed
checking whether gcc understands -c and -o together... yes
checking dependency style of gcc... none
checking for ar... ar
checking the archiver (ar) interface... ar
checking build system type... x86_64-pc-linux-gnu
checking host system type... x86_64-pc-linux-gnu
checking how to print strings... printf
checking for a sed that does not truncate output... /usr/bin/sed
checking for grep that handles long lines and -e... /usr/bin/grep
checking for egrep... /usr/bin/grep -E
checking for fgrep... /usr/bin/grep -F
checking for ld used by gcc... /usr/bin/ld
checking if the linker (/usr/bin/ld) is GNU ld... yes
checking for BSD- or MS-compatible name lister (nm)... /usr/bin/nm -B
checking the name lister (/usr/bin/nm -B) interface... BSD nm
checking whether ln -s works... yes
checking the maximum length of command line arguments... 1572864
checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format... func_convert_file_noop
checking how to convert x86_64-pc-linux-gnu file names to toolchain format... func_convert_file_noop
checking for /usr/bin/ld option to reload object files... -r
checking for objdump... objdump
checking how to recognize dependent libraries... pass_all
checking for dlltool... no
checking how to associate runtime and link libraries... printf %s\n
checking for archiver @FILE support... @
checking for strip... strip
checking for ranlib... ranlib
checking command to parse /usr/bin/nm -B output from gcc object... ok
checking for sysroot... no
checking for a working dd... /usr/bin/dd
checking how to truncate binary pipes... /usr/bin/dd bs=4096 count=1
checking for mt... no
checking if : is a manifest tool... no
checking how to run the C preprocessor... gcc -E
checking for ANSI C header files... yes
checking for sys/types.h... yes
checking for sys/stat.h... yes
checking for stdlib.h... yes
checking for string.h... yes
checking for memory.h... yes
checking for strings.h... yes
checking for inttypes.h... yes
checking for stdint.h... yes
checking for unistd.h... yes
checking for dlfcn.h... yes
checking for objdir... .libs
checking if gcc supports -fno-rtti -fno-exceptions... no
checking for gcc option to produce PIC... -fPIC -DPIC
checking if gcc PIC flag -fPIC -DPIC works... yes
checking if gcc static flag -static works... yes
checking if gcc supports -c -o file.o... yes
checking if gcc supports -c -o file.o... (cached) yes
checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking whether -lc should be explicitly linked in... no
checking dynamic linker characteristics... GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
checking whether stripping libraries is possible... yes
checking if libtool supports shared libraries... yes
checking whether to build shared libraries... yes
checking whether to build static libraries... yes
checking for g++... g++
checking whether we are using the GNU C++ compiler... yes
checking whether g++ accepts -g... yes
checking dependency style of g++... none
checking how to run the C++ preprocessor... g++ -E
checking for ld used by g++... /usr/bin/ld -m elf_x86_64
checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld... yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking for g++ option to produce PIC... -fPIC -DPIC
checking if g++ PIC flag -fPIC -DPIC works... yes
checking if g++ static flag -static works... yes
checking if g++ supports -c -o file.o... yes
checking if g++ supports -c -o file.o... (cached) yes
checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries... yes
checking dynamic linker characteristics... (cached) GNU/Linux ld.so
checking how to hardcode library paths into programs... immediate
configure: creating ./config.lt
config.lt: creating libtool
checking if we should use external boost... yes
checking for boost base headers... yes
checking for boost regex library... no
checking for boost system library... yes
configure: error: boost regex is not found; consider using CPPFLAGS/LDFLAGS or --with-boost=DIR to specify its location
	tail -v -n \+0 config.log
==> config.log <==
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by libcutl configure 1.10.0, which was
generated by GNU Autoconf 2.69.  Invocation command line was

  $ ./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=${prefix}/include --mandir=${prefix}/share/man --infodir=${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=${prefix}/lib/x86_64-linux-gnu --libexecdir=${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking --with-external-expat --with-external-boost

## --------- ##
## Platform. ##
## --------- ##

hostname = 5aafdcc811f7
uname -m = x86_64
uname -r = 4.18.9-arch1-1-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Wed Sep 19 21:19:17 UTC 2018

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = x86_64
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/local/games
PATH: /usr/games


## ----------- ##
## Core tests. ##
## ----------- ##

configure:2382: checking for a BSD-compatible install
configure:2450: result: /usr/bin/install -c
configure:2461: checking whether build environment is sane
configure:2516: result: yes
configure:2667: checking for a thread-safe mkdir -p
configure:2706: result: /usr/bin/mkdir -p
configure:2713: checking for gawk
configure:2743: result: no
configure:2713: checking for mawk
configure:2729: found /usr/bin/mawk
configure:2740: result: mawk
configure:2751: checking whether make sets $(MAKE)
configure:2773: result: yes
configure:2802: checking whether make supports nested variables
configure:2819: result: yes
configure:2908: checking whether UID '1000' is supported by ustar format
configure:2911: result: yes
configure:2918: checking whether GID '1000' is supported by ustar format
configure:2921: result: yes
configure:2929: checking how to create a ustar tar archive
configure:2940: tar --version
tar (GNU tar) 1.30
Copyright (C) 2017 Free Software Foundation, Inc.
License GPLv3+: GNU GPL version 3 or later <https://gnu.org/licenses/gpl.html>.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

Written by John Gilmore and Jay Fenlason.
configure:2943: $? = 0
configure:2983: tardir=conftest.dir && eval tar --format=ustar -chf - "$tardir" >conftest.tar
configure:2986: $? = 0
configure:2990: tar -xf - <conftest.tar
configure:2993: $? = 0
configure:2995: cat conftest.dir/file
GrepMe
configure:2998: $? = 0
configure:3011: result: gnutar
configure:3065: checking whether make supports the include directive
configure:3080: make -f confmf.GNU && cat confinc.out
make[2]: Entering directory '/home/builder/libcutl-1.10.0+ds1'
make[2]: Leaving directory '/home/builder/libcutl-1.10.0+ds1'
this is the am__doit target
configure:3083: $? = 0
configure:3102: result: yes (GNU style)
configure:3172: checking for gcc
configure:3188: found /usr/bin/gcc
configure:3199: result: gcc
configure:3428: checking for C compiler version
configure:3437: gcc --version >&5
gcc (Debian 8.2.0-7) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:3448: $? = 0
configure:3437: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 8.2.0-7' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 8.2.0 (Debian 8.2.0-7) 
configure:3448: $? = 0
configure:3437: gcc -V >&5
gcc: error: unrecognized command line option '-V'
gcc: fatal error: no input files
compilation terminated.
configure:3448: $? = 1
configure:3437: gcc -qversion >&5
gcc: error: unrecognized command line option '-qversion'; did you mean '--version'?
gcc: fatal error: no input files
compilation terminated.
configure:3448: $? = 1
configure:3468: checking whether the C compiler works
configure:3490: gcc -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c  >&5
configure:3494: $? = 0
configure:3542: result: yes
configure:3545: checking for C compiler default output file name
configure:3547: result: a.out
configure:3553: checking for suffix of executables
configure:3560: gcc -o conftest -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c  >&5
configure:3564: $? = 0
configure:3586: result: 
configure:3608: checking whether we are cross compiling
configure:3616: gcc -o conftest -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c  >&5
configure:3620: $? = 0
configure:3627: ./conftest
configure:3631: $? = 0
configure:3646: result: no
configure:3651: checking for suffix of object files
configure:3673: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3677: $? = 0
configure:3698: result: o
configure:3702: checking whether we are using the GNU C compiler
configure:3721: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3721: $? = 0
configure:3730: result: yes
configure:3739: checking whether gcc accepts -g
configure:3759: gcc -c -g -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3759: $? = 0
configure:3800: result: yes
configure:3817: checking for gcc option to accept ISO C89
configure:3880: gcc  -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:3880: $? = 0
configure:3893: result: none needed
configure:3918: checking whether gcc understands -c and -o together
configure:3940: gcc -c conftest.c -o conftest2.o
configure:3943: $? = 0
configure:3940: gcc -c conftest.c -o conftest2.o
configure:3943: $? = 0
configure:3955: result: yes
configure:3974: checking dependency style of gcc
configure:4085: result: none
configure:4150: checking for ar
configure:4166: found /usr/bin/ar
configure:4177: result: ar
configure:4203: checking the archiver (ar) interface
configure:4219: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:4219: $? = 0
configure:4221: ar cru libconftest.a conftest.o >&5
ar: `u' modifier ignored since `D' is the default (see `U')
configure:4224: $? = 0
configure:4252: result: ar
configure:4302: checking build system type
configure:4316: result: x86_64-pc-linux-gnu
configure:4336: checking host system type
configure:4349: result: x86_64-pc-linux-gnu
configure:4390: checking how to print strings
configure:4417: result: printf
configure:4438: checking for a sed that does not truncate output
configure:4502: result: /usr/bin/sed
configure:4520: checking for grep that handles long lines and -e
configure:4578: result: /usr/bin/grep
configure:4583: checking for egrep
configure:4645: result: /usr/bin/grep -E
configure:4650: checking for fgrep
configure:4712: result: /usr/bin/grep -F
configure:4747: checking for ld used by gcc
configure:4814: result: /usr/bin/ld
configure:4821: checking if the linker (/usr/bin/ld) is GNU ld
configure:4836: result: yes
configure:4848: checking for BSD- or MS-compatible name lister (nm)
configure:4902: result: /usr/bin/nm -B
configure:5032: checking the name lister (/usr/bin/nm -B) interface
configure:5039: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:5042: /usr/bin/nm -B "conftest.o"
configure:5045: output
0000000000000000 B some_variable
configure:5052: result: BSD nm
configure:5055: checking whether ln -s works
configure:5059: result: yes
configure:5067: checking the maximum length of command line arguments
configure:5198: result: 1572864
configure:5246: checking how to convert x86_64-pc-linux-gnu file names to x86_64-pc-linux-gnu format
configure:5286: result: func_convert_file_noop
configure:5293: checking how to convert x86_64-pc-linux-gnu file names to toolchain format
configure:5313: result: func_convert_file_noop
configure:5320: checking for /usr/bin/ld option to reload object files
configure:5327: result: -r
configure:5401: checking for objdump
configure:5417: found /usr/bin/objdump
configure:5428: result: objdump
configure:5457: checking how to recognize dependent libraries
configure:5657: result: pass_all
configure:5742: checking for dlltool
configure:5772: result: no
configure:5799: checking how to associate runtime and link libraries
configure:5826: result: printf %s\n
configure:5950: checking for archiver @FILE support
configure:5967: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:5967: $? = 0
configure:5970: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
configure:5973: $? = 0
configure:5978: ar cru libconftest.a @conftest.lst >&5
ar: `u' modifier ignored since `D' is the default (see `U')
ar: conftest.o: No such file or directory
configure:5981: $? = 1
configure:5993: result: @
configure:6051: checking for strip
configure:6067: found /usr/bin/strip
configure:6078: result: strip
configure:6150: checking for ranlib
configure:6166: found /usr/bin/ranlib
configure:6177: result: ranlib
configure:6279: checking command to parse /usr/bin/nm -B output from gcc object
configure:6432: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:6435: $? = 0
configure:6439: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' | sed '/ __gnu_lto/d' \> conftest.nm
configure:6442: $? = 0
configure:6508: gcc -o conftest -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c conftstm.o >&5
configure:6511: $? = 0
configure:6549: result: ok
configure:6596: checking for sysroot
configure:6626: result: no
configure:6633: checking for a working dd
configure:6671: result: /usr/bin/dd
configure:6675: checking how to truncate binary pipes
configure:6690: result: /usr/bin/dd bs=4096 count=1
configure:6826: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:6829: $? = 0
configure:7019: checking for mt
configure:7049: result: no
configure:7069: checking if : is a manifest tool
configure:7075: : '-?'
configure:7083: result: no
configure:7760: checking how to run the C preprocessor
configure:7791: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
configure:7791: $? = 0
configure:7805: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:7805: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "libcutl"
| #define PACKAGE_TARNAME "libcutl"
| #define PACKAGE_VERSION "1.10.0"
| #define PACKAGE_STRING "libcutl 1.10.0"
| #define PACKAGE_BUGREPORT "libcutl-us...@codesynthesis.com"
| #define PACKAGE_URL ""
| #define PACKAGE "libcutl"
| #define VERSION "1.10.0"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:7830: result: gcc -E
configure:7850: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
configure:7850: $? = 0
configure:7864: gcc -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c
conftest.c:11:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:7864: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "libcutl"
| #define PACKAGE_TARNAME "libcutl"
| #define PACKAGE_VERSION "1.10.0"
| #define PACKAGE_STRING "libcutl 1.10.0"
| #define PACKAGE_BUGREPORT "libcutl-us...@codesynthesis.com"
| #define PACKAGE_URL ""
| #define PACKAGE "libcutl"
| #define VERSION "1.10.0"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:7893: checking for ANSI C header files
configure:7913: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:7913: $? = 0
configure:7986: gcc -o conftest -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro conftest.c  >&5
configure:7986: $? = 0
configure:7986: ./conftest
configure:7986: $? = 0
configure:7997: result: yes
configure:8010: checking for sys/types.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for sys/stat.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for stdlib.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for string.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for memory.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for strings.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for inttypes.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for stdint.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8010: checking for unistd.h
configure:8010: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8010: $? = 0
configure:8010: result: yes
configure:8024: checking for dlfcn.h
configure:8024: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:8024: $? = 0
configure:8024: result: yes
configure:8578: checking for objdir
configure:8593: result: .libs
configure:8857: checking if gcc supports -fno-rtti -fno-exceptions
configure:8875: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option '-fno-rtti' is valid for C++/ObjC++ but not for C
configure:8879: $? = 0
configure:8892: result: no
configure:9250: checking for gcc option to produce PIC
configure:9257: result: -fPIC -DPIC
configure:9265: checking if gcc PIC flag -fPIC -DPIC works
configure:9283: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DPIC -DPIC conftest.c >&5
configure:9287: $? = 0
configure:9300: result: yes
configure:9329: checking if gcc static flag -static works
configure:9357: result: yes
configure:9372: checking if gcc supports -c -o file.o
configure:9393: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o out/conftest2.o conftest.c >&5
configure:9397: $? = 0
configure:9419: result: yes
configure:9427: checking if gcc supports -c -o file.o
configure:9474: result: yes
configure:9507: checking whether the gcc linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:10770: result: yes
configure:10807: checking whether -lc should be explicitly linked in
configure:10815: gcc -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.c >&5
configure:10818: $? = 0
configure:10833: gcc -shared  -fPIC -DPIC conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| /usr/bin/grep  -lc  \>/dev/null 2\>\&1
configure:10836: $? = 0
configure:10850: result: no
configure:11010: checking dynamic linker characteristics
configure:11591: gcc -o conftest -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -Wl,-z,relro -Wl,-rpath -Wl,/foo conftest.c  >&5
configure:11591: $? = 0
configure:11840: result: GNU/Linux ld.so
configure:11962: checking how to hardcode library paths into programs
configure:11987: result: immediate
configure:12535: checking whether stripping libraries is possible
configure:12540: result: yes
configure:12575: checking if libtool supports shared libraries
configure:12577: result: yes
configure:12580: checking whether to build shared libraries
configure:12605: result: yes
configure:12608: checking whether to build static libraries
configure:12612: result: yes
configure:12712: checking for g++
configure:12728: found /usr/bin/g++
configure:12739: result: g++
configure:12766: checking for C++ compiler version
configure:12775: g++ --version >&5
g++ (Debian 8.2.0-7) 8.2.0
Copyright (C) 2018 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

configure:12786: $? = 0
configure:12775: g++ -v >&5
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/lib/gcc/x86_64-linux-gnu/8/lto-wrapper
OFFLOAD_TARGET_NAMES=nvptx-none
OFFLOAD_TARGET_DEFAULT=1
Target: x86_64-linux-gnu
Configured with: ../src/configure -v --with-pkgversion='Debian 8.2.0-7' --with-bugurl=file:///usr/share/doc/gcc-8/README.Bugs --enable-languages=c,ada,c++,go,brig,d,fortran,objc,obj-c++ --prefix=/usr --with-gcc-major-version-only --program-suffix=-8 --program-prefix=x86_64-linux-gnu- --enable-shared --enable-linker-build-id --libexecdir=/usr/lib --without-included-gettext --enable-threads=posix --libdir=/usr/lib --enable-nls --with-sysroot=/ --enable-clocale=gnu --enable-libstdcxx-debug --enable-libstdcxx-time=yes --with-default-libstdcxx-abi=new --enable-gnu-unique-object --disable-vtable-verify --enable-libmpx --enable-plugin --enable-default-pie --with-system-zlib --with-target-system-zlib --enable-objc-gc=auto --enable-multiarch --disable-werror --with-arch-32=i686 --with-abi=m64 --with-multilib-list=m32,m64,mx32 --enable-multilib --with-tune=generic --enable-offload-targets=nvptx-none --without-cuda-driver --enable-checking=release --build=x86_64-linux-gnu --host=x86_64-linux-gnu --target=x86_64-linux-gnu
Thread model: posix
gcc version 8.2.0 (Debian 8.2.0-7) 
configure:12786: $? = 0
configure:12775: g++ -V >&5
g++: error: unrecognized command line option '-V'
g++: fatal error: no input files
compilation terminated.
configure:12786: $? = 1
configure:12775: g++ -qversion >&5
g++: error: unrecognized command line option '-qversion'; did you mean '--version'?
g++: fatal error: no input files
compilation terminated.
configure:12786: $? = 1
configure:12790: checking whether we are using the GNU C++ compiler
configure:12809: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:12809: $? = 0
configure:12818: result: yes
configure:12827: checking whether g++ accepts -g
configure:12847: g++ -c -g -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:12847: $? = 0
configure:12888: result: yes
configure:12913: checking dependency style of g++
configure:13024: result: none
configure:13057: checking how to run the C++ preprocessor
configure:13084: g++ -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp
configure:13084: $? = 0
configure:13098: g++ -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp
conftest.cpp:23:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:13098: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "libcutl"
| #define PACKAGE_TARNAME "libcutl"
| #define PACKAGE_VERSION "1.10.0"
| #define PACKAGE_STRING "libcutl 1.10.0"
| #define PACKAGE_BUGREPORT "libcutl-us...@codesynthesis.com"
| #define PACKAGE_URL ""
| #define PACKAGE "libcutl"
| #define VERSION "1.10.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:13123: result: g++ -E
configure:13143: g++ -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp
configure:13143: $? = 0
configure:13157: g++ -E -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp
conftest.cpp:23:10: fatal error: ac_nonexistent.h: No such file or directory
 #include <ac_nonexistent.h>
          ^~~~~~~~~~~~~~~~~~
compilation terminated.
configure:13157: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "libcutl"
| #define PACKAGE_TARNAME "libcutl"
| #define PACKAGE_VERSION "1.10.0"
| #define PACKAGE_STRING "libcutl 1.10.0"
| #define PACKAGE_BUGREPORT "libcutl-us...@codesynthesis.com"
| #define PACKAGE_URL ""
| #define PACKAGE "libcutl"
| #define VERSION "1.10.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:13319: checking for ld used by g++
configure:13386: result: /usr/bin/ld -m elf_x86_64
configure:13393: checking if the linker (/usr/bin/ld -m elf_x86_64) is GNU ld
configure:13408: result: yes
configure:13463: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:14536: result: yes
configure:14572: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:14575: $? = 0
configure:15056: checking for g++ option to produce PIC
configure:15063: result: -fPIC -DPIC
configure:15071: checking if g++ PIC flag -fPIC -DPIC works
configure:15089: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -fPIC -DPIC -DPIC conftest.cpp >&5
configure:15093: $? = 0
configure:15106: result: yes
configure:15129: checking if g++ static flag -static works
configure:15157: result: yes
configure:15169: checking if g++ supports -c -o file.o
configure:15190: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 -o out/conftest2.o conftest.cpp >&5
configure:15194: $? = 0
configure:15216: result: yes
configure:15221: checking if g++ supports -c -o file.o
configure:15268: result: yes
configure:15298: checking whether the g++ linker (/usr/bin/ld -m elf_x86_64) supports shared libraries
configure:15341: result: yes
configure:15482: checking dynamic linker characteristics
configure:16239: result: GNU/Linux ld.so
configure:16304: checking how to hardcode library paths into programs
configure:16329: result: immediate
configure:16379: creating ./config.lt

## ------------------ ##
## Running config.lt. ##
## ------------------ ##
config.lt:684: creating libtool
configure:17937: checking if we should use external boost
configure:17950: result: yes
configure:17959: checking for boost base headers
configure:18022: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:18022: $? = 0
configure:18029: ./libtool --tag=CXX --mode=link g++ -no-install -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z,relro -o conftest conftest.o  >&5
libtool: link: g++ -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z -Wl,relro -o conftest conftest.o 
configure:18033: $? = 0
configure:18076: result: yes
configure:18089: checking for boost regex library
configure:18124: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp >&5
conftest.cpp:25:10: fatal error: boost/tr1/regex.hpp: No such file or directory
 #include <boost/tr1/regex.hpp>
          ^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:18124: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "libcutl"
| #define PACKAGE_TARNAME "libcutl"
| #define PACKAGE_VERSION "1.10.0"
| #define PACKAGE_STRING "libcutl 1.10.0"
| #define PACKAGE_BUGREPORT "libcutl-us...@codesynthesis.com"
| #define PACKAGE_URL ""
| #define PACKAGE "libcutl"
| #define VERSION "1.10.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| 
| #include <boost/tr1/regex.hpp>
| 
| int
| main ()
| {
|   std::tr1::regex r ("te.t", std::tr1::regex_constants::ECMAScript);
|   return std::tr1::regex_match ("test", r) ? 0 : 1;
| }
| 
configure:18201: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp >&5
conftest.cpp:25:10: fatal error: boost/tr1/regex.hpp: No such file or directory
 #include <boost/tr1/regex.hpp>
          ^~~~~~~~~~~~~~~~~~~~~
compilation terminated.
configure:18201: $? = 1
configure: failed program was:
| /* confdefs.h */
| #define PACKAGE_NAME "libcutl"
| #define PACKAGE_TARNAME "libcutl"
| #define PACKAGE_VERSION "1.10.0"
| #define PACKAGE_STRING "libcutl 1.10.0"
| #define PACKAGE_BUGREPORT "libcutl-us...@codesynthesis.com"
| #define PACKAGE_URL ""
| #define PACKAGE "libcutl"
| #define VERSION "1.10.0"
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define LT_OBJDIR ".libs/"
| /* end confdefs.h.  */
| 
| 
| #include <boost/tr1/regex.hpp>
| 
| int
| main ()
| {
|   std::tr1::regex r ("te.t", std::tr1::regex_constants::ECMAScript);
|   return std::tr1::regex_match ("test", r) ? 0 : 1;
| }
| 
configure:18255: result: no
configure:18265: checking for boost system library
configure:18296: g++ -c -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wdate-time -D_FORTIFY_SOURCE=2 conftest.cpp >&5
configure:18296: $? = 0
configure:18303: ./libtool --tag=CXX --mode=link g++ -no-install -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z,relro -o conftest conftest.o -lboost_system  >&5
libtool: link: g++ -g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security -Wl,-z -Wl,relro -o conftest conftest.o  -lboost_system
configure:18307: $? = 0
configure:18419: result: yes
configure:18431: error: boost regex is not found; consider using CPPFLAGS/LDFLAGS or --with-boost=DIR to specify its location

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=x86_64-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CCC_set=
ac_cv_env_CCC_value=
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=set
ac_cv_env_CFLAGS_value='-g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security'
ac_cv_env_CPPFLAGS_set=set
ac_cv_env_CPPFLAGS_value='-Wdate-time -D_FORTIFY_SOURCE=2'
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=set
ac_cv_env_CXXFLAGS_value='-g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security'
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_LDFLAGS_set=set
ac_cv_env_LDFLAGS_value=-Wl,-z,relro
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_LT_SYS_LIBRARY_PATH_set=
ac_cv_env_LT_SYS_LIBRARY_PATH_value=
ac_cv_env_build_alias_set=set
ac_cv_env_build_alias_value=x86_64-linux-gnu
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=x86_64-pc-linux-gnu
ac_cv_objext=o
ac_cv_path_EGREP='/usr/bin/grep -E'
ac_cv_path_FGREP='/usr/bin/grep -F'
ac_cv_path_GREP=/usr/bin/grep
ac_cv_path_SED=/usr/bin/sed
ac_cv_path_install='/usr/bin/install -c'
ac_cv_path_lt_DD=/usr/bin/dd
ac_cv_path_mkdir=/usr/bin/mkdir
ac_cv_prog_AWK=mawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_OBJDUMP=objdump
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_cxx_g=yes
ac_cv_prog_make_make_set=yes
am_cv_CC_dependencies_compiler_type=none
am_cv_CXX_dependencies_compiler_type=none
am_cv_ar_interface=ar
am_cv_make_support_nested_variables=yes
am_cv_prog_cc_c_o=yes
am_cv_prog_tar_ustar=gnutar
lt_cv_ar_at_file=@
lt_cv_archive_cmds_need_lc=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_nm_interface='BSD nm'
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/bin/ld
lt_cv_path_LDCXX='/usr/bin/ld -m elf_x86_64'
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_mainfest_tool=no
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_pic='-fPIC -DPIC'
lt_cv_prog_compiler_pic_CXX='-fPIC -DPIC'
lt_cv_prog_compiler_pic_works=yes
lt_cv_prog_compiler_pic_works_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_compiler_static_works=yes
lt_cv_prog_compiler_static_works_CXX=yes
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sharedlib_from_linklib_cmd='printf %s\n'
lt_cv_shlibpath_overrides_runpath=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[	 ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[	 ][	 ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'' | sed '\''/ __gnu_lto/d'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='sed -n -e '\''s/^: \(.*\) .*$/  {"\1", (void *) 0},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(lib.*\)$/  {"\1", (void *) \&\1},/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/  {"lib\1", (void *) \&\1},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^T .* \(.*\)$/extern int \1();/p'\'' -e '\''s/^[ABCDGIRSTW][ABCDGIRSTW]* .* \(.*\)$/extern char \1;/p'\'''
lt_cv_sys_global_symbol_to_import=
lt_cv_sys_max_cmd_len=1572864
lt_cv_to_host_file_cmd=func_convert_file_noop
lt_cv_to_tool_file_cmd=func_convert_file_noop
lt_cv_truncate_bin='/usr/bin/dd bs=4096 count=1'

## ----------------- ##
## Output variables. ##
## ----------------- ##

ACLOCAL='${SHELL} /home/builder/libcutl-1.10.0+ds1/config/missing aclocal-1.16'
AMDEPBACKSLASH=''
AMDEP_FALSE=''
AMDEP_TRUE='#'
AMTAR='$${TAR-tar}'
AM_BACKSLASH='\'
AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)'
AM_DEFAULT_VERBOSITY='1'
AM_V='$(V)'
AR='ar'
AS='as'
AUTOCONF='${SHELL} /home/builder/libcutl-1.10.0+ds1/config/missing autoconf'
AUTOHEADER='${SHELL} /home/builder/libcutl-1.10.0+ds1/config/missing autoheader'
AUTOMAKE='${SHELL} /home/builder/libcutl-1.10.0+ds1/config/missing automake-1.16'
AWK='mawk'
CC='gcc'
CCDEPMODE='depmode=none'
CFLAGS='-g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security'
CPP='gcc -E'
CPPFLAGS='-Wdate-time -D_FORTIFY_SOURCE=2'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=none'
CXXFLAGS='-g -O2 -fdebug-prefix-map=/home/builder/libcutl-1.10.0+ds1=. -fstack-protector-strong -Wformat -Werror=format-security'
CYGPATH_W='echo'
DEFS=''
DEPDIR='.deps'
DLLTOOL='false'
DSYMUTIL=''
DUMPBIN=''
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/usr/bin/grep -E'
EXEEXT=''
FGREP='/usr/bin/grep -F'
GREP='/usr/bin/grep'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='$(install_sh) -c -s'
LD='/usr/bin/ld -m elf_x86_64'
LDFLAGS='-Wl,-z,relro'
LIBCUTL_EXTERNAL_BOOST_FALSE=''
LIBCUTL_EXTERNAL_BOOST_TRUE=''
LIBCUTL_EXTERNAL_EXPAT_FALSE=''
LIBCUTL_EXTERNAL_EXPAT_TRUE=''
LIBOBJS=''
LIBS='-lboost_system '
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIPO=''
LN_S='ln -s'
LTLIBOBJS=''
LT_SYS_LIBRARY_PATH=''
MAKEINFO='${SHELL} /home/builder/libcutl-1.10.0+ds1/config/missing makeinfo'
MANIFEST_TOOL=':'
MKDIR_P='/usr/bin/mkdir -p'
NM='/usr/bin/nm -B'
NMEDIT=''
OBJDUMP='objdump'
OBJEXT='o'
OTOOL64=''
OTOOL=''
PACKAGE='libcutl'
PACKAGE_BUGREPORT='libcutl-us...@codesynthesis.com'
PACKAGE_NAME='libcutl'
PACKAGE_STRING='libcutl 1.10.0'
PACKAGE_TARNAME='libcutl'
PACKAGE_URL=''
PACKAGE_VERSION='1.10.0'
PATH_SEPARATOR=':'
PTHREAD_CXX=''
PTHREAD_CXXFLAGS=''
PTHREAD_LIBS=''
RANLIB='ranlib'
SED='/usr/bin/sed'
SET_MAKE=''
SHELL='/bin/bash'
STRIP='strip'
VERSION='1.10.0'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_DUMPBIN=''
acx_pthread_config=''
am__EXEEXT_FALSE=''
am__EXEEXT_TRUE=''
am__fastdepCC_FALSE=''
am__fastdepCC_TRUE='#'
am__fastdepCXX_FALSE=''
am__fastdepCXX_TRUE='#'
am__include='include'
am__isrc=''
am__leading_dot='.'
am__nodep=''
am__quote=''
am__tar='tar --format=ustar -chf - "$$tardir"'
am__untar='tar -xf -'
bindir='${exec_prefix}/bin'
build='x86_64-pc-linux-gnu'
build_alias='x86_64-linux-gnu'
build_cpu='x86_64'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='NONE'
host='x86_64-pc-linux-gnu'
host_alias=''
host_cpu='x86_64'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${prefix}/share/info'
install_sh='${SHELL} /home/builder/libcutl-1.10.0+ds1/config/install-sh'
libdir='${prefix}/lib/x86_64-linux-gnu'
libexecdir='${prefix}/lib/x86_64-linux-gnu'
localedir='${datarootdir}/locale'
localstatedir='/var'
mandir='${prefix}/share/man'
mkdir_p='$(MKDIR_P)'
oldincludedir='/usr/include'
pdfdir='${docdir}'
pkgconfigdir=''
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
runstatedir='${localstatedir}/run'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

/* confdefs.h */
#define PACKAGE_NAME "libcutl"
#define PACKAGE_TARNAME "libcutl"
#define PACKAGE_VERSION "1.10.0"
#define PACKAGE_STRING "libcutl 1.10.0"
#define PACKAGE_BUGREPORT "libcutl-us...@codesynthesis.com"
#define PACKAGE_URL ""
#define PACKAGE "libcutl"
#define VERSION "1.10.0"
#define STDC_HEADERS 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_MEMORY_H 1
#define HAVE_STRINGS_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_STDINT_H 1
#define HAVE_UNISTD_H 1
#define HAVE_DLFCN_H 1
#define LT_OBJDIR ".libs/"

configure: exit 1
dh_auto_configure: ./configure --build=x86_64-linux-gnu --prefix=/usr --includedir=\${prefix}/include --mandir=\${prefix}/share/man --infodir=\${prefix}/share/info --sysconfdir=/etc --localstatedir=/var --disable-silent-rules --libdir=\${prefix}/lib/x86_64-linux-gnu --libexecdir=\${prefix}/lib/x86_64-linux-gnu --disable-maintainer-mode --disable-dependency-tracking --with-external-expat --with-external-boost returned exit code 1
make[1]: *** [debian/rules:8: override_dh_auto_configure] Error 2
make[1]: Leaving directory '/home/builder/libcutl-1.10.0+ds1'
make: *** [debian/rules:14: build] Error 2
dpkg-buildpackage: error: debian/rules build subprocess returned exit status 2

Attachment: signature.asc
Description: OpenPGP digital signature

Reply via email to