Changeset e23eb2b


Ignore:
Timestamp:
Jan 2, 2008, 4:53:19 PM (16 years ago)
Author:
Alejandro R. Sedeño <asedeno@mit.edu>
Branches:
master, barnowl_perlaim, debian, release-1.10, release-1.4, release-1.5, release-1.6, release-1.7, release-1.8, release-1.9
Children:
987a93c
Parents:
c60ade2
Message:
Remove options for libcurses and libncurses. This really only works
with libncursesw.
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • config.h.in

    r03cf6b9 re23eb2b  
    2222#undef HAVE_LIBCOM_ERR
    2323
    24 /* Define to 1 if you have the `curses' library (-lcurses). */
    25 #undef HAVE_LIBCURSES
    26 
    2724/* Define to 1 if you have the `des425' library (-ldes425). */
    2825#undef HAVE_LIBDES425
     
    3936/* Define to 1 if you have the `krb5' library (-lkrb5). */
    4037#undef HAVE_LIBKRB5
    41 
    42 /* Define to 1 if you have the `ncurses' library (-lncurses). */
    43 #undef HAVE_LIBNCURSES
    4438
    4539/* Define to 1 if you have the `ncursesw' library (-lncursesw). */
  • configure.in

    r762512d re23eb2b  
    4646fi
    4747
    48 AC_CHECK_LIB(ncursesw, initscr,,
    49   AC_CHECK_LIB(ncurses, initscr,,
    50     AC_CHECK_LIB(curses, initscr,, AC_MSG_ERROR(No curses library found.))))
     48AC_CHECK_LIB(ncursesw, initscr,, AC_MSG_ERROR(No curses library found.))
    5149AC_CHECK_LIB(com_err, com_err)
    5250AC_CHECK_LIB(nsl, gethostbyname)
Note: See TracChangeset for help on using the changeset viewer.