소스 검색

ship the tarball with a minimal cflags, since gcc's vary so much

svn:r2770
Roger Dingledine 20 년 전
부모
커밋
e5229a214c
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. 2 1
      configure.in

+ 2 - 1
configure.in

@@ -232,9 +232,10 @@ AC_SUBST(LOCALSTATEDIR)
 
 # Set CFLAGS _after_ all the above checks, since our warnings are stricter
 # than autoconf's macros like.
-CFLAGS="$CFLAGS -Wall -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -g -O2"
+CFLAGS="$CFLAGS -Wall -g -O2"
 # Add some more warnings which we use in the cvs version but not in the
 # released versions.
+#CFLAGS="$CFLAGS -W -Wno-unused-parameter -Wfloat-equal -Wundef -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes"
 #CFLAGS="$CFLAGS -Wwrite-strings -Wredundant-decls"
 
 # Add these in when you feel like fun.