Skip to content

Commit 89d4e8d

Browse files
committed
Merge pull request #9 from s-ludwig/master
Add DUB package description
2 parents 69be500 + 0609d4f commit 89d4e8d

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

deimos/openssl/bio.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ import core.stdc.stdio;
6969

7070
version (Posix) {
7171
import core.sys.posix.netdb;
72-
} else version (Win32) {
72+
} else version (Windows) {
7373
import std.c.windows.winsock;
7474
} else version (Win64) {
7575
import std.c.windows.winsock;

deimos/openssl/dtls1.d

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public import deimos.openssl.pqueue;
7171
// #include <resource.h>
7272
// #include <sys/timeb.h>
7373
// #endif
74-
version (Win32) {
74+
version (Windows) {
7575
/* Needed for timeval */
7676
import std.c.windows.winsock;
7777
// #elif defined(OPENSSL_SYS_NETWARE) && !defined(_WINSOCK2API_)

package.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"name": "openssl",
3+
"description": "Deimos bindings for the OpenSSL cryptographic library",
4+
"homepage": "http://www.openssl.org/",
5+
"importPaths": ["."],
6+
"targetType": "sourceLibrary",
7+
"libs-posix" : ["ssl", "crypto"]
8+
}

0 commit comments

Comments
 (0)