From 0edc4ff3b3ae426aa489b2ff5f80afd5759152f3 Mon Sep 17 00:00:00 2001 From: William Pitcock Date: Fri, 14 Sep 2012 16:16:35 -0500 Subject: [PATCH] main: mention compatibility level in --about ala PKG_PKGCONFIG_VERSION_EQUIV --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index d9e05f0..a5eff0a 100644 --- a/main.c +++ b/main.c @@ -433,7 +433,7 @@ version(void) static void about(void) { - printf("%s %s%s\n", PACKAGE_NAME, PACKAGE_VERSION, HAVE_STRICT_MODE ? " [strict]" : " [pkg-config compatible]"); + printf("%s %s%s\n", PACKAGE_NAME, PACKAGE_VERSION, HAVE_STRICT_MODE ? " [strict]" : " [pkg-config " PKG_PKGCONFIG_VERSION_EQUIV " compatible]"); printf("Copyright (c) 2011 - 2012 pkgconf authors (see AUTHORS in documentation directory).\n\n"); printf("Permission to use, copy, modify, and/or distribute this software for any\n"); printf("purpose with or without fee is hereby granted, provided that the above\n");