Show
Ignore:
Timestamp:
04/07/08 19:42:43 (9 months ago)
Author:
alonbl
Message:

Attached are the latest mode to OpenSC svn 3462 to use the Makefile.mak
files to build on Windows.

I got rutoken to compile, and took out the #ifdef's I had in last week.
The rutoken programmer declared some variables in the middle of a block
rather then having all the declare statements at the beginning of a block
as is normally done in C. The Microsoft compile treats this as an error.
(Actual many errors.)

The makedef.pl is no longer needed, as the exports files can be used.
Note that in the original Makefile.mak files only opensc.def and
pkcs15init.def were created.

winconfig.h has a number of changes. As discussed last week this could
be created by autoconf. I also noted that the Active State Perl that
was required for the makedef.pl has a psed command that could be used
like sed to update winconfig.h. I did not attempt to do this.

win32/Make.rules.mak - Use ENABLE_OPENSSL and ENABLE_ZLIB

src/tools/Makefile.mak - add the rutoken.tool.exe

src/tools/eidenv.c - use PACKAGE_VERSION

src/pkcs11/Makefile.mak - reorder the objest to match the list in the

Makefile.am. Makes it easier to read.

src/include/winconfig.h - The windows version of the config.h

Changes based on discussions on the list last week.

src/common/Makefile.mak - renamed modules.

src/pkcs15init/Makefile.mak - reordered, and added back the rutoken modules

replaced the use of makdef.pl to sue the exports file.

src/scconf/Makefile.mak - reordered objects.

src/libopensc/card-rutoken.c -

error. Moved the declares to the beginning of blocks.

src/libopensc/Makefile.mak - reorder names, and add rutoken.

Use the libopensc.exports file.

src/libopensc/pkcs15-prkey-rutoken.c - more moving of declare statements.

By Douglas E. Engert

http://www.opensc-project.org/pipermail/opensc-devel/2008-April/011011.html

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/win32/Make.rules.mak

    r3265 r3464  
    1515# - set the OPENSSL_INCL_DIR below to your openssl include directory, preceded by "/I" 
    1616# - set the OPENSSL_LIB below to your openssl lib file 
    17 #OPENSSL_DEF = /DHAVE_OPENSSL 
    18 !IF "$(OPENSSL_DEF)" == "/DHAVE_OPENSSL" 
     17#OPENSSL_DEF = /DENABLE_OPENSSL 
     18!IF "$(OPENSSL_DEF)" == "/DENABLE_OPENSSL" 
    1919OPENSSL_INCL_DIR = /IC:\openssl\include 
    2020OPENSSL_LIB = C:\openssl\out32dll\libeay32.lib 
     
    2727# - set the ZLIB_INCL_DIR below to the zlib include lib proceeded by "/I" 
    2828# - set the ZLIB_LIB  below to your zlib lib file 
    29 #ZLIB_DEF = /DHAVE_ZLIB_H 
    30 !IF "$(ZLIB_DEF)" == "/DHAVE_ZLIB_H" 
     29#ZLIB_DEF = /DENABLE_ZLIB 
     30!IF "$(ZLIB_DEF)" == "/DENABLE_ZLIB" 
    3131ZLIB_INCL_DIR = /IC:\ZLIB\INCLUDE 
    3232ZLIB_LIB = C:\ZLIB\LIB\zlib.lib  
     
    3434 
    3535 
    36 COPTS = /D_CRT_SECURE_NO_DEPRECATE /Zi /MD /nologo /DHAVE_CONFIG_H /I$(TOPDIR)\src\include /I$(TOPDIR)\src\include\opensc /I$(TOPDIR)\src\common $(OPENSSL_INCL_DIR) $(ZLIB_INCL_DIR) $(LIBLTDL_INCL) /D_WIN32_WINNT=0x0400 $(OPENSSL_DEF) $(ZLIB_DEF) 
     36COPTS = /D_CRT_SECURE_NO_DEPRECATE /Zi /MD /nologo /DHAVE_CONFIG_H /I$(TOPDIR)\src\include /I$(TOPDIR)\src\include\opensc /I$(TOPDIR)\src\common $(OPENSSL_INCL_DIR) $(ZLIB_INCL_DIR) $(LIBLTDL_INCL) /D_WIN32_WINNT=0x0400 /DWIN32_LEAN_AND_MEAN $(OPENSSL_DEF) $(ZLIB_DEF) 
    3737LINKFLAGS = /DEBUG /NOLOGO /INCREMENTAL:NO /MACHINE:IX86 
    3838