<br><br><div class="gmail_quote">On Sun, Feb 5, 2012 at 1:30 AM,  <span dir="ltr">&lt;<a href="mailto:flac-dev-request@xiph.org">flac-dev-request@xiph.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Send flac-dev mailing list submissions to<br>
        <a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
<br>
To subscribe or unsubscribe via the World Wide Web, visit<br>
        <a href="http://lists.xiph.org/mailman/listinfo/flac-dev" target="_blank">http://lists.xiph.org/mailman/listinfo/flac-dev</a><br>
or, via email, send a message with subject or body &#39;help&#39; to<br>
        <a href="mailto:flac-dev-request@xiph.org">flac-dev-request@xiph.org</a><br>
<br>
You can reach the person managing the list at<br>
        <a href="mailto:flac-dev-owner@xiph.org">flac-dev-owner@xiph.org</a><br>
<br>
When replying, please edit your Subject line so it is more specific<br>
than &quot;Re: Contents of flac-dev digest...&quot;<br>
<br>
<br>
Today&#39;s Topics:<br>
<br>
   1. Re: Moving CPP hackery (JonY)<br>
   2. Re: Moving CPP hackery (Erik de Castro Lopo)<br>
   3. Re: Meet the new maintainer (Erik de Castro Lopo)<br>
   4. Re: Moving CPP hackery (JonY)<br>
   5. Re: Moving CPP hackery (Erik de Castro Lopo)<br>
<br>
<br>
----------------------------------------------------------------------<br>
<br>
Message: 1<br>
Date: Sat, 04 Feb 2012 17:32:23 +0800<br>
From: JonY &lt;<a href="mailto:jon_y@users.sourceforge.net">jon_y@users.sourceforge.net</a>&gt;<br>
Subject: Re: [flac-dev] Moving CPP hackery<br>
To: <a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
Message-ID: &lt;<a href="mailto:4F2CFB27.6050508@users.sourceforge.net">4F2CFB27.6050508@users.sourceforge.net</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
On 2/4/2012 13:20, Erik de Castro Lopo wrote:<br>
&gt; Hi all, especially David Yeo and JonY,<br>
&gt;<br>
&gt; I&#39;ve started moving compiler specific CPP hacker into a separate file<br>
&gt; at include/share/compat.h.<br>
&gt;<br>
&gt; Eventually I hope to be able to move all of the require CPP hackery<br>
&gt; for $random_compiler into this file and have any C file which needs<br>
&gt; any compiler specific tweak to include this new compatibilty header.<br>
&gt;<br>
&gt; My belief is that one this CPP hackery is all in one place, it will<br>
&gt; be far easier to modify and keep correct.<br>
&gt;<br>
&gt; So, I would be very greatful if David Yeo and JonY could test current<br>
&gt; git HEAD and provide a patch if anything breaks. I will hold off<br>
&gt; on any further hacking for a couple of days to give you guys time to<br>
&gt; test this.<br>
&gt;<br>
<br>
Hi,<br>
<br>
Looks like there are some missed defines in the test_libFLAC++. Attached<br>
patch fixes that.<br>
<br>
Also, wsock32 usage is deprecated, on Win7, wsock32 forwards everything<br>
to ws2_32, suggest changing to -lwsock32 to -lws2_32 in <a href="http://configure.ac" target="_blank">configure.ac</a>.<br>
Additionally, using -lwsock32 on Cygwin is wrong. Fix in config.txt.<br>
<br>
I also suggest changing all the switch-case statements in <a href="http://configure.ac" target="_blank">configure.ac</a><br>
to AS_CASE.<br>
-------------- next part --------------<br>
An embedded and charset-unspecified text was scrubbed...<br>
Name: cpp_hack.txt<br>
Url: <a href="http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/1d18e0d5/attachment-0002.txt" target="_blank">http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/1d18e0d5/attachment-0002.txt</a><br>

-------------- next part --------------<br>
An embedded and charset-unspecified text was scrubbed...<br>
Name: config.txt<br>
Url: <a href="http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/1d18e0d5/attachment-0003.txt" target="_blank">http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/1d18e0d5/attachment-0003.txt</a><br>

