<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html lang="en">
<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>
GitLab
</title>


<style>img {
max-width: 100%; height: auto;
}
</style>
</head>
<body>
<div class="content">
<div>
<p dir="auto">On a release build that shouldn't be a problem as the <code>supported_exts.h</code> file should be present. However that affects building from git. Maybe instead of enforcing that in configure.ac which will affect released builds we can require mandatory/recommended software for building from git at bootstrap time as:</p>
<pre class="code highlight js-syntax-highlight plaintext" lang="plaintext" v-pre="true"><code><span id="LC1" class="line" lang="plaintext">diff --git a/bootstrap.conf b/bootstrap.conf</span>
<span id="LC2" class="line" lang="plaintext">index 3c9618b21..a382391dd 100644</span>
<span id="LC3" class="line" lang="plaintext">--- a/bootstrap.conf</span>
<span id="LC4" class="line" lang="plaintext">+++ b/bootstrap.conf</span>
<span id="LC5" class="line" lang="plaintext">@@ -82,3 +82,25 @@ bootstrap_post_import_hook ()</span>
<span id="LC6" class="line" lang="plaintext">   # Automake requires that ChangeLog exist.</span>
<span id="LC7" class="line" lang="plaintext">   touch ChangeLog || return 1</span>
<span id="LC8" class="line" lang="plaintext"> }</span>
<span id="LC9" class="line" lang="plaintext">+</span>
<span id="LC10" class="line" lang="plaintext">+bootstrap_epilogue ()</span>
<span id="LC11" class="line" lang="plaintext">+{</span>
<span id="LC12" class="line" lang="plaintext">+       GPERF=$(which gperf)</span>
<span id="LC13" class="line" lang="plaintext">+       AUTOGEN=$(which autogen)</span>
<span id="LC14" class="line" lang="plaintext">+       SOFTHSM2=$(which softhsm2-util)</span>
<span id="LC15" class="line" lang="plaintext">+</span>
<span id="LC16" class="line" lang="plaintext">+       if test -z "${GPERF}";then</span>
<span id="LC17" class="line" lang="plaintext">+               echo "error: 'gperf' is not installed; see README.md for required software"</span>
<span id="LC18" class="line" lang="plaintext">+               return 1</span>
<span id="LC19" class="line" lang="plaintext">+       fi</span>
<span id="LC20" class="line" lang="plaintext">+</span>
<span id="LC21" class="line" lang="plaintext">+       if test -z "${AUTOGEN}";then</span>
<span id="LC22" class="line" lang="plaintext">+               echo "error: 'autogen' is not installed; see README.md for required software"</span>
<span id="LC23" class="line" lang="plaintext">+               return 1</span>
<span id="LC24" class="line" lang="plaintext">+       fi</span>
<span id="LC25" class="line" lang="plaintext">+</span>
<span id="LC26" class="line" lang="plaintext">+       if test -z "${SOFTHSM2}";then</span>
<span id="LC27" class="line" lang="plaintext">+               echo "error: 'softhsm' (2.0.0 or later) is not installed; see README.md for required software"</span>
<span id="LC28" class="line" lang="plaintext">+               return 1</span>
<span id="LC29" class="line" lang="plaintext">+       fi</span>
<span id="LC30" class="line" lang="plaintext">+}</span></code></pre>
<p dir="auto"><a href="https://gitlab.com/rockdaboot" data-user="267665" data-reference-type="user" data-container="body" data-placement="bottom" class="gfm gfm-project_member has-tooltip" title="Tim Rühsen">@rockdaboot</a> what do you think? Is that the "right way" to use bootstrap?</p>
</div>


</div>
<div class="footer" style="margin-top: 10px;">
<p style="font-size: small; color: #777777;">

<br>
Reply to this email directly or <a href="https://gitlab.com/gnutls/gnutls/issues/582#note_106298246">view it on GitLab</a>.
<br>
You're receiving this email because of your account on gitlab.com.
If you'd like to receive fewer emails, you can
<a href="https://gitlab.com/sent_notifications/49fc950d0b2dbab9a0ff39c723667371/unsubscribe">unsubscribe</a>
from this thread or
adjust your notification settings.
<script type="application/ld+json">{"@context":"http://schema.org","@type":"EmailMessage","action":{"@type":"ViewAction","name":"View Issue","url":"https://gitlab.com/gnutls/gnutls/issues/582#note_106298246"}}</script>
</p>
</div>
</body>
</html>