Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Aug 2015 00:53:46 +0000 (UTC)
From:      Peter Wemm <peter@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r286562 - head/usr.bin/svn/lib/libapr_util
Message-ID:  <201508100053.t7A0rkeM032909@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: peter
Date: Mon Aug 10 00:53:45 2015
New Revision: 286562
URL: https://svnweb.freebsd.org/changeset/base/286562

Log:
  Add a #ifndef around the HAVE_ICONV settings since it is supplied
  by the Makefile.

Modified:
  head/usr.bin/svn/lib/libapr_util/apu.h

Modified: head/usr.bin/svn/lib/libapr_util/apu.h
==============================================================================
--- head/usr.bin/svn/lib/libapr_util/apu.h	Mon Aug 10 00:46:24 2015	(r286561)
+++ head/usr.bin/svn/lib/libapr_util/apu.h	Mon Aug 10 00:53:45 2015	(r286562)
@@ -122,7 +122,9 @@
 #define APU_HAVE_NSS           0
 
 #define APU_HAVE_APR_ICONV     0
+#ifndef APU_HAVE_ICONV
 #define APU_HAVE_ICONV         0
+#endif
 #define APR_HAS_XLATE          (APU_HAVE_APR_ICONV || APU_HAVE_ICONV)
 
 #endif /* APU_H */



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201508100053.t7A0rkeM032909>