cfengine-3.4.5-ifconfig.patch 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. Patch by clabbe.montjoie@gmail.com
  2. https://bugs.gentoo.org/444532
  3. --- src/conf.h.in.old 2012-12-28 16:18:23.000000000 +0100
  4. +++ src/conf.h.in 2012-12-28 16:19:08.000000000 +0100
  5. @@ -773,3 +773,6 @@
  6. /* Define to rpl_vsnprintf if the replacement function should be used. */
  7. #undef vsnprintf
  8. +
  9. +/* Define to the path for running ifconfig -a */
  10. +#undef IFCONFIG_RUN
  11. --- src/unix.c.old 2012-12-28 16:05:28.000000000 +0100
  12. +++ src/unix.c 2012-12-28 16:13:15.000000000 +0100
  13. @@ -900,7 +900,7 @@
  14. default:
  15. - if ((pp = cf_popen("/sbin/ifconfig -a", "r")) == NULL)
  16. + if ((pp = cf_popen(IFCONFIG_RUN, "r")) == NULL)
  17. {
  18. CfOut(cf_verbose, "", "Could not find interface info\n");
  19. return;
  20. --- configure.ac.old 2012-12-29 11:38:20.000000000 +0100
  21. +++ configure.ac 2012-12-29 11:49:11.000000000 +0100
  22. @@ -882,6 +882,16 @@
  23. dnl ######################################################################
  24. +dnl Find the path to ifconfig
  25. +dnl ######################################################################
  26. +
  27. +AC_PATH_PROG(IFCONFIG_PATH,ifconfig)
  28. +if test x"$IFCONFIG_PATH" = x"" ; then
  29. + AC_MSG_ERROR([Cannot found the ifconfig binary.])
  30. +fi
  31. +AC_DEFINE_UNQUOTED(IFCONFIG_RUN, "$IFCONFIG_PATH -a", [the path to run ifconfig -a])
  32. +
  33. +dnl ######################################################################
  34. dnl Summarize
  35. dnl ######################################################################