ported to new build system

This commit is contained in:
Marc Wäckerlin
2015-03-03 15:56:02 +00:00
parent 419e4865b7
commit 5d0e946d1e
13 changed files with 1274 additions and 231 deletions

View File

@@ -1,9 +1,9 @@
prefix=@PACKAGENAME@
prefix=@PACKAGE_NAME@
exec_prefix=${prefix}
libdir=${exec_prefix}/lib
includedir=${prefix}/include
Name: @PACKAGENAME@
Name: @PACKAGE_NAME@
Description: C++ wrappers around pcsc-lite, cryptoki, openssh
Version: @VERSION@
Libs: -L${libdir} -lpcscxx

View File

@@ -9,8 +9,8 @@
namespace pcsc {
std::string version() {
return PACKAGENAME "-" PACKAGEVERSION;
return PACKAGE_NAME "-" PACKAGE_VERSION;
}
const std::string IDENT("$Id: " PACKAGENAME "-" PACKAGEVERSION " $");
const std::string WHAT("#(@)" PACKAGENAME "-" PACKAGEVERSION);
const std::string IDENT("$Id: " PACKAGE_NAME "-" PACKAGE_VERSION " $");
const std::string WHAT("#(@)" PACKAGE_NAME "-" PACKAGE_VERSION);
}