diff options
author | Fred Drake <fdrake@acm.org> | 1999-05-26 13:03:34 (GMT) |
---|---|---|
committer | Fred Drake <fdrake@acm.org> | 1999-05-26 13:03:34 (GMT) |
commit | 82f355a36ac00fce317115f99adfd6f18ca3b0f2 (patch) | |
tree | d6f8bc2f0792654f6cc63539ce12b37c49c3f213 /Doc | |
parent | a20fdcdd14a6e2d66855ff6db525d4b042c5cb32 (diff) | |
download | cpython-82f355a36ac00fce317115f99adfd6f18ca3b0f2.zip cpython-82f355a36ac00fce317115f99adfd6f18ca3b0f2.tar.gz cpython-82f355a36ac00fce317115f99adfd6f18ca3b0f2.tar.bz2 |
Change the example of configuring for large file support under Solaris
to use `getconf LFS_CFLAGS`. Steve Clift (the author of the section
and large file support) agrees that this is the right thing to do.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/lib/libposix.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libposix.tex b/Doc/lib/libposix.tex index 1e7016d..0c0339f 100644 --- a/Doc/lib/libposix.tex +++ b/Doc/lib/libposix.tex @@ -55,7 +55,7 @@ this mode. For example, it is enabled by default with recent versions of Irix, but with Solaris 2.6 and 2.7 you need to do something like: \begin{verbatim} -CFLAGS="-D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64" OPT="-g -O2 $CFLAGS" \ +CFLAGS="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS" \ configure \end{verbatim} % $ <-- bow to font-lock |