From af4f23725b1cec4e6791620ec17c2f991a750cc4 Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 14 Dec 2006 00:45:25 +0000 Subject: [PATCH] =?UTF-8?q?Patch=20by=20Gergely=20Sz=E1sz=20to=20respect?= =?UTF-8?q?=20--disable-joliet.=20(Things=20may=20change=20when=20UDF=20is?= =?UTF-8?q?=20more=20in=20use=20though.)=20Bug=20report=20#18522?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lib/driver/utf8.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/driver/utf8.c b/lib/driver/utf8.c index c35d9643..9203d3f3 100644 --- a/lib/driver/utf8.c +++ b/lib/driver/utf8.c @@ -18,6 +18,7 @@ */ /* UTF-8 support */ +#ifdef HAVE_JOLIET #ifdef HAVE_CONFIG_H # include "config.h" #endif @@ -200,3 +201,4 @@ bool cdio_charset_to_utf8(char *src, size_t src_len, cdio_utf8_t **dst, iconv_close(ic); return result; } +#endif /* HAVE_JOLIET */