muquit / mailsend

A program to send mail via SMTP from command line
Other
296 stars 68 forks source link

not compile under windows #11

Closed muquit closed 10 years ago

muquit commented 10 years ago

From nochesde...@gmail.com on June 11, 2013 19:42:46

What steps will reproduce the problem? 1. not compile under windows What is the expected output? What do you see instead? I can not compile What version of the product are you using? On what operating system? mailsend-1.17b11 - Windows 7 Please provide any additional information below. Console:

C:\Users\Daniel\Desktop\mailsend-1.17b11>"C:\Program Files\Microsoft Visual Stud io 10.0\VC\bin\nmake.exe" -f Makefile.nmake clean

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    del main.obj smtp.obj utils.obj setget.obj mailsend.exe

No se pudo encontrar C:\Users\Daniel\Desktop\mailsend-1.17b11\main.obj cd libs\libsll "C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\nmake.exe" -f Make file.nmake clean

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    del sll.obj sll.lib *.bak

No se pudo encontrar C:\Users\Daniel\Desktop\mailsend-1.17b11\libs\libsll\sll.ob j cd .... cd libs\libmsock "C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\nmake.exe" -f Make file.nmake clean

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    del msock.obj msock.lib *.bak

No se pudo encontrar C:\Users\Daniel\Desktop\mailsend-1.17b11\libs\libmsock\msoc k.obj cd .... cd libs\libmutils "C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\nmake.exe" -f Make file.nmake clean

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    del string.obj mutils.obj mutils_mime.obj mutils_error.obj mutils_blob.o

bj mutils_temp.obj mutils_time.obj mutils.lib *.bak No se pudo encontrar C:\Users\Daniel\Desktop\mailsend-1.17b11\libs\libmutils\str ing.obj cd ....

C:\Users\Daniel\Desktop\mailsend-1.17b11>"C:\Program Files\Microsoft Visual Stud io 10.0\VC\bin\nmake.exe" -f Makefile.nmake

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    cd libs\libsll
    "C:\Program Files\Microsoft Visual Studio 10.0\VC\bin\nmake.exe" -f Make

file.nmake

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    cl /DWINNT /DWIN32 /DHAVE_MALLOC_H /I. /Ox /W3 /wd4996 /nologo /c sll.c

"cl" no se reconoce como un comando interno o externo, programa o archivo por lotes ejecutable. NMAKE : fatal error U1077: 'cl' : return code '0x1' Stop. NMAKE : fatal error U1077: '"C:\Program Files\Microsoft Visual Studio 10.0\VC\bi n\nmake.exe"' : return code '0x2' Stop.

C:\Users\Daniel\Desktop\mailsend-1.17b11>

Original issue: http://code.google.com/p/mailsend/issues/detail?id=11

muquit commented 10 years ago

From muq...@gmail.com on June 11, 2013 17:03:42

Make sure to run vsvars32.bat first. It's usually in %VS100COMNTOOLS%vsvars32.bat

Thanks.

muquit commented 10 years ago

From nochesde...@gmail.com on June 11, 2013 17:58:47

Thanks,

expresses the following errors:

nmake -f Makefile.nmake

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    cd libs\libsll
    nmake -f Makefile.nmake

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    cl /DWINNT /DWIN32 /DHAVE_MALLOC_H /I. /Ox /W3 /wd4996 /nologo /c sll.c

sll.c c:\users\daniel\desktop\nueva carpeta (7)\mailsend-1.17b11\mailsend-1.17b11\libs \libsll\sll.h(4) : fatal error C1083: Cannot open include file: 'stdio.h': No su ch file or directory NMAKE : fatal error U1077: 'C:\Windows\system32\cl.EXE' : return code '0x2' Stop. NMAKE : fatal error U1077: 'C:\Windows\system32\nmake.EXE' : return code '0x2' Stop.

muquit commented 10 years ago

From nochesde...@gmail.com on June 11, 2013 18:20:01

Thanks,

expresses the following errors:

nmake -f Makefile.nmake

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    cd libs\libsll
    nmake -f Makefile.nmake

Microsoft (R) Program Maintenance Utility Version 10.00.30319.01 Copyright (C) Microsoft Corporation. All rights reserved.

    cl /DWINNT /DWIN32 /DHAVE_MALLOC_H /I. /Ox /W3 /wd4996 /nologo /c sll.c

sll.c c:\users\daniel\desktop\nueva carpeta (7)\mailsend-1.17b11\mailsend-1.17b11\libs \libsll\sll.h(4) : fatal error C1083: Cannot open include file: 'stdio.h': No su ch file or directory NMAKE : fatal error U1077: 'C:\Windows\system32\cl.EXE' : return code '0x2' Stop. NMAKE : fatal error U1077: 'C:\Windows\system32\nmake.EXE' : return code '0x2' Stop.

muquit commented 10 years ago

From muq...@gmail.com on June 12, 2013 07:56:15

You should try to compile a simple program first to make sure your Visual Studio is installed properly. Create a file hello.c with:

/****/

include

int main(int argc, char *argv[]) { (void) fprintf(stdout, "hello world!\n"); (void) fflush(stdout);

return(0);

} /****/

cl hello.c

If your compiler is installed correctly, it should create hello.exe

Thanks.

Status: Done