From e72a1937d1a13e87074e4584f012f13e03fc1d64 Mon Sep 17 00:00:00 2001 From: Per Allansson Date: Mon, 31 Aug 2015 23:03:58 +0200 Subject: [PATCH] fixed Windows / Cygwin / MinGW compile --- osslsigncode.c | 29 ++++++++++++++++++++++++----- 1 file changed, 24 insertions(+), 5 deletions(-) diff --git a/osslsigncode.c b/osslsigncode.c index a1878b0..32e37c8 100644 --- a/osslsigncode.c +++ b/osslsigncode.c @@ -1,7 +1,7 @@ /* OpenSSL based Authenticode signing for PE/MSI/Java CAB files. - Copyright (C) 2005-2014 Per Allansson + Copyright (C) 2005-2015 Per Allansson This program is free software: you can redistribute it and/or modify @@ -61,23 +61,29 @@ static const char *rcsid = "$Id: osslsigncode.c,v 1.7.1 2014/07/11 14:14:14 mfiv */ #ifdef HAVE_CONFIG_H -#include +#include "config.h" #endif #ifdef HAVE_WINDOWS_H #define NOCRYPT +#define WIN32_LEAN_AND_MEAN #include +typedef unsigned char u_char; #endif #include #include +#ifndef _WIN32 #include +#endif #include #include #include #include #include #include + +#ifndef _WIN32 #ifdef HAVE_SYS_MMAN_H #include #endif @@ -85,6 +91,7 @@ static const char *rcsid = "$Id: osslsigncode.c,v 1.7.1 2014/07/11 14:14:14 mfiv #ifdef HAVE_TERMIOS_H #include #endif +#endif #ifdef WITH_GSF #include @@ -110,6 +117,11 @@ static const char *rcsid = "$Id: osslsigncode.c,v 1.7.1 2014/07/11 14:14:14 mfiv #endif #ifdef ENABLE_CURL +#ifdef __CYGWIN__ +#ifndef SOCKET +#define SOCKET UINT_PTR +#endif +#endif #include #define MAX_TS_SERVERS 256 @@ -2289,8 +2301,15 @@ static STACK_OF(X509) *PEM_read_certs(BIO *bin, char *certpass) static off_t get_file_size(const char *infile) { + int ret; +#ifdef _WIN32 + struct _stat st; + ret = _stat(infile, &st); +#else struct stat st; - if (stat(infile, &st)) + ret = stat(infile, &st); +#endif + if (ret) { fprintf(stderr, "Failed to open file: %s\n", infile); return 0; @@ -2631,7 +2650,7 @@ int main(int argc, char **argv) int passfd = open(readpass, O_RDONLY); if (passfd < 0) DO_EXIT_1("Failed to open password file: %s\n", readpass); - ssize_t passlen = read(passfd, passbuf, sizeof(passbuf)-1); + int passlen = read(passfd, passbuf, sizeof(passbuf)-1); close(passfd); if (passlen <= 0) DO_EXIT_1("Failed to read password from file: %s\n", readpass); @@ -3100,7 +3119,7 @@ int main(int argc, char **argv) } else if (type == FILE_TYPE_MSI) { #ifdef WITH_GSF - const unsigned char *p = insigdata; + const unsigned char *p = (unsigned char*)insigdata; sig = d2i_PKCS7(NULL, &p, sigfilesize); #else DO_EXIT_1("libgsf is not available, msi support is disabled: %s\n", infile);