~ubuntu-branches/ubuntu/quantal/mc/quantal

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Yury V. Zaytsev, Yury V. Zaytsev
  • Date: 2010-09-07 10:59:46 UTC
  • mfrom: (4.2.9 sid)
  • Revision ID: james.westby@ubuntu.com-20100907105946-bf9et2bryuq6aoa5
Tags: 3:4.7.0.9-1
[Yury V. Zaytsev]
* New upstream version (bugfix release).
  + Corrected typos in man pages (Closes: #585503)
* Enabled ext2undelfs by default (LP: #267480)
* Tightened libslang2 dependency (Closes: #592772)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
AC_USE_SYSTEM_EXTENSIONS
19
19
 
20
20
AC_PROG_LIBTOOL
 
21
PKG_PROG_PKG_CONFIG
21
22
 
22
23
AC_ISC_POSIX
23
24
 
437
438
subshell="$result"
438
439
 
439
440
 
440
 
dnl
441
 
dnl Select the screen library.
442
 
dnl
443
 
AC_ARG_WITH(screen,
444
 
        [  --with-screen=LIB        Compile with screen library: slang or
445
 
                           ncurses [[slang if found]]])
446
 
 
447
 
case x$with_screen in
448
 
xslang)
449
 
        MC_WITH_SLANG(strict)
450
 
        ;;
451
 
xncurses)
452
 
        MC_WITH_NCURSES
453
 
        ;;
454
 
xncursesw)
455
 
        MC_WITH_NCURSESW
456
 
        ;;
457
 
x)
458
 
        MC_WITH_SLANG
459
 
        ;;
460
 
*)
461
 
        AC_MSG_ERROR([Value of the screen library is incorrect])
462
 
        ;;
463
 
esac
 
441
MC_WITH_SCREEN
464
442
 
465
443
 
466
444
dnl