* m4/libs.m4 (DPKG_LIB_CURSES): Use libncursesw if available.
* debian/control: Change build-dependency from libncurses5-dev
to libncursesw5-dev.
+2008-02-19 Frank Lichtenheld <djpig@debian.org>
+
+ * m4/libs.m4 (DPKG_LIB_CURSES): Use libncursesw if
+ available.
+ * debian/control: Change build-dependency from
+ libncurses5-dev to libncursesw5-dev.
+
2008-02-17 Frank Lichtenheld <djpig@debian.org>
* scripts/Dpkg.pm: Allow overriding $pkgdatadir
* Add support for use of SHA1 and SHA256 checksums in .dsc and
.changes files. Information will be available in Checksums-Sha{1,256}
fields. .changes format version increased to 1.8.
+ * Link dselect against libncursesw. Closes: #466321
[ Updated dpkg translations ]
* Korean (Changwoo Ryu).
Vcs-Git: git://git.debian.org/git/dpkg/dpkg.git
Standards-Version: 3.7.3
Build-Depends: debhelper (>= 4.1.81), pkg-config, po4a (>= 0.23),
- libncurses5-dev | libncurses-dev, zlib1g-dev (>= 1:1.1.3-19.1), libbz2-dev,
+ libncursesw5-dev, zlib1g-dev (>= 1:1.1.3-19.1), libbz2-dev,
libselinux1-dev (>= 1.28-4) [!hurd-i386 !kfreebsd-i386 !kfreebsd-amd64],
libtimedate-perl, libio-string-perl
# Check for curses library.
AC_DEFUN([DPKG_LIB_CURSES],
[AC_ARG_VAR([CURSES_LIBS], [linker flags for curses library])dnl
-AC_CHECK_LIB([ncurses], [initscr], [CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lncurses"],
- [AC_CHECK_LIB([curses], [initscr], [CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lcurses"],
- [AC_MSG_WARN([no curses library found])])])
+AC_CHECK_LIB([ncursesw], [initscr], [CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lncursesw"],
+ [AC_CHECK_LIB([ncurses], [initscr], [CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lncurses"],
+ [AC_CHECK_LIB([curses], [initscr], [CURSES_LIBS="${CURSES_LIBS:+$CURSES_LIBS }-lcurses"],
+ [AC_MSG_WARN([no curses library found])])])])
])# DPKG_LIB_CURSES
# DPKG_LIB_SSD