[xiph-commits] r13008 - trunk/ogg

conrad at svn.xiph.org conrad at svn.xiph.org
Fri Jun 1 20:38:34 PDT 2007


Author: conrad
Date: 2007-06-01 20:38:34 -0700 (Fri, 01 Jun 2007)
New Revision: 13008

Modified:
   trunk/ogg/configure.in
Log:
Add default values to AC_CHECK_SIZEOF macros, as required for using libogg on
FPGA projects. This was reported by Andr?\195?\169 Costa on theora-dev:
http://lists.xiph.org/pipermail/theora-dev/2007-June/003267.html
and earlier documented by Luis Azuara and Pattara Kiatisevi:
http://oggonachip.sourceforge.net/oggonachip-1.0/report.pdf


Modified: trunk/ogg/configure.in
===================================================================
--- trunk/ogg/configure.in	2007-06-01 22:42:40 UTC (rev 13007)
+++ trunk/ogg/configure.in	2007-06-02 03:38:34 UTC (rev 13008)
@@ -193,10 +193,10 @@
 )])
 AC_MSG_RESULT($has_int64_t)
 
-AC_CHECK_SIZEOF(short)
-AC_CHECK_SIZEOF(int)
-AC_CHECK_SIZEOF(long)
-AC_CHECK_SIZEOF(long long)
+AC_CHECK_SIZEOF(short,2)
+AC_CHECK_SIZEOF(int,4)
+AC_CHECK_SIZEOF(long,4)
+AC_CHECK_SIZEOF(long long,8)
 
 
 if test x$has_int16_t = "xyes" ; then



More information about the commits mailing list