[Plib-cvs] plib configure.in,1.39,1.40
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-08-30 22:58:02
|
Update of /cvsroot/plib/plib In directory usw-pr-cvs1:/tmp/cvs-serv32758 Modified Files: configure.in Log Message: Use '-w1' instead of '-Wall' with Intel C++ Compiler Index: configure.in =================================================================== RCS file: /cvsroot/plib/plib/configure.in,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- configure.in 30 Aug 2002 19:32:48 -0000 1.39 +++ configure.in 30 Aug 2002 22:57:57 -0000 1.40 @@ -338,6 +338,11 @@ WFLAG="-fullwarn"; fi ;; +*) + if test "x$CXX" = "xicpc" || test "x$CXX" = "xicc"; then + WFLAG="-w1" + fi + ;; esac CFLAGS="$CFLAGS $WFLAG" |