~ubuntu-branches/ubuntu/natty/ncdu/natty

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Bazaar Package Importer
  • Author(s): Eugene V. Lyubimkin
  • Date: 2009-10-12 13:36:53 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20091012133653-fnkpopxwkqo6yu2a
Tags: 1.5-1
* New maintainer. Thanks for work, Luca Bedogni. (Closes: #550266)
  - Fixed segfault on empty directory. (Closes: #472294)
  - Use IEEE 1541 GiB not GB units. (Closes: #539553)
* New upstream release. (Closes: #522307, #531845)
* debian/patches:
  - Removed, all fixes applied upstream.
* debian/rules:
  - Rewritten using debhelper 7.
* debian/control:
  - Bumped build-dependency on debhelper to (>= 7).
  - Dropped weird build-dependency on debconf.
  - Dropped build-dependency on dpatch.
  - Bumped Standards-Version to 3.8.3, no changes needed.
  - Tiny capitalness correction in the long description.
* debian/compat:
  - Bumped to 7.
* debian/watch:
  - Removed auto-uupdate command, useless for me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
 
AC_INIT(ncdu, 1.3, projects@yorhel.nl)
3
 
AC_CONFIG_SRCDIR([src/ncdu.h])
 
2
AC_INIT(ncdu, 1.5, projects@yorhel.nl)
 
3
AC_CONFIG_SRCDIR([src/global.h])
4
4
AC_CONFIG_HEADER([config.h])
5
5
AM_INIT_AUTOMAKE
6
6
 
11
11
 
12
12
# Checks for libraries.
13
13
AC_CHECK_LIB(ncurses, initscr)
14
 
AC_CHECK_LIB(form, new_form)
15
14
 
16
15
# Checks for header files.
17
 
AC_HEADER_DIRENT
18
 
AC_HEADER_STDC
19
 
AC_CHECK_HEADERS([limits.h stdlib.h string.h sys/time.h unistd.h fnmatch.h ncurses.h form.h])
 
16
AC_CHECK_HEADERS(
 
17
  [limits.h stdlib.h string.h sys/time.h sys/types.h sys/stat.h dirent.h unistd.h fnmatch.h ncurses.h],[],
 
18
  AC_MSG_ERROR([required header file not found]))
20
19
 
21
20
# Checks for typedefs, structures, and compiler characteristics.
22
 
AC_C_CONST
23
21
AC_TYPE_OFF_T
24
22
AC_SYS_LARGEFILE
25
23
AC_STRUCT_ST_BLOCKS
26
 
AC_HEADER_TIME
27
24
 
28
25
# Checks for library functions.
29
 
AC_FUNC_CLOSEDIR_VOID
30
 
AC_FUNC_LSTAT
31
 
AC_FUNC_MALLOC
32
 
AC_FUNC_STAT
33
 
AC_CHECK_FUNCS([getcwd gettimeofday memset fnmatch])
 
26
AC_CHECK_FUNCS(
 
27
  [getcwd gettimeofday memset fnmatch chdir rmdir unlink lstat getcwd],[],
 
28
  AC_MSG_ERROR([required function missing]))
34
29
 
35
30
AC_OUTPUT([Makefile src/Makefile doc/Makefile])
36
31