[Pcsclite-cvs-commit] r1737 - in trunk/Drivers/ccid: . src

Ludovic Rousseau rousseau at costa.debian.org
Thu Nov 24 13:50:24 UTC 2005


Author: rousseau
Date: 2005-11-24 13:50:24 +0000 (Thu, 24 Nov 2005)
New Revision: 1737

Modified:
   trunk/Drivers/ccid/configure.in
   trunk/Drivers/ccid/src/Makefile.am
Log:
tokenparser.l is only needed when pcscd is not used (Solaris). It is not
needed on Mac OS X since LTPBundleFindValueWithKey() is provided by
pcscd


Modified: trunk/Drivers/ccid/configure.in
===================================================================
--- trunk/Drivers/ccid/configure.in	2005-11-24 13:45:01 UTC (rev 1736)
+++ trunk/Drivers/ccid/configure.in	2005-11-24 13:50:24 UTC (rev 1737)
@@ -76,7 +76,6 @@
 *-*-darwin*)
 	BUNDLE_HOST="MacOS"
 	DYN_LIB_EXT="dylib"
-	AM_CONDITIONAL(NEED_PARSER, true)
 
 	AC_SUBST(COREFOUNDATION)
 	COREFOUNDATION="-Wl,-framework,CoreFoundation"
@@ -90,7 +89,6 @@
 *)
 	BUNDLE_HOST="Linux"
 	DYN_LIB_EXT="so"
-	AM_CONDITIONAL(NEED_PARSER, false)
 esac
 
 CFLAGS="$CFLAGS -Wall"
@@ -213,6 +211,7 @@
 	LIBS="$OLD_LIBS"
 
 	AM_CONDITIONAL(WITHOUT_PCSC, false)
+	AM_CONDITIONAL(NEED_PARSER, false)
 fi
 AC_MSG_RESULT([compiled for pcsc-lite  : $pcsclite])
 

Modified: trunk/Drivers/ccid/src/Makefile.am
===================================================================
--- trunk/Drivers/ccid/src/Makefile.am	2005-11-24 13:45:01 UTC (rev 1736)
+++ trunk/Drivers/ccid/src/Makefile.am	2005-11-24 13:50:24 UTC (rev 1737)
@@ -31,7 +31,7 @@
 	openct/proto-t1.c \
 	openct/proto-t1.h
 
-# needed for MacOS X or when used without pcsc-lite (Solaris)
+# needed when used without pcsc-lite (Solaris)
 if NEED_PARSER
 TOKEN_PARSER = tokenparser_fake.l
 endif




More information about the Pcsclite-cvs-commit mailing list