Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOleg Besedin2008-04-30 17:04:47 +0000
committerOleg Besedin2008-04-30 17:04:47 +0000
commit14f187679366b66fa0ba8783eb7459b3c1c65235 (patch)
tree84db0cdfa480a809528309d4cb31c4d325368a1f /bundles/org.eclipse.equinox.security.win32.x86
parenta64f9617c8f5162d8e4c0d81c974b982079b2a22 (diff)
downloadrt.equinox.bundles-14f187679366b66fa0ba8783eb7459b3c1c65235.tar.gz
rt.equinox.bundles-14f187679366b66fa0ba8783eb7459b3c1c65235.tar.xz
rt.equinox.bundles-14f187679366b66fa0ba8783eb7459b3c1c65235.zip
Bug 229163 win32 security plugin not loaded
Diffstat (limited to 'bundles/org.eclipse.equinox.security.win32.x86')
-rw-r--r--bundles/org.eclipse.equinox.security.win32.x86/cpp/ReadMe.txt15
-rw-r--r--bundles/org.eclipse.equinox.security.win32.x86/jnicrypt.dllbin7168 -> 28672 bytes
2 files changed, 14 insertions, 1 deletions
diff --git a/bundles/org.eclipse.equinox.security.win32.x86/cpp/ReadMe.txt b/bundles/org.eclipse.equinox.security.win32.x86/cpp/ReadMe.txt
index b5f137c52..447491c1d 100644
--- a/bundles/org.eclipse.equinox.security.win32.x86/cpp/ReadMe.txt
+++ b/bundles/org.eclipse.equinox.security.win32.x86/cpp/ReadMe.txt
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2007 IBM Corporation and others.
+ * Copyright (c) 2007, 2008 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -29,3 +29,16 @@ To compile this DLL:
Note C++ projects settings:
=> Additional include directories - "$(JAVA_HOME)/include";"$(JAVA_HOME)/include/win32"
=> Additional linker dependency - Crypt32.lib
+
+ON THE SUBJECT OF RUNTIME LIBRARY
+
+The original DLL was build using Visual Studio 2005. That introduced dependency on
+the msvcr80.dll that might be missing in some Windows installations.
+
+The msvcr80.dll is available as a part of the "Microsoft Visual C++ 2005 SP1 Redistributable Package":
+http://www.microsoft.com/downloads/details.aspx?FamilyID=200B2FD9-AE1A-4A14-984D-389C36F85647&displaylang=en
+
+In order to replace dependency on msvcr80.dll with the dependency on msvcrt.dll the DLL currently
+included in this fragment was recompiled with Visual Studio 6.0 using wincrypt.h and crypt32.lib
+from the Visual Studio 2005.
+
diff --git a/bundles/org.eclipse.equinox.security.win32.x86/jnicrypt.dll b/bundles/org.eclipse.equinox.security.win32.x86/jnicrypt.dll
index bbfbafa0d..5391937e8 100644
--- a/bundles/org.eclipse.equinox.security.win32.x86/jnicrypt.dll
+++ b/bundles/org.eclipse.equinox.security.win32.x86/jnicrypt.dll
Binary files differ

Back to the top