From 16ffa10831b0fdafcd96190ba7a6d7e3a7ece26f Mon Sep 17 00:00:00 2001 From: Thomas Schmitt Date: Thu, 14 Jan 2010 14:01:13 +0000 Subject: [PATCH] Carified in libburner.c that apps must use 64 bit off_t. --- test/libburner.c | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/test/libburner.c b/test/libburner.c index 1a3380a..bec6d34 100644 --- a/test/libburner.c +++ b/test/libburner.c @@ -38,6 +38,16 @@ burn_finish() */ +/* + Applications must use 64 bit off_t. E.g. by defining + #define _LARGEFILE_SOURCE + #define _FILE_OFFSET_BITS 64 + or take special precautions to interface with the library by 64 bit integers + where this .h files prescribe off_t. + This program gets fed with appropriate settings externally by libburn's + autotools generated build system. +*/ + /** See this for the decisive API specs . libburn.h is The Original */ /* For using the installed header file : #include */