~ubuntu-branches/ubuntu/utopic/acsccid/utopic-backports

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Package Import Robot
  • Author(s): Godfrey Chung
  • Date: 2012-01-13 14:40:28 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20120113144028-7q29uk7sg13e2e3q
Tags: 1.0.3-1
* New upstream release.
* Removed debian/patches/pcsc-lite-1_7_3.patch.
* Updated debian/copyright.
* Updated debian/libacsccid1.udev with a symbolic link to
  src/92_pcscd_acsccid.rules.
* Removed comment starting with "Vcs-" and added perl to Build-Depends in
  debian/control.
* Added --parallel option to dh in debian/rules.
* Removed a blank line and replaced ".*" with "[\d\.]+" in debian/watch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# Require autoconf 2.61
5
5
AC_PREREQ(2.61)
6
6
 
7
 
AC_INIT(acsccid, 1.0.2)
 
7
AC_INIT(acsccid, 1.0.3)
8
8
AC_CONFIG_SRCDIR(src/ifdhandler.c)
9
9
AC_CONFIG_AUX_DIR([config])
10
10
AM_INIT_AUTOMAKE(1.8 dist-bzip2 no-dist-gzip)
63
63
 
64
64
# Checks for header files.
65
65
AC_HEADER_STDC
66
 
AC_CHECK_HEADERS(errno.h fcntl.h stdlib.h unistd.h termios.h string.h errno.h sys/time.h sys/types.h stdarg.h arpa/inet.h,,
 
66
AC_CHECK_HEADERS(errno.h fcntl.h stdlib.h unistd.h termios.h string.h sys/time.h sys/types.h stdarg.h arpa/inet.h,,
67
67
        [AC_MSG_ERROR([some header files not found])])
68
68
 
69
69
# Checks for typedefs, structures, and compiler characteristics.
183
183
saved_CFLAGS="$CFLAGS"
184
184
CFLAGS="$CFLAGS -fvisibility=hidden"
185
185
AC_MSG_CHECKING([for -fvisibility=hidden])
186
 
AC_COMPILE_IFELSE([char foo;],
 
186
AC_COMPILE_IFELSE([AC_LANG_SOURCE([char foo;])],
187
187
    [   AC_MSG_RESULT([yes])
188
188
        SYMBOL_VISIBILITY="-fvisibility=hidden" ],
189
189
    AC_MSG_RESULT([no]))