mirror of
https://github.com/gentoo-mirror/guru.git
synced 2026-04-07 03:10:15 -04:00
27 lines
668 B
Diff
27 lines
668 B
Diff
Rebase patch added in 9a54836f47d380effe7767c834fb872ce9954037
|
|
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -516,8 +516,8 @@ AC_CHECK_HEADERS([byteswap.h], ,
|
|
|
|
## libtinfo ##
|
|
AC_CHECK_FUNCS([memfd_create])
|
|
-AC_CHECK_LIB([tinfo], [setupterm], tinfo=1,
|
|
- AC_MSG_WARN([*** tinfo library (libtinfo) not found]))
|
|
+AC_CHECK_LIB([tinfow], [setupterm], tinfo=1,
|
|
+ AC_MSG_WARN([*** tinfow library (libtinfo) not found]))
|
|
AM_CONDITIONAL(ENABLE_TINFO, test "$tinfo" = 1)
|
|
|
|
##memory tracing##
|
|
--- a/src/Makefile.am
|
|
+++ b/src/Makefile.am
|
|
@@ -34,7 +34,7 @@ LDADD_static=-ldl
|
|
endif
|
|
|
|
if ENABLE_TINFO
|
|
-LIBS+=-ltinfo
|
|
+LIBS+=-ltinfow
|
|
endif
|
|
|
|
AM_CFLAGS=-D_FILE_OFFSET_BITS=64
|