Changeset 253
- Timestamp:
- Dec 16, 2003, 10:06:46 AM (19 years ago)
- Location:
- libcaca/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcaca/trunk/configure.ac
r251 r253 25 25 [ --enable-conio DOS conio.h graphics support (default disabled)]) 26 26 AC_ARG_ENABLE(x11, 27 [ --enable-x11 X11 support (default disabled) ])27 [ --enable-x11 X11 support (default disabled) (EXPERIMENTAL)]) 28 28 29 29 AC_CHECK_HEADERS(inttypes.h endian.h) … … 31 31 32 32 if test "${enable_conio}" = "yes"; then 33 AC_CHECK_HEADER (conio.h,:,AC_MSG_ERROR([cannot find conio.h header]))33 AC_CHECK_HEADERS(conio.h,:,AC_MSG_ERROR([cannot find conio.h header])) 34 34 AC_MSG_CHECKING(for ScreenUpdate in pc.h) 35 35 AC_EGREP_HEADER(ScreenUpdate,pc.h,[ … … 40 40 AC_DEFINE(USE_CONIO, 1, Define if the backend driver is conio.h) 41 41 elif test "${enable_slang}" = "yes"; then 42 AC_CHECK_HEADER (slang.h,:,AC_MSG_ERROR([cannot find slang headers]))42 AC_CHECK_HEADERS(slang.h,:,AC_MSG_ERROR([cannot find slang headers])) 43 43 AC_CHECK_LIB(slang,SLkp_init,:,AC_MSG_ERROR([cannot find slang library])) 44 44 AC_DEFINE(USE_SLANG, 1, Define if the backend driver is slang) … … 59 59 CACA_LIBS="${CACA_LIBS} ${X_LIBS}" 60 60 elif test "${enable_ncurses}" != "no"; then 61 AC_CHECK_HEADER (ncurses.h,:,AC_MSG_ERROR([cannot find ncurses headers]))61 AC_CHECK_HEADERS(ncurses.h,:,AC_MSG_ERROR([cannot find ncurses headers])) 62 62 AC_CHECK_LIB(ncurses,initscr,:,AC_MSG_ERROR([cannot find ncurses library])) 63 63 AC_DEFINE(USE_NCURSES, 1, Define if the backend driver is ncurses) … … 91 91 CPPFLAGS="${CPPFLAGS} `imlib2-config --cflags` -DX_DISPLAY_MISSING=1" 92 92 fi 93 AC_CHECK_HEADER (Imlib2.h, USE_IMLIB2=:, USE_IMLIB2=false)93 AC_CHECK_HEADERS(Imlib2.h, USE_IMLIB2=:, USE_IMLIB2=false) 94 94 CPPFLAGS="${save_CPPFLAGS}" 95 95 AM_CONDITIONAL(USE_IMLIB2, ${USE_IMLIB2}) -
libcaca/trunk/src/bitmap.c
r252 r253 202 202 } 203 203 204 if(has_alpha) 205 bitmap->has_alpha = has_alpha; 204 bitmap->has_alpha = has_alpha; 206 205 } 207 206
Note: See TracChangeset
for help on using the changeset viewer.