const char* charwidth_string[] = { "1", "2_HILO", "2_LOHI" };
-hnode_t *node_alloc(void *c __attribute__((unused)))
+hnode_t *node_alloc(void *c UNUSED)
{
return (hnode_t *)malloc(sizeof *node_alloc(NULL));
}
-void node_free(hnode_t *n, void *c __attribute__((unused)))
+void node_free(hnode_t *n, void *c UNUSED)
{
free((void*)hnode_getkey(n));
free(hnode_get(n));
}
}
-static char *new_gconv_path;
-
void cleanup_encodings()
{
hash_free(encodings);
}
+#ifdef USE_GLIBC_ICONV
+
+static char *new_gconv_path;
+
void cleanup_gconv_path()
{
/* Clean up environment */
/* Let function be called before main() */
void update_gconv_search_path() __attribute__ ((constructor));
+#endif /* USE_GLIBC_ICONV */
+
/* Note:
The environment variable GCONV_PATH has to be adjusted before the very
void update_gconv_search_path()
{
+#ifdef USE_GLIBC_ICONV
char *gconv_path;
/* Add gedcom data directory to gconv search path */
gconv_path = getenv(GCONV_SEARCH_PATH);
if (init_called && atexit(cleanup_gconv_path) != 0) {
gedcom_warning(_("Could not register path cleanup function"));
}
+#endif /* USE_GLIBC_ICONV */
}
void init_encodings()
void close_conv_to_internal()
{
- if (iconv_close(cd_to_internal) != 0) {
- gedcom_warning(_("Error closing conversion context: %s"), strerror(errno));
+ if (cd_to_internal != (iconv_t) -1) {
+ if (iconv_close(cd_to_internal) != 0) {
+ gedcom_warning(_("Error closing conversion context: %s"),
+ strerror(errno));
+ }
+ cd_to_internal = (iconv_t) -1;
}
- cd_to_internal = (iconv_t) -1;
}
char* to_internal(const char* str, size_t len,