[Pcsclite-cvs-commit] PCSC ChangeLog,1.18,1.19 HELP,1.1.1.1,1.2 NEWS,1.4,1.5 README,1.10,1.11 configure.in,1.46,1.47

rousseau@haydn.debian.org rousseau@haydn.debian.org


Update of /cvsroot/pcsclite/PCSC
In directory haydn:/tmp/cvs-serv4588

Modified Files:
	ChangeLog HELP NEWS README configure.in 
Log Message:
smartcard -> smart card, musclecard -> MuscleCard


Index: ChangeLog
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- ChangeLog	6 May 2004 09:05:59 -0000	1.18
+++ ChangeLog	10 May 2004 13:14:30 -0000	1.19
@@ -105,8 +105,8 @@
 4 September, 2003
 - removed a very _stupid_ bug that linked libpcsclite with libusb. Any
   application linked with libpcsclite was also linked with libusb.
-- generate a new library libmusclecard and remove musclecard code from
-  libpcsclite. An application using musclecard function need to explicitely
+- generate a new library libmusclecard and remove MuscleCard code from
+  libpcsclite. An application using MuscleCard function need to explicitely
   link with libmusclecard.
 - src/winscard_clnt.c: add a new function SCardUnload() to free allocated
   resources. It is mandatory only if you use dlopen/dlclose to often

Index: HELP
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/HELP,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -u -d -r1.1.1.1 -r1.2
--- HELP	30 Mar 2002 18:14:07 -0000	1.1.1.1
+++ HELP	10 May 2004 13:14:30 -0000	1.2
@@ -6,6 +6,6 @@
 
 For interested parties, I am available part time for contract based work 
 developing drivers, middleware, and applications for a variety of 
-platforms based upon smartcards and cryptographic tokens.
+platforms based upon smart cards and cryptographic tokens.
 My current hardware platforms are: Linux, Solaris, BSD,
 Mac OS, and HP-UX

Index: NEWS
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/NEWS,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- NEWS	31 Aug 2003 21:52:03 -0000	1.4
+++ NEWS	10 May 2004 13:14:30 -0000	1.5
@@ -1,6 +1,6 @@
 Read the ChangeLog file for news.
 
-Checkout the new Musclecard.  Its an applet for Java Card which
+Checkout the new MuscleCard.  Its an applet for Java Card which
 will run on any 2.1 compliant card.  It has client side API's 
 for nearly every major operating system and it's totally free.
 Go to: http://www.musclecard.com/musclecard.html

Index: README
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/README,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -d -r1.10 -r1.11
--- README	15 Sep 2003 06:17:06 -0000	1.10
+++ README	10 May 2004 13:14:30 -0000	1.11
@@ -19,7 +19,7 @@
 
 Welcome to PCSC Lite.  The purpose of PCSC Lite is to
 provide a Windows(R) SCard interface in a very small form factor for
-communicating to smartcards and readers. PCSC Lite can be compiled
+communicating to smart cards and readers. PCSC Lite can be compiled
 directly to a desired reader driver or can be used to dynamically
 allocate/deallocate reader drivers at runtime (default).
 
@@ -69,7 +69,7 @@
 
 Be sure to edit the /etc/reader.conf file to fit your needs and make sure
 your IFD Handler driver is located in the path specified as LIBRARYPATH
-in reader.conf.  If you are using a reader with multiple smartcard slots
+in reader.conf.  If you are using a reader with multiple smart card slots
 all you have to do is define a different FRIENDLYNAME in the reader.conf
 for each reader.  Both will have the same information otherwise.  
 

Index: configure.in
===================================================================
RCS file: /cvsroot/pcsclite/PCSC/configure.in,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- configure.in	7 May 2004 18:18:17 -0000	1.46
+++ configure.in	10 May 2004 13:14:30 -0000	1.47
@@ -200,7 +200,7 @@
 
 if test x${debug} = xtrue ; then
   AC_DEFINE(PCSC_DEBUG, 1, [enable full PCSC debug messaging.])
-  AC_DEFINE(MSC_DEBUG, 1, [enable full musclecard debug messaging.])
+  AC_DEFINE(MSC_DEBUG, 1, [enable full MuscleCard debug messaging.])
 fi
 
 dnl --enable-debugatr
@@ -238,14 +238,14 @@
 
 dnl --disable-musclecard
 AC_ARG_ENABLE(musclecard,
-  AC_HELP_STRING([--disable-musclecard],[musclecard framework disabled]),
+  AC_HELP_STRING([--disable-musclecard],[MuscleCard framework disabled]),
 [case "${enableval}" in
   yes)	musclecard=true ;;
   no)	musclecard=false ;;
   *) AC_MSG_ERROR([bad value ${enableval} for --disable-musclecard]) ;;
  esac], [musclecard=true])
 
-AC_MSG_RESULT([enable musclecard             : $musclecard])
+AC_MSG_RESULT([enable MuscleCard             : $musclecard])
 
 AM_CONDITIONAL(HAVE_MUSCLECARD, test x$musclecard = xtrue)