<div dir="ltr">Thanks for the tip Peter. When I look back at Andreas Schultz post I see he had specified it as you put it, i.e. without a semicolon. I mistakenly read it as having a semicolon.<div><br></div><div>Best,</div>
<div>Adam</div></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Sun, Feb 2, 2014 at 5:26 PM, Per Hedeland <span dir="ltr"><<a href="mailto:per@hedeland.org" target="_blank">per@hedeland.org</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im">Adam Bloomston <<a href="mailto:adam@glitterfram.es">adam@glitterfram.es</a>> wrote:<br>
><br>
>Note that installation with environment variable set prior to calling<br>
>configure does not work (took me a while to figure this out since I'm not<br>
>that familiar with configure/make):<br>
><br>
>---------------------------<br>
><br>
>$ CFLAGS="-DOPENSSL_NO_EC=1"; ./configure && make && sudo make install<br>
<br>
</div>That commandline does not set CFLAGS as an environment variable (unless<br>
you have done 'export CFLAGS' earlier in the same shell), only as a<br>
shell variable - not visible to 'configure'. You probably want to drop the<br>
semicolon:<br>
<div class="im"><br>
$ CFLAGS="-DOPENSSL_NO_EC=1" ./configure && make && sudo make install<br>
<br>
</div>- which sets CFLAGS as an environment variable for the following command<br>
(i.e. configure) only. Whether configure actually pays attention to it<br>
is another thing (I believe it does), but at least it has the<br>
possibility.<br>
<span class="HOEnZb"><font color="#888888"><br>
--Per Hedeland<br>
</font></span></blockquote></div><br></div>