[Pcsclite-cvs-commit] r1734 - trunk/Drivers/ccid

Ludovic Rousseau rousseau at costa.debian.org
Thu Nov 24 10:07:20 UTC 2005


Author: rousseau
Date: 2005-11-24 10:07:20 +0000 (Thu, 24 Nov 2005)
New Revision: 1734

Modified:
   trunk/Drivers/ccid/configure.in
Log:
replace dnl by #


Modified: trunk/Drivers/ccid/configure.in
===================================================================
--- trunk/Drivers/ccid/configure.in	2005-11-24 10:06:04 UTC (rev 1733)
+++ trunk/Drivers/ccid/configure.in	2005-11-24 10:07:20 UTC (rev 1734)
@@ -1,9 +1,9 @@
-dnl Process this file with autoconf to produce a configure script.
-dnl You may need to use autoconf 2.56 or newer
+# Process this file with autoconf to produce a configure script.
+# You may need to use autoconf 2.56 or newer
 
-dnl $Id$
+# $Id$
 
-dnl Require autoconf 2.52
+# Require autoconf 2.52
 AC_PREREQ(2.52)
 
 AC_INIT(ccid, 0.9.4)
@@ -11,19 +11,19 @@
 AC_CONFIG_AUX_DIR(build)
 AM_INIT_AUTOMAKE
 
-dnl Default install dir
+# Default install dir
 AC_PREFIX_DEFAULT(/usr/local)
 
-dnl Automake boilerplate.
+# Automake boilerplate.
 AC_CANONICAL_HOST
 
-dnl create a config.h file (Automake will add -DHAVE_CONFIG_H)
+# create a config.h file (Automake will add -DHAVE_CONFIG_H)
 AM_CONFIG_HEADER(config.h)
 
-dnl Options
+# Options
 AM_MAINTAINER_MODE
 
-dnl Checks for programs.
+# Checks for programs.
 AC_PROG_CC
 AC_PROG_CPP
 AC_PROG_INSTALL
@@ -31,7 +31,7 @@
 AC_PROG_LN_S
 AM_PROG_LEX
 
-dnl check pcsc-lite version
+# check pcsc-lite version
 PKG_CHECK_MODULES(PCSC, libpcsclite >= 1.2.9-beta8, [],
 	[ if test -f /usr/local/lib/pkgconfig/libpcsclite.pc ; then
 		AC_MSG_ERROR([use PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ./configure])
@@ -50,26 +50,26 @@
 	[ #include <reader.h> ])
 CFLAGS="$OLD_CFLAGS"
 
-dnl Add libtool support.
+# Add libtool support.
 AM_PROG_LIBTOOL
 
-dnl Automatically update the libtool script if it becomes out-of-date.
+# Automatically update the libtool script if it becomes out-of-date.
 AC_SUBST(LIBTOOL_DEPS)
 
-dnl Checks for header files.
+# Checks for header files.
 AC_HEADER_STDC
 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,,
 	[AC_MSG_WARN([some header files not found])])
 
-dnl Checks for typedefs, structures, and compiler characteristics.
+# Checks for typedefs, structures, and compiler characteristics.
 AC_C_CONST
 AC_TYPE_SIZE_T
 AC_HEADER_TIME
 
-dnl Checks for library functions.
+# Checks for library functions.
 AC_CHECK_FUNCS(select strerror strncpy memcpy)
 
-dnl Select OS specific versions of source files.
+# Select OS specific versions of source files.
 AC_SUBST(BUNDLE_HOST)
 AC_SUBST(DYN_LIB_EXT)
 case "$host" in
@@ -95,7 +95,7 @@
 
 CFLAGS="$CFLAGS -Wall"
 
-dnl --enable-libusb=PATH
+# --enable-libusb=PATH
 AC_ARG_ENABLE(libusb,
 	AC_HELP_STRING([--enable-libusb=PATH],[libusb path (default /usr)]),
 	[
@@ -113,7 +113,7 @@
 	]
 )
 
-dnl check if libusb is available
+# check if libusb is available
 if test "x$use_libusb" != xfalse ; then
 	saved_CPPFLAGS="$CPPFLAGS"
 	saved_LIBS="$LIBS"
@@ -138,11 +138,11 @@
 AC_SUBST(LIBUSB_CFLAGS)
 AC_SUBST(LIBUSB_LIBS)
 
-dnl check what to use for dlopen
+# check what to use for dlopen
 AC_SUBST(LIBDL)
 AC_CHECK_LIB(dl, dlopen, [LIBDL="$LIBDL -ldl" ac_cv_func_dlopen_ldl=yes], ac_cv_func_dlopen_ldl=no)
 
-dnl --enable-multi-thread
+# --enable-multi-thread
 AC_ARG_ENABLE(multi-thread,
 	AC_HELP_STRING([--enable-multi-thread],[enable multi threading
 	(default=yes)]),
@@ -156,7 +156,7 @@
 fi
 AC_MSG_RESULT([multi threading         : $multithread])
 
-dnl --enable-bundle=NAME
+# --enable-bundle=NAME
 AC_ARG_ENABLE(bundle,
 	AC_HELP_STRING([--enable-bundle=NAME],[bundle directory name
 	(default ifd-ccid.bundle)]),
@@ -167,7 +167,7 @@
 AC_MSG_RESULT([bundle directory name   : $bundle])
 AC_DEFINE_UNQUOTED(BUNDLE, "$bundle", [bundle directory name])
 
-dnl --enable-usbdropdir=DIR
+# --enable-usbdropdir=DIR
 AC_ARG_ENABLE(usbdropdir,
 	AC_HELP_STRING([--enable-usbdropdir=DIR],[directory containing USB
 	drivers (default to pcscd config or $(prefix)/pcsc/drivers)]),
@@ -181,7 +181,7 @@
 	AC_MSG_ERROR([use --enable-usbdropdir=DIR])
 fi
 
-dnl --enable-ccidtwindir=DIR
+# --enable-ccidtwindir=DIR
 AC_ARG_ENABLE(ccidtwindir,
 	AC_HELP_STRING([--enable-ccidtwindir=DIR],[directory to install the
 	serial Twin driver (default to pcscd config or $(prefix)/pcsc/drivers/serial)]),
@@ -192,7 +192,7 @@
 AC_MSG_RESULT([serial twin install dir : $ccidtwindir])
 AC_DEFINE_UNQUOTED(PCSCLITE_HP_DROPDIR, "$ccidtwindir", [directory containing USB drivers])
 
-dnl --enable-pcsclite
+# --enable-pcsclite
 AC_ARG_ENABLE(pcsclite,
 	AC_HELP_STRING([--enable-pcsclite],[compile for pcsc-lite (default=yes)]),
 	[ pcsclite=no ], [ pcsclite=yes ] )
@@ -201,7 +201,7 @@
 	AM_CONDITIONAL(WITHOUT_PCSC, true)
 	AM_CONDITIONAL(NEED_PARSER, true)
 else
-	dnl check that pcsc-lite is installed
+	# check that pcsc-lite is installed
 	OLD_LDLIBS="$LDLIBS"
 	OLD_LIBS="$LIBS"
 	LDLIBS="$LDLIBS $PCSC_LIBS"
@@ -215,13 +215,13 @@
 AC_MSG_RESULT([compiled for pcsc-lite  : $pcsclite])
 
 
-dnl Setup dist stuff
+# Setup dist stuff
 AC_SUBST(ac_aux_dir)
 AC_SUBST(bundle)
 AC_SUBST(usbdropdir)
 AC_SUBST(ccidtwindir)
 
-dnl Write Makefiles.
+# Write Makefiles.
 AC_CONFIG_FILES(Makefile
 	aclocal/Makefile
 	src/Makefile




More information about the Pcsclite-cvs-commit mailing list