-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: signature.asc<br>
Type: application/pgp-signature<br>
Size: 196 bytes<br>
Desc: OpenPGP digital signature<br>
Url : <a href="http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/1d18e0d5/attachment-0001.pgp" target="_blank">http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/1d18e0d5/attachment-0001.pgp</a><br>

<br>
------------------------------<br>
<br>
Message: 2<br>
Date: Sat, 4 Feb 2012 20:45:25 +1100<br>
From: Erik de Castro Lopo &lt;<a href="mailto:mle%2Bla@mega-nerd.com">mle+la@mega-nerd.com</a>&gt;<br>
Subject: Re: [flac-dev] Moving CPP hackery<br>
To: <a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
Message-ID: &lt;<a href="mailto:20120204204525.dfcfd39640845ac082e3e9c1@mega-nerd.com">20120204204525.dfcfd39640845ac082e3e9c1@mega-nerd.com</a>&gt;<br>
Content-Type: text/plain; charset=US-ASCII<br>
<br>
JonY wrote:<br>
<br>
&gt; Looks like there are some missed defines in the test_libFLAC++. Attached<br>
&gt; patch fixes that.<br>
<br>
Good one. Thanks.<br>
<br>
&gt; Also, wsock32 usage is deprecated, on Win7, wsock32 forwards everything<br>
&gt; to ws2_32, suggest changing to -lwsock32 to -lws2_32 in <a href="http://configure.ac" target="_blank">configure.ac</a>.<br>
&gt; Additionally, using -lwsock32 on Cygwin is wrong. Fix in config.txt.<br>
<br>
For that I think I&#39;d prefer to purge all use of ntohl. Will make that<br>
a high priority.<br>
<br>
Erik<br>
--<br>
----------------------------------------------------------------------<br>
Erik de Castro Lopo<br>
<a href="http://www.mega-nerd.com/" target="_blank">http://www.mega-nerd.com/</a><br>
<br>
<br>
------------------------------<br>
<br>
Message: 3<br>
Date: Sat, 4 Feb 2012 21:49:26 +1100<br>
From: Erik de Castro Lopo &lt;<a href="mailto:mle%2Bla@mega-nerd.com">mle+la@mega-nerd.com</a>&gt;<br>
Subject: Re: [flac-dev] Meet the new maintainer<br>
To: <a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
Message-ID: &lt;<a href="mailto:20120204214926.4a1fe7168b0e9b1b1b9e531b@mega-nerd.com">20120204214926.4a1fe7168b0e9b1b1b9e531b@mega-nerd.com</a>&gt;<br>
Content-Type: text/plain; charset=US-ASCII<br>
<br>
Ralph Giles wrote:<br>
<br>
&gt; Er, which results are available at <a href="https://mf4.xiph.org/jenkins/job/flac/" target="_blank">https://mf4.xiph.org/jenkins/job/flac/</a><br>
&gt;<br>
&gt; Currently the build is failing on &#39;make distcheck&#39;<br>
<br>
Ralf,<br>
<br>
What platform does this build on? Is it more than one?<br>
<br>
Erik<br>
--<br>
----------------------------------------------------------------------<br>
Erik de Castro Lopo<br>
<a href="http://www.mega-nerd.com/" target="_blank">http://www.mega-nerd.com/</a><br>
<br>
<br>
------------------------------<br>
<br>
Message: 4<br>
Date: Sat, 04 Feb 2012 20:09:20 +0800<br>
From: JonY &lt;<a href="mailto:jon_y@users.sourceforge.net">jon_y@users.sourceforge.net</a>&gt;<br>
Subject: Re: [flac-dev] Moving CPP hackery<br>
To: <a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
Message-ID: &lt;<a href="mailto:4F2D1FF0.2080701@users.sourceforge.net">4F2D1FF0.2080701@users.sourceforge.net</a>&gt;<br>
Content-Type: text/plain; charset=&quot;iso-8859-1&quot;<br>
<br>
On 2/4/2012 17:45, Erik de Castro Lopo wrote:<br>
&gt; JonY wrote:<br>
&gt;<br>
&gt;&gt; Looks like there are some missed defines in the test_libFLAC++. Attached<br>
&gt;&gt; patch fixes that.<br>
&gt;<br>
&gt; Good one. Thanks.<br>
&gt;<br>
&gt;&gt; Also, wsock32 usage is deprecated, on Win7, wsock32 forwards everything<br>
&gt;&gt; to ws2_32, suggest changing to -lwsock32 to -lws2_32 in <a href="http://configure.ac" target="_blank">configure.ac</a>.<br>
&gt;&gt; Additionally, using -lwsock32 on Cygwin is wrong. Fix in config.txt.<br>
&gt;<br>
&gt; For that I think I&#39;d prefer to purge all use of ntohl. Will make that<br>
&gt; a high priority.<br>
&gt;<br>
&gt; Erik<br>
<br>
Does AC_C_BIGENDIAN work well? I assume if a system is not big endian,<br>
its small endian. Are mid endian systems still around?<br>
<br>
-------------- next part --------------<br>
A non-text attachment was scrubbed...<br>
Name: signature.asc<br>
Type: application/pgp-signature<br>
Size: 196 bytes<br>
Desc: OpenPGP digital signature<br>
Url : <a href="http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/e9eb8f80/attachment-0001.pgp" target="_blank">http://lists.xiph.org/pipermail/flac-dev/attachments/20120204/e9eb8f80/attachment-0001.pgp</a><br>

<br>
------------------------------<br>
<br>
Message: 5<br>
Date: Sun, 5 Feb 2012 06:34:16 +1100<br>
From: Erik de Castro Lopo &lt;<a href="mailto:mle%2Bla@mega-nerd.com">mle+la@mega-nerd.com</a>&gt;<br>
Subject: Re: [flac-dev] Moving CPP hackery<br>
To: <a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
Message-ID: &lt;<a href="mailto:20120205063416.77db80443871208b73809a59@mega-nerd.com">20120205063416.77db80443871208b73809a59@mega-nerd.com</a>&gt;<br>
Content-Type: text/plain; charset=US-ASCII<br>
<br>
JonY wrote:<br>
<br>
&gt; On 2/4/2012 17:45, Erik de Castro Lopo wrote:<br>
&gt; &gt; JonY wrote:<br>
&gt; &gt;<br>
&gt; &gt;&gt; Looks like there are some missed defines in the test_libFLAC++. Attached<br>
&gt; &gt;&gt; patch fixes that.<br>
&gt; &gt;<br>
&gt; &gt; Good one. Thanks.<br>
&gt; &gt;<br>
&gt; &gt;&gt; Also, wsock32 usage is deprecated, on Win7, wsock32 forwards everything<br>
&gt; &gt;&gt; to ws2_32, suggest changing to -lwsock32 to -lws2_32 in <a href="http://configure.ac" target="_blank">configure.ac</a>.<br>
&gt; &gt;&gt; Additionally, using -lwsock32 on Cygwin is wrong. Fix in config.txt.<br>
&gt; &gt;<br>
&gt; &gt; For that I think I&#39;d prefer to purge all use of ntohl. Will make that<br>
&gt; &gt; a high priority.<br>
<br>
Just so you know, I have a patch to remove ntohl() in my queue.<br>
<br>
&gt; Does AC_C_BIGENDIAN work well?<br>
<br>
Its ok, but I&#39;ll probably replace it with an m4 macro from libsndfile<br>
which is quite a bit better.<br>
<br>
&gt; I assume if a system is not big endian, its small endian.<br>
<br>
Usually called little endian.<br>
<br>
&gt; Are mid endian systems still around?<br>
<br>
I&#39;ve not heard of one any time in the last 10 years.<br>
<br>
Erik<br>
--<br>
----------------------------------------------------------------------<br>
Erik de Castro Lopo<br>
<a href="http://www.mega-nerd.com/" target="_blank">http://www.mega-nerd.com/</a><br>
<br>
<br>
------------------------------<br>
<br>
_______________________________________________<br>
flac-dev mailing list<br>
<a href="mailto:flac-dev@xiph.org">flac-dev@xiph.org</a><br>
<a href="http://lists.xiph.org/mailman/listinfo/flac-dev" target="_blank">http://lists.xiph.org/mailman/listinfo/flac-dev</a><br>
<br>
<br>
End of flac-dev Digest, Vol 87, Issue 10<br>
****************************************<br>
</blockquote></div><br><br clear="all"><div><br></div>-- <br>Thanks &amp; Regards<br>Tarun Chauhan<br> +91 - 9266858589<br><br><div>   </div><br>