summaryrefslogtreecommitdiff
path: root/configure.in
diff options
context:
space:
mode:
authorConrad Parker <conrad@xiph.org>2007-06-02 03:38:34 +0000
committerConrad Parker <conrad@xiph.org>2007-06-02 03:38:34 +0000
commit2e7fc1d82500d8bcccc34cf149cadcbaca26d0e9 (patch)
tree505391c957a45e2c00b30d375f6d7bacb2d71aa8 /configure.in
parent78bc557c6d2c10f0e8052e84f1cea19b2ea9dc3f (diff)
downloadogg-2e7fc1d82500d8bcccc34cf149cadcbaca26d0e9.tar.gz
Add default values to AC_CHECK_SIZEOF macros, as required for using libogg on
FPGA projects. This was reported by André 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 git-svn-id: http://svn.xiph.org/trunk/ogg@13008 0101bb08-14d6-0310-b084-bc0e0c8e3800
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.in b/configure.in
index adb2c65..33f19b9 100644
--- a/configure.in
+++ b/configure.in
@@ -193,10 +193,10 @@ has_int64_t=no
)])
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