Author: bdonlan Date: 2004-12-30 20:56:05 -0500 (Thu, 30 Dec 2004) New Revision: 482
Added: trunk/clients/ncurses/configure.ac Removed: trunk/clients/ncurses/configure.in Modified: trunk/ Log: [EMAIL PROTECTED]: bdonlan | 2004-12-31T01:55:55.179711Z Rename configure.in to configure.ac so debian's version selector picks 2.5x Property changes on: trunk ___________________________________________________________________ Name: svk:merge - 1f59643a-e6e5-0310-bc24-f7d4c744f460:/haver/local/trunk:10227 27e50396-46e3-0310-8b22-ae223a1f35ce:/local:212 edfcd8bd-4ce7-0310-a97e-bb1efd40edf3:/local:238 + 1f59643a-e6e5-0310-bc24-f7d4c744f460:/haver/local/trunk:10232 27e50396-46e3-0310-8b22-ae223a1f35ce:/local:212 edfcd8bd-4ce7-0310-a97e-bb1efd40edf3:/local:238 Added: trunk/clients/ncurses/configure.ac =================================================================== --- trunk/clients/ncurses/configure.ac 2004-12-31 01:49:47 UTC (rev 481) +++ trunk/clients/ncurses/configure.ac 2004-12-31 01:56:05 UTC (rev 482) @@ -0,0 +1,27 @@ +dnl Process this file with autoconf to produce a configure script. +dnl vim: set ts=4 sw=4 expandtab si ai sta tw=104: + +AC_INIT(havercurs, 0.0.1) +AM_INIT_AUTOMAKE +AM_CONFIG_HEADER(config.h) + +dnl Checks for programs. +AC_PROG_CC + +dnl Checks for libraries. + +dnl Checks for header files. +AC_HEADER_STDC +AC_CHECK_HEADERS(sys/time.h assert.h ncurses.h) + +dnl Checks for typedefs, structures, and compiler characteristics. +AC_C_CONST +AC_TYPE_SIZE_T +AC_HEADER_TIME + +dnl Checks for library functions. +AC_TYPE_SIGNAL +AC_CHECK_FUNCS(gettimeofday select) +AC_CHECK_LIB(ncurses, initscr) + +AC_OUTPUT(Makefile) Property changes on: trunk/clients/ncurses/configure.ac ___________________________________________________________________ Name: svn:eol-style + native Deleted: trunk/clients/ncurses/configure.in =================================================================== --- trunk/clients/ncurses/configure.in 2004-12-31 01:49:47 UTC (rev 481) +++ trunk/clients/ncurses/configure.in 2004-12-31 01:56:05 UTC (rev 482) @@ -1,27 +0,0 @@ -dnl Process this file with autoconf to produce a configure script. -dnl vim: set ts=4 sw=4 expandtab si ai sta tw=104: - -AC_INIT(havercurs, 0.0.1) -AM_INIT_AUTOMAKE -AM_CONFIG_HEADER(config.h) - -dnl Checks for programs. -AC_PROG_CC - -dnl Checks for libraries. - -dnl Checks for header files. -AC_HEADER_STDC -AC_CHECK_HEADERS(sys/time.h assert.h ncurses.h) - -dnl Checks for typedefs, structures, and compiler characteristics. -AC_C_CONST -AC_TYPE_SIZE_T -AC_HEADER_TIME - -dnl Checks for library functions. -AC_TYPE_SIGNAL -AC_CHECK_FUNCS(gettimeofday select) -AC_CHECK_LIB(ncurses, initscr) - -AC_OUTPUT(Makefile)
