renamed ccid to ccid-emulator to avoid conflicts with libccid

git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@143 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
frankmorgner
2010-06-09 15:45:20 +00:00
parent a86e0f3922
commit 6b5c0f692d
3 changed files with 8 additions and 8 deletions

View File

@@ -4,7 +4,7 @@ LICENSE = "GPL"
DEPENDS = "pcsc-lite linux-libc-headers openssl opensc"
RDEPENDS = "pcsc-lite kernel-module-gadgetfs libcrypto opensc"
SRC_URI = "svn://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard;module=ccid;proto=https;rev=125"
SRC_URI = "svn://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard;module=ccid;proto=https"
S = "${WORKDIR}/ccid"

View File

@@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.63])
AC_INIT([ccid], [0.2], [morgner@informatik.hu-berlin.de])
AC_INIT([ccid-emulator], [0.2], [morgner@informatik.hu-berlin.de])
AC_CONFIG_SRCDIR([src/ccid.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_MACRO_DIR([m4])
@@ -108,7 +108,7 @@ AC_CHECK_FUNCS([memmove memset strerror])
cat << EOF
ccid has been configured with following options:
ccid-emulator has been configured with following options:
Version: ${PACKAGE_VERSION}
User binaries: $(eval eval eval echo "${bindir}")
@@ -129,7 +129,7 @@ OPENSC_LIBS: ${OPENSC_LIBS}
OPENSSL_CFLAGS: ${OPENSSL_CFLAGS}
OPENSSL_LIBS: ${OPENSSL_LIBS}
ccid support: ${enable_ccid}
emulator support: ${enable_ccid}
pace support: ${enable_pace}
EOF

View File

@@ -2,15 +2,15 @@ IFDNFC_LIB = libifdnfc.$(DYN_LIB_EXT)
bin_PROGRAMS =
if WITH_CCID
bin_PROGRAMS += ccid
bin_PROGRAMS += ccid-emulator
endif
if WITH_PACE
bin_PROGRAMS += pace-tool
endif
ccid_SOURCES = ccid.c usbstring.c usb.c binutil.c scutil.c
ccid_LDADD = $(OPENSC_LIBS) $(PTHREAD_LIBS)
ccid_CFLAGS = $(OPENSC_CFLAGS) $(PTHREAD_CFLAGS)
ccid_emulator_SOURCES = ccid.c usbstring.c usb.c binutil.c scutil.c
ccid_emulator_LDADD = $(OPENSC_LIBS) $(PTHREAD_LIBS)
ccid_emulator_CFLAGS = $(OPENSC_CFLAGS) $(PTHREAD_CFLAGS)
pace_tool_SOURCES = sm.c pace-tool.c binutil.c scutil.c pace.c pace_lib.c
pace_tool_LDADD = $(OPENSC_LIBS) $(OPENSSL_LIBS)