From b8539fb6febdffc58ae91e478b09313ab5ec0d09 Mon Sep 17 00:00:00 2001
From: Alberto Bertogli <albertito@blitiri.com.ar>
Date: Fri, 17 Apr 2009 23:13:34 -0300
Subject: [PATCH 30/38] Fix compilation instructions in the programmer's guide

Signed-off-by: Alberto Bertogli <albertito@blitiri.com.ar>
---
 doc/guide.rst |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)

diff --git a/doc/guide.rst b/doc/guide.rst
index 16feac9..e65fd1e 100644
--- a/doc/guide.rst
+++ b/doc/guide.rst
@@ -263,12 +263,10 @@ The Single Unix Specification standard proposes a simple and practical way to
 get the flags you need to pass your C compiler to tell you want to compile
 your application with LFS: use a program called "getconf" which should be
 called like "getconf LFS_CFLAGS", and it outputs the appropiate parameters.
-Sadly, not all platforms implement it, so it's also wise to pass
-"-D_FILE_OFFSET_BITS=64" just in case.
 
 In the end, the command line would be something like::
 
-  gcc `getconf LFS_CFLAGS` -D_FILE_OFFSET_BITS=64 app.c -ljio -o app
+  gcc `getconf LFS_CFLAGS` app.c -ljio -o app
 
 If you want more detailed information or examples, you can check out how the
 library and sample applications get built.
-- 
1.6.2.2.646.gb214


