svn commit: r286561 - head/usr.bin/svn/lib/libapr_util

Peter Wemm peter at FreeBSD.org
Mon Aug 10 00:46:25 UTC 2015


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


More information about the svn-src-all mailing list