utf8proc_unicode_version is too new.

pull/2270/head
Nicholas Marriott 2020-05-28 08:41:56 +01:00
parent 86159fca82
commit ce6b3a539d
1 changed files with 2 additions and 2 deletions

4
proc.c
View File

@ -190,14 +190,14 @@ proc_start(const char *name)
log_debug("on %s %s %s", u.sysname, u.release, u.version); log_debug("on %s %s %s", u.sysname, u.release, u.version);
log_debug("using libevent %s (%s)" log_debug("using libevent %s (%s)"
#ifdef HAVE_UTF8PROC #ifdef HAVE_UTF8PROC
"; utf8proc %s (Unicode %s)" "; utf8proc %s"
#endif #endif
#ifdef NCURSES_VERSION #ifdef NCURSES_VERSION
"; ncurses " NCURSES_VERSION "; ncurses " NCURSES_VERSION
#endif #endif
, event_get_version(), event_get_method() , event_get_version(), event_get_method()
#ifdef HAVE_UTF8PROC #ifdef HAVE_UTF8PROC
, utf8proc_version (), utf8proc_unicode_version () , utf8proc_version ()
#endif #endif
); );