<div dir="ltr">I did a git pull this morning and now configure is working. Many thanks to eveyone.<br></div><div class="gmail_extra"><br><br><div class="gmail_quote">2013/5/31 Arran Cudbard-Bell <span dir="ltr"><<a href="mailto:a.cudbardb@freeradius.org" target="_blank">a.cudbardb@freeradius.org</a>></span><br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="im"><br>
On 31 May 2013, at 10:05, Arran Cudbard-Bell <<a href="mailto:a.cudbardb@freeradius.org">a.cudbardb@freeradius.org</a>> wrote:<br>
<br>
><br>
> On 31 May 2013, at 09:03, Alan DeKok <<a href="mailto:aland@deployingradius.com">aland@deployingradius.com</a>> wrote:<br>
><br>
>> Phil Mayers wrote:<br>
>>> Looks like it's trying to use a clang argument with gcc. Probably<br>
>>> related to commit 4cbe9552c<br>
>><br>
>> Yeah.  Clang shows up as "GCC" on configure's tests.  Arran didn't<br>
>> check to see if that really was clang.<br>
><br>
> Because you shouldn't need to, it was intentional. With -Werror GCC should warn (and therefore fail) if the argument isn't supported.<br>
<br>
</div>Ok pushed a better fix.<br>
<br>
The issue is -Q has a different meaning in GCC.<br>
<br>
       -Q  Makes the compiler print out each function name as it is compiled, and print some            statistics about each pass when it finishes.<br>
<br>
Note that Q does not take additional parameters, yet GCC does not complain (in some versions) when we pass:<br>
<br>
        -Qunused-arguments<br>
<br>
The fix is:<br>
        -Werror -Qunused-arguments -foobar<br>
<br>
If -Qunused-arguments has the desired effect, -foobar won't generate a warning.<br>
<div class="HOEnZb"><div class="h5"><br>
Arran Cudbard-Bell <<a href="mailto:a.cudbardb@freeradius.org">a.cudbardb@freeradius.org</a>><br>
FreeRADIUS Development Team<br>
<br>
-<br>
List info/subscribe/unsubscribe? See <a href="http://www.freeradius.org/list/users.html" target="_blank">http://www.freeradius.org/list/users.html</a><br>
</div></div></blockquote></div><br></div>