From f521ae1df2bc0e470efeee6069ac7b23b76c1359 Mon Sep 17 00:00:00 2001 From: Fred Drake Date: Thu, 10 Jan 2002 22:37:18 +0000 Subject: [PATCH] Adjust the instructions for building large file support so that it works more cleanly (I think this supports more Linux systems; not sure). Barry Warsaw & Martin von Loewis actually agree on this! This closes SF patch #502023. --- Doc/lib/libposix.tex | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/Doc/lib/libposix.tex b/Doc/lib/libposix.tex index 9bbc3366653b..201a53ba1ac1 100644 --- a/Doc/lib/libposix.tex +++ b/Doc/lib/libposix.tex @@ -55,16 +55,14 @@ 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="`getconf LFS_CFLAGS`" OPT="-g -O2 $CFLAGS" \ - ./configure -\end{verbatim} % $ <-- bow to font-lock +CC="cc `getconf LFS_CFLAGS`" ./configure +\end{verbatim} On large-file-capable Linux systems, this might work: \begin{verbatim} -CFLAGS='-D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' OPT="-g -O2 $CFLAGS" \ - ./configure -\end{verbatim} % $ <-- bow to font-lock +CC='gcc -D_LARGEFILE64_SOURCE -D_FILE_OFFSET_BITS=64' ./configure +\end{verbatim} \subsection{Module Contents \label{posix-contents}} -- 2.47.3