Skip to content

Commit

Permalink
Win32: Added missing cURL dependencies
Browse files Browse the repository at this point in the history
ssleay32.dll and libeay32.dll were not included in the distribution package.
  • Loading branch information
skyjake committed Sep 25, 2011
1 parent 4f9eb06 commit d98c478
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 2 additions & 0 deletions distrib/win32/setup.iss.template
Expand Up @@ -70,6 +70,8 @@ Source: "smpeg.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Eng
Source: "lzss.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "curllib.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "openldap.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "ssleay32.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "libeay32.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "zlib1.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine
Source: "libpng13.dll"; DestDir: "{app}\bin"; Flags: ignoreversion; Components: Engine

Expand Down
4 changes: 3 additions & 1 deletion doomsday/dep_curl.pri
Expand Up @@ -11,7 +11,9 @@ win32 {
INSTALLS += curllibs
curllibs.files = \
$$CURL_DIR/curllib.dll \
$$CURL_DIR/openldap.dll
$$CURL_DIR/openldap.dll \
$$CURL_DIR/ssleay32.dll \
$$CURL_DIR/libeay32.dll
curllibs.path = $$DENG_WIN_PRODUCTS_DIR
}
else:macx {
Expand Down

0 comments on commit d98c478

Please sign in to comment.