You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@subversion.apache.org by st...@apache.org on 2010/08/02 16:41:55 UTC

svn commit: r981528 - /subversion/trunk/tools/dev/unix-build/Makefile.svn

Author: stsp
Date: Mon Aug  2 14:41:55 2010
New Revision: 981528

URL: http://svn.apache.org/viewvc?rev=981528&view=rev
Log:
* tools/dev/unix-build/Makefile.svn: OpenBSD recently enabled -Wsystem-headers
   in gcc by default, which causes annoying warnings from OpenBSD's system
   headers during Subversion's build. So use -Wno-system-headers here. I have
   not done this in Subversion's own configure.ac because I am not sure
   whether all compilers support the -Wno-system-headers option.

Modified:
    subversion/trunk/tools/dev/unix-build/Makefile.svn

Modified: subversion/trunk/tools/dev/unix-build/Makefile.svn
URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dev/unix-build/Makefile.svn?rev=981528&r1=981527&r2=981528&view=diff
==============================================================================
--- subversion/trunk/tools/dev/unix-build/Makefile.svn (original)
+++ subversion/trunk/tools/dev/unix-build/Makefile.svn Mon Aug  2 14:41:55 2010
@@ -722,6 +722,7 @@ $(SVN_OBJDIR)/.configured: $(SVN_OBJDIR)
 	cd $(svn_builddir) && \
 		env LDFLAGS="-L$(PREFIX)/neon/lib -L$(PREFIX)/apr/lib" \
 			LD_LIBRARY_PATH="$(PREFIX)/bdb/lib:$(PREFIX)/iconv/lib:$$LD_LIBRARY_PATH" \
+			CFLAGS="-Wno-system-headers" \
 			$(SVN_SRCDIR)/configure \
 			--enable-maintainer-mode \
 			--with-ssl \