diff options
author | Conrad Parker <conrad@xiph.org> | 2007-06-02 03:38:34 +0000 |
---|---|---|
committer | Conrad Parker <conrad@xiph.org> | 2007-06-02 03:38:34 +0000 |
commit | 162575f4b3e334ab70b586c4fdcb3b28ca8e79fe (patch) | |
tree | 505391c957a45e2c00b30d375f6d7bacb2d71aa8 | |
parent | 440e37e72223ca32d5ac50d81aa0075825901e51 (diff) | |
download | ogg-git-162575f4b3e334ab70b586c4fdcb3b28ca8e79fe.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
svn path=/trunk/ogg/; revision=13008
-rw-r--r-- | configure.in | 8 |
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 |