Dennis Stosberg <dennis@xxxxxxxxxxxx> writes: > NetBSD >=2.0 has iconv() in libc. A libiconv is not required and > does not exist. I do not doubt that, but... > + ifeq ($(shell test `uname -r | sed -e 's/^\([0-9]\).*/\1/'` -lt 2 && echo y),y) > + NEEDS_LIBICONV = YesPlease > + endif This looks rather ugly. I do not know if NetBSD has 0.xx versions, but perhaps something like this? ifeq ($(shell expr "$(uname_R)" : '[01]\.'),2) - : send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html