Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 10 Aug 2015 00:46:25 +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: r286561 - head/usr.bin/svn/lib/libapr_util
Message-ID:  <201508100046.t7A0kP74028769@repo.freebsd.org>

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

Log:
  Don't assume iconv is enabled.  I didn't realize there was a configuration
  control to turn it off and it wasn't being respected.
  
  Pointed out by:	gshapiro

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

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

Modified: head/usr.bin/svn/lib/libapr_util/apu_config.h
==============================================================================
--- head/usr.bin/svn/lib/libapr_util/apu_config.h	Sun Aug  9 22:33:51 2015	(r286560)
+++ head/usr.bin/svn/lib/libapr_util/apu_config.h	Mon Aug 10 00:46:24 2015	(r286561)
@@ -41,7 +41,7 @@
 /* #undef HAVE_FREETDS_SYBDB_H */
 
 /* Define to 1 if you have the <iconv.h> header file. */
-#define HAVE_ICONV_H 1
+/* #undef HAVE_ICONV_H */
 
 /* Define to 1 if you have the <inttypes.h> header file. */
 #define HAVE_INTTYPES_H 1



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