OpenSDE Packages Database (without history before r20070)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

38 lines
1.6 KiB

  1. # --- SDE-COPYRIGHT-NOTE-BEGIN ---
  2. # This copyright note is auto-generated by ./scripts/Create-CopyPatch.
  3. #
  4. # Filename: package/.../evms/evms-2.5.5-configure-ncurses-libs.patch
  5. # Copyright (C) 2006 The OpenSDE Project
  6. #
  7. # More information can be found in the files COPYING and README.
  8. #
  9. # This patch file is dual-licensed. It is available under the license the
  10. # patched project is licensed under, as long as it is an OpenSource license
  11. # as defined at http://www.opensource.org/ (e.g. BSD, X11) or under the terms
  12. # of the GNU General Public License as published by the Free Software
  13. # Foundation; either version 2 of the License, or (at your option) any later
  14. # version.
  15. # --- SDE-COPYRIGHT-NOTE-END ---
  16. Submitted by: Christian Wiese (morfoh at opensde.org)
  17. Date: 2006-12-13
  18. Initial Package Version: 2.5.5
  19. Upstream Status: submitted
  20. Origin: evms-2.5.5-configure-ncurses-libs.patch by Christian Wiese made for the
  21. Open System Development Environment (http://opensde.org)
  22. Description: Fixes the check for new_panel function within the configure script.
  23. The EVMS configure script does not save -lncurses into LIBS if
  24. ncurses was detected. As side effect the check for the new_panel
  25. function doesn't link against -lncurses which lets the test fail
  26. even if new_panel is available within -lpanel.
  27. --- evms-2.5.5/configure.orig 2006-12-13 17:55:08.733626000 +0200
  28. +++ evms-2.5.5/configure 2006-12-13 18:01:20.040831250 +0200
  29. @@ -7274,6 +7274,7 @@
  30. have_ncurses="yes";
  31. NCURSES_LIBS="-lncurses";
  32. NCURSES_CPPFLAGS="-I/usr/include/ncurses"
  33. + LIBS="-lncurses $LIBS"
  34. else
  35. have_ncurses="no"
  36. fi