Commit 39b03600 authored by valenok's avatar valenok

fixed installer - no openssl libs

parent 4f1c76cf
...@@ -51,20 +51,17 @@ solaris: ...@@ -51,20 +51,17 @@ solaris:
# o Set VC variable below to where VS 6.0 is installed on your system # o Set VC variable below to where VS 6.0 is installed on your system
# o Run "PATH_TO_VC6\bin\nmake windows" # o Run "PATH_TO_VC6\bin\nmake windows"
VC= q:\vc6 VC= z:
#DBG= /Zi /DDEBUG /Od /DDEBUG #DBG= /Zi /DDEBUG /Od /DDEBUG
DBG= /DNDEBUG /Os DBG= /DNDEBUG /Os
CL= $(VC)\bin\cl.exe /MD /TC /nologo /W4 /c $(DBG) /I $(VC)/include SSL= y:\release\cyassl.lib crypt32.lib advapi32.lib
LINK= $(VC)\bin\link.exe /incremental:no /libpath:$(VC)\lib ws2_32.lib CL= cl /MD /TC /nologo $(DBG) /DNO_SSL_DL /I $(VC)\include
OUT= c:\out LINK= /link /incremental:no /libpath:$(VC)\lib ws2_32.lib $(SSL)
DLL= $(OUT)\_$(PROG).dll
EXE= $(OUT)\$(PROG).exe
windows: windows:
$(CL) main.c /Fd$(OUT)\main.pdb /Fo$(OUT)\main.obj $(CL) main.c mongoose.c $(LINK) /DLL /DEF:win32\dll.def \
$(CL) mongoose.c /Fd$(OUT)\mongoose.pdb /Fo$(OUT)\mongoose.obj /out:_$(PROG).dll
$(LINK) $(OUT)\mongoose.obj /DLL /DEF:win32\dll.def /out:$(DLL) $(CL) main.c mongoose.c $(LINK) /out:$(PROG).exe
$(LINK) $(OUT)\main.obj $(OUT)\mongoose.obj /out:$(EXE)
# Build for Windows under MinGW # Build for Windows under MinGW
#MINGWDBG= -DDEBUG -O0 #MINGWDBG= -DDEBUG -O0
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
!define MENUDIR "Mongoose web server" !define MENUDIR "Mongoose web server"
!define SVC "Mongoose ${VERSION}" !define SVC "Mongoose ${VERSION}"
OutFile c:\mongoose-${VERSION}.install.exe OutFile mongoose-${VERSION}.install.exe
Name "Mongoose ${VERSION}" Name "Mongoose ${VERSION}"
InstallDir C:\mongoose-${VERSION} InstallDir C:\mongoose-${VERSION}
...@@ -25,8 +25,7 @@ Section "Mongoose files (required)" ...@@ -25,8 +25,7 @@ Section "Mongoose files (required)"
SectionEnd SectionEnd
Section "SSL files" Section "SSL files"
File ssleay32.dll SectionIn RO
File libeay32.dll
File ssl_cert.pem File ssl_cert.pem
# Following lines add full path to the certificate file in the mongoose.conf # Following lines add full path to the certificate file in the mongoose.conf
......
...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
document_root c:\ document_root c:\
# Placeholder for ssl_certificate
listening_ports 80,443s listening_ports 80,443s
access_log_file c:\mongoose_access_log.txt access_log_file c:\mongoose_access_log.txt
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment