Displaying 4 results from an estimated 4 matches for "size64".
Did you mean:
size4
2000 Aug 24
4
added check/define for int64_t
Sparc Solaris lacks an int64_t data type. I added a macro to
detect/correct this problem.
Jon Shiring
Btw, in my quick tests, Vorbis successfully decodes ogg files on sparc
solaris.
The following should be added to configure.in after the calls to set
SIZE64
----------------------
dnl this is a test to see if int64_t is defined
dnl this is because AC_CHECK_TYPE breaks on "long long"
AC_MSG_CHECKING(for int64_t)
AC_CACHE_VAL(has_int64_t,
[AC_TRY_RUN([
#include <sys/types.h>
int64_t foo;
int main() {return 0;}
],
has_int64_t=yes,
has_i...
2012 May 01
8
VGABIOS patches
Couple of patches to fix an overflow, optimize a bit and support bigger
resolutions using Windows 8.
2017 May 29
0
[PATCH] Add CMake build script
...<stdint.h>")
+ else()
+ check_include_file(sys/types.h INCLUDE_SYS_TYPES_H)
+ if(HAVE_SYS_TYPES_H)
+ set(INCLUDE_STDINT "#include <sys/types.h>")
+ endif()
+ endif()
+endif()
+set(SIZE16 int16_t)
+set(USIZE16 uint16_t)
+set(SIZE32 int32_t)
+set(USIZE32 uint32_t)
+set(SIZE64 int64_t)
+configure_file(include/speex/speex_config_types.h.in include/speex/speex_config_types.h @ONLY)
+
+test_vararrays(VAR_ARRAYS)
+if(NOT VAR_ARRAYS)
+ check_include_file(alloca.h HAVE_ALLOCA_H)
+ if(WIN32)
+ set(USE_ALLOCA 1)
+ else()
+ check_symbol_exists(alloca "stdlib.h;alloca.h&quo...
2006 May 10
1
Floating Point Exception
I have a Fedora Core server running:
Fedora Core release 4 (Stentz)
kernel version: 2.6.15-1.1833_FC4smp
( I have also tried kernel version: 2.6.16-1.2108_FC4smp)
I compiled the ocfs2 and ocfs2-tools using the following steps:
# MODULES:
tar zxvpf ocfs2-1.2.1.tar.gz
cd ocfs2-1.2.1
./configure
make
make install
# TOOLS:
tar zxf ocfs2-tools-1.2.1.tar.gz
cd ocfs2-tools-1.2.1
./configure