From 30ee4046ee699060ab04c40e6c2cc2ee750c1c62 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20W=C3=A4ckerlin?= Date: Fri, 8 Jun 2012 08:31:01 +0000 Subject: [PATCH] remove const; refs #20 --- doc/examples/makefile.am | 8 -------- src/openssl.hxx | 2 +- 2 files changed, 1 insertion(+), 9 deletions(-) diff --git a/doc/examples/makefile.am b/doc/examples/makefile.am index 108c9a5..7802369 100644 --- a/doc/examples/makefile.am +++ b/doc/examples/makefile.am @@ -6,16 +6,8 @@ noinst_PROGRAMS = pcsc-demo cryptoki-demo openssl-tcp-demo \ openssl-ssl-demo openssl-engine-demo -AM_CPPFLAGS = -I${top_srcdir}/src -if !MINGW32 -if MAC -AM_CPPFLAGS += -I/opt/local/include -else AM_CPPFLAGS += -I/usr/include/PCSC -endif -endif -LDFLAGS= if MAC AM_CPPFLAGS+=-I/Library/OpenSC/include LDFLAGS += -F/System/Library/Frameworks/PCSC.framework -framework PCSC -L/opt/local/lib -lcrypto diff --git a/src/openssl.hxx b/src/openssl.hxx index d432299..0b325ce 100644 --- a/src/openssl.hxx +++ b/src/openssl.hxx @@ -25,7 +25,7 @@ # error OpenSSL Version Number not Found #elif OPENSSL_VERSION_NUMBER < 0x10000000L # define OPENSSL_0 -# define V0_CONST const +# define V0_CONST # define CV_STACK # define CV_X509 #else