-$Id: HACKING,v 1.5 2002/09/30 11:05:32 sam Exp $
+$Id: HACKING,v 1.6 2002/10/07 21:58:40 massiot Exp $
Hacking vlc
===========
as a recent Linux distribution), run bootstrap, and then copy the whole
tree to your retarded OS.
+There is a possibility that, at some point, automake might segfault. The
+reason is unsufficient stack size, and can be easily fixed with the
+`ulimit` command (or an equivalent) available in most shells. For instance
+on bash 2.0, the following command solves the automake crash on Mac OS X :
+ulimit -s 20000
+
The bootstrap sequence
----------------------
* http.c: HTTP access plug-in
*****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN
- * $Id: http.c,v 1.4 2002/09/30 11:05:34 sam Exp $
+ * $Id: http.c,v 1.5 2002/10/07 21:58:40 massiot Exp $
*
* Authors: Christophe Massiot <massiot@via.ecp.fr>
*
{
snprintf( psz_buffer, sizeof(psz_buffer),
"%s"
- "Range: bytes=%d%d-\r\n"
+ "Range: bytes=%lld-\r\n"
HTTP_USERAGENT HTTP_END,
- p_access_data->psz_buffer,
- (u32)(i_tell>>32), (u32)i_tell );
+ p_access_data->psz_buffer, i_tell );
}
else
{