summaryrefslogtreecommitdiff
path: root/games-roguelike/hengband/files/hengband-1.6.2-autoconf-ncurses.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-03-10 00:03:27 +0000
committerV3n3RiX <venerix@koprulu.sector>2023-03-10 00:03:27 +0000
commit71e206c31e948709a88fafc342bd2d8695942aa5 (patch)
tree5a725c301c38681ee78bf527d6b813cfed0ba45d /games-roguelike/hengband/files/hengband-1.6.2-autoconf-ncurses.patch
parentb99d094da26977938043a92f89ef882a70250cf8 (diff)
gentoo auto-resync : 10:03:2023 - 00:03:27
Diffstat (limited to 'games-roguelike/hengband/files/hengband-1.6.2-autoconf-ncurses.patch')
-rw-r--r--games-roguelike/hengband/files/hengband-1.6.2-autoconf-ncurses.patch26
1 files changed, 0 insertions, 26 deletions
diff --git a/games-roguelike/hengband/files/hengband-1.6.2-autoconf-ncurses.patch b/games-roguelike/hengband/files/hengband-1.6.2-autoconf-ncurses.patch
deleted file mode 100644
index 3fabd8e1891e..000000000000
--- a/games-roguelike/hengband/files/hengband-1.6.2-autoconf-ncurses.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-diff --git a/configure.in b/configure.in
-index 0df0e76..d8ea587 100644
---- a/configure.in
-+++ b/configure.in
-@@ -56,13 +56,14 @@ fi
-
- dnl Checks for libraries.
- dnl Replace `main' with a function in -lncurses:
--AC_CHECK_LIB(ncurses, initscr, [AC_DEFINE(USE_GCU, 1, [Allow -mGCU environment]) AC_DEFINE(USE_NCURSES, 1, [Use ncurses]) LIBS="$LIBS -lncurses"])
--if test "$ac_cv_lib_ncurses_initscr" != yes; then
-- AC_CHECK_LIB(curses, initscr, [AC_DEFINE(USE_GCU, 1, [Allow -mGCU environment]) LIBS="$LIBS -lcurses"])
-- if test "$ac_cv_lib_curses_initscr" != yes; then
-- AC_CHECK_LIB(termcap, tgetent, [AC_DEFINE(USE_CAP, 1, [Allow -mCAP environment]) LIBS="$LIBS -ltermcap"])
-- fi
--fi
-+PKG_CHECK_MODULES(
-+ [NCURSES],
-+ [ncurses],
-+ [AC_DEFINE(USE_GCU, 1, [Allow -mGCU environment])
-+ AC_DEFINE(USE_NCURSES, 1, [Use ncurses])
-+ [LIBS="${LIBS} ${NCURSES_LIBS}"]
-+ ]
-+)
-
- dnl Checks for header files.
- AC_PATH_XTRA