~ubuntu-branches/ubuntu/wily/mp3check/wily

« back to all changes in this revision

Viewing changes to configure.in

  • Committer: Package Import Robot
  • Author(s): Sandro Tosi
  • Date: 2012-05-12 16:08:03 UTC
  • mfrom: (1.1.3)
  • Revision ID: package-import@ubuntu.com-20120512160803-o064g848g3lnvrzc
Tags: 0.8.4-1
* New upstream release
* debian/watch
  - updated
* debian/control
  - added Vcs-{Git, Browser} fields
  - added ${misc:Depends} to Depends line
  - bump Standards-Version to 3.9.3 (no changes needed)
* Converted to 3.0 (quilt) source format
* Converted to debhelper 9 and dh sequencer
* debian/copyright
  - updated to DEP5 and to new upstream release
* debian/patches/20_use_destdir_to_install.patch
  - install using DESTDIR variable
* debian/rules
  - upstream doesn't ship doc anymore
  - install the manpage (no longer done by upstream Makefile)
* debian/patches/15-bts667288-gcc-4.7.patch
  - fix FTBFS with GCC-4.7 (due to uncoordinated upload by gcc "maintainer");
    thanks to Jari Aalto for the patch; Closes: #667288
* debian/patches/30_bts624138_manpage_typo.patch
  - fix a typo in the manpage; thanks to Reuben Thomas for the report;
    Closes: #624138

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Process this file with autoconf to produce a configure script.
2
 
AC_INIT(streplace)
3
 
AM_INIT_AUTOMAKE(mp3check,0.8.3)
4
 
AC_CONFIG_SRCDIR(mp3check.cc)
5
 
AM_CONFIG_HEADER(config.h)
6
 
 
7
 
# Checks for programs.
8
 
AC_PROG_CXX
9
 
AC_PROG_CC
10
 
AC_PROG_INSTALL
11
 
 
12
 
# Checks for libraries.
13
 
 
14
 
# Checks for header files.
15
 
AC_HEADER_DIRENT
16
 
AC_HEADER_STDC
17
 
AC_CHECK_HEADERS([fcntl.h float.h limits.h stdlib.h string.h sys/ioctl.h termios.h unistd.h])
18
 
 
19
 
# Checks for typedefs, structures, and compiler characteristics.
20
 
AC_C_CONST
21
 
AC_TYPE_UID_T
22
 
AC_C_INLINE
23
 
AC_C_BIGENDIAN
24
 
AC_TYPE_MODE_T
25
 
AC_TYPE_OFF_T
26
 
AC_TYPE_SIZE_T
27
 
AC_CHECK_MEMBERS([struct stat.st_rdev])
28
 
 
29
 
# Checks for library functions.
30
 
AC_FUNC_ERROR_AT_LINE
31
 
AC_PROG_GCC_TRADITIONAL
32
 
AC_FUNC_LSTAT
33
 
AC_FUNC_MEMCMP
34
 
AC_FUNC_MMAP
35
 
AC_FUNC_STAT
36
 
AC_FUNC_STRTOD
37
 
AC_FUNC_VPRINTF
38
 
AC_CHECK_FUNCS([asprintf ftruncate memmove memset munmap strchr strdup strerror strrchr strtol strtoul])
39
 
 
40
 
AC_CONFIG_FILES([Makefile])
41
 
AC_OUTPUT
42
 
 
43
 
echo "========================================================================"
44
 
echo "Now type"
45
 
echo "    make"
46
 
echo or
47
 
echo '    make CXXFLAGS="-Wall -W -g"'
48
 
echo '    make CXXFLAGS="-Wall -W -Woverloaded-virtual -Wsynth -Wsign-promo -g"'