forked from ariadne/pkgconf
main: move PKGCONFIG_VERSION_EQUIV to pkg.h
parent
2ba296dc96
commit
58b525d2f8
5
main.c
5
main.c
|
@ -33,9 +33,6 @@
|
||||||
# include "bsdstubs.h"
|
# include "bsdstubs.h"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* we are compatible with 0.26 of pkg-config */
|
|
||||||
#define PKGCONFIG_VERSION_EQUIV "0.26"
|
|
||||||
|
|
||||||
#define WANT_CFLAGS_ONLY_I (19)
|
#define WANT_CFLAGS_ONLY_I (19)
|
||||||
#define WANT_CFLAGS_ONLY_OTHER (20)
|
#define WANT_CFLAGS_ONLY_OTHER (20)
|
||||||
|
|
||||||
|
@ -501,7 +498,7 @@ main(int argc, char *argv[])
|
||||||
|
|
||||||
if (required_pkgconfig_version != NULL)
|
if (required_pkgconfig_version != NULL)
|
||||||
{
|
{
|
||||||
if (pkg_compare_version(PKGCONFIG_VERSION_EQUIV, required_pkgconfig_version) >= 0)
|
if (pkg_compare_version(PKG_PKGCONFIG_VERSION_EQUIV, required_pkgconfig_version) >= 0)
|
||||||
return EXIT_SUCCESS;
|
return EXIT_SUCCESS;
|
||||||
|
|
||||||
return EXIT_FAILURE;
|
return EXIT_FAILURE;
|
||||||
|
|
Loading…
Reference in New Issue