search for: xx_ansiflags

Displaying 4 results from an estimated 4 matches for "xx_ansiflags".

2004 Dec 20
0
[LLVMdev] Compiling FreeType 2.1.9 with LLVM 1.4
...3.4-llvm 20030924 (experimental) Note that this is "3.4-llvm" > 3. tar -jxvf freetype-2.1.9.tar.bz2 > 4. cd freetype-2.1.9 > 5. edit builds/unix/configure to match GCC's build flags: > > if test "x$CC" = xgcc; then > XX_CFLAGS="-Wall" > XX_ANSIFLAGS="-pedantic -ansi" > else > case "$host" in > *-dec-osf*) > CFLAGS= > XX_CFLAGS="-std1 -g3" > XX_ANSIFLAGS= > ;; > *) > XX_CFLAGS= > XX_ANSIFLAGS= > ;; > esac > fi > > becomes: > >...
2004 Dec 20
4
[LLVMdev] Compiling FreeType 2.1.9 with LLVM 1.4
...--disable-shared --enable-languages=c,c++ Thread model: single gcc version 3.4-llvm 20030924 (experimental) 3. tar -jxvf freetype-2.1.9.tar.bz2 4. cd freetype-2.1.9 5. edit builds/unix/configure to match GCC's build flags: if test "x$CC" = xgcc; then XX_CFLAGS="-Wall" XX_ANSIFLAGS="-pedantic -ansi" else case "$host" in *-dec-osf*) CFLAGS= XX_CFLAGS="-std1 -g3" XX_ANSIFLAGS= ;; *) XX_CFLAGS= XX_ANSIFLAGS= ;; esac fi becomes: XX_CFLAGS="-Wall" XX_ANSIFLAGS="-pedantic -ansi" 5. ./config...
2004 Dec 20
3
[LLVMdev] Compiling FreeType 2.1.9 with LLVM 1.4
...that this is "3.4-llvm" > > > 3. tar -jxvf freetype-2.1.9.tar.bz2 > > 4. cd freetype-2.1.9 > > 5. edit builds/unix/configure to match GCC's build flags: > > > > if test "x$CC" = xgcc; then > > XX_CFLAGS="-Wall" > > XX_ANSIFLAGS="-pedantic -ansi" > > else > > case "$host" in > > *-dec-osf*) > > CFLAGS= > > XX_CFLAGS="-std1 -g3" > > XX_ANSIFLAGS= > > ;; > > *) > > XX_CFLAGS= > > XX_ANSIFLAGS= > >...
2004 Dec 20
0
[LLVMdev] Compiling FreeType 2.1.9 with LLVM 1.4
...++ >Thread model: single >gcc version 3.4-llvm 20030924 (experimental) > >3. tar -jxvf freetype-2.1.9.tar.bz2 >4. cd freetype-2.1.9 >5. edit builds/unix/configure to match GCC's build flags: > >if test "x$CC" = xgcc; then > XX_CFLAGS="-Wall" > XX_ANSIFLAGS="-pedantic -ansi" >else > case "$host" in > *-dec-osf*) > CFLAGS= > XX_CFLAGS="-std1 -g3" > XX_ANSIFLAGS= > ;; > *) > XX_CFLAGS= > XX_ANSIFLAGS= > ;; > esac >fi > >becomes: > > XX_CFLAGS=&quot...