Changeset 361
- Timestamp:
- Jan 26, 2004, 11:52:30 AM (18 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r355 r361 123 123 if test "${enable_ncurses}" != "no"; then 124 124 ac_cv_my_have_ncurses="no" 125 AC_CHECK_HEADERS( ncurses.h,125 AC_CHECK_HEADERS(curses.h ncurses.h, 126 126 [AC_CHECK_LIB(ncurses, initscr, 127 127 [ac_cv_my_have_ncurses="yes" -
libcaca/trunk/debian/changelog
r355 r361 1 libcaca (0.8-2) unstable; urgency=low 2 3 * src/caca.c src/event.c src/graphics.c: 4 + Include <ncurses.h> instead of <curses.h> to fix m68k FTBFS. 5 6 -- Sam Hocevar (Debian packages) <sam+deb@zoy.org> Mon, 26 Jan 2004 11:47:32 +0100 7 1 8 libcaca (0.8-1) unstable; urgency=low 2 9 -
libcaca/trunk/src/caca.c
r359 r361 40 40 #endif 41 41 #if defined(USE_NCURSES) 42 # include <curses.h> 42 # if defined(HAVE_NCURSES_H) 43 # include <ncurses.h> 44 # else 45 # include <curses.h> 46 # endif 43 47 #endif 44 48 #if defined(USE_CONIO) -
libcaca/trunk/src/event.c
r357 r361 38 38 #endif 39 39 #if defined(USE_NCURSES) 40 # include <curses.h> 40 # if defined(HAVE_NCURSES_H) 41 # include <ncurses.h> 42 # else 43 # include <curses.h> 44 # endif 41 45 #endif 42 46 #if defined(USE_CONIO) -
libcaca/trunk/src/graphics.c
r357 r361 38 38 #endif 39 39 #if defined(USE_NCURSES) 40 # include <curses.h> 40 # if defined(HAVE_NCURSES_H) 41 # include <ncurses.h> 42 # else 43 # include <curses.h> 44 # endif 41 45 #endif 42 46 #if defined(USE_CONIO)
Note: See TracChangeset
for help on using the changeset viewer.