0001-configure-Do-not-add-native-paths-to-pkgconfig-searc.patch 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. From fedef3c0b1772cee97d7288bee7d5d50805a5964 Mon Sep 17 00:00:00 2001
  2. From: Khem Raj <raj.khem@gmail.com>
  3. Date: Sat, 12 Dec 2020 08:56:04 -0800
  4. Subject: [PATCH] configure: Do not add native paths to pkgconfig search
  5. This does not work in cross environments, secondly in OE we already
  6. point pkkconfig into recipe sysroot where it will find all the
  7. dependencies therefore this setting is not needed
  8. Upstream-Status: Inappropriate [ OE-Specific ]
  9. Signed-off-by: Khem Raj <raj.khem@gmail.com>
  10. ---
  11. configure.ac | 6 ------
  12. 1 file changed, 6 deletions(-)
  13. diff --git a/configure.ac b/configure.ac
  14. index 0df85b0..2481153 100644
  15. --- a/configure.ac
  16. +++ b/configure.ac
  17. @@ -70,12 +70,6 @@ AC_CHECK_HEADERS([])
  18. dnl checks for library functions
  19. AC_CHECK_FUNCS([])
  20. -dnl tell pkgconfig to look in the same prefix where we're installing this to,
  21. -dnl as that is likely where libpurple will be found if it is not in the default
  22. -dnl pkgconfig path
  23. -PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:${libdir}/pkgconfig"
  24. -export PKG_CONFIG_PATH
  25. -
  26. dnl debug mode
  27. AC_ARG_ENABLE(debug,
  28. [AS_HELP_STRING([--enable-debug],
  29. --
  30. 2.29.2