Re: [openssl-users] NMAKE error

2017-05-01 Thread Ken Goldman

On 5/1/2017 12:00 PM, Jordan Brown wrote:

On 5/1/2017 8:53 AM, James Condren wrote:


Thanks for the prompt response.  Just a little background:  I am
trying to install OpenSSL on a Windows PC so I can view a server cert.



It might be simpler to install cygwin and an already-built OpenSSL.


If installing prebuilt binaries is possible, this is far easier than cygwin:

http://slproweb.com/products/Win32OpenSSL.html


--
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] NMAKE error

2017-05-01 Thread Jordan Brown
On 5/1/2017 8:53 AM, James Condren wrote:
>
> Thanks for the prompt response.  Just a little background:  I am
> trying to install OpenSSL on a Windows PC so I can view a server cert.
>

It might be simpler to install cygwin and an already-built OpenSSL.

http://cygwin.com/
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] NMAKE error

2017-05-01 Thread James Condren
Thanks for the prompt response.  Just a little background:  I am trying to 
install OpenSSL on a Windows PC so I can view a server cert.

I have verified that the file exists and is part of the source.  I set SRCDIR 
in makefile to "C:\Workspaces\ Harmony\openssl1" (it was set to ".") and by 
doing so, it got me past the issues I originally logged but now I am getting 
"NMAKE : fatal error U1073: don't know how to make '""'".

Not sure where the makefile is erroring out.  I tried to add console output to 
the makefile but it is erroring on the @echo lines.


-Original Message-
From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of 
Richard Levitte
Sent: Monday, May 1, 2017 11:58 AM
To: openssl-users@openssl.org
Subject: Re: [openssl-users] NMAKE error

Can you verify that crypto\include\internal\bn_conf.h.in exists?  It should, 
it's part of the source.  Can you check if there's a file with a similar name 
in crypto\include\internal?

Cheers,
Richard ( am wondering if there are tar implementations that screw up file name 
with more than one period... )


In message 
<bn6pr17mb1233a4f4fcd18348875fd668d1...@bn6pr17mb1233.namprd17.prod.outlook.com>
 on Mon, 1 May 2017 15:02:41 +, James Condren <jcond...@hcpci.com> said:

jcondren> Getting the following error when attempting to make:
jcondren> 
jcondren> NMAKE : fatal error U1073: don't know how to make 
jcondren> '"crypto\include\internal\bn_conf.h.in"'
jcondren> 
jcondren> Stop.
jcondren> 
jcondren> Here¢s the lines from the makefile that are creating the error:
jcondren> 
jcondren> crypto\include\internal\bn_conf.h:
jcondren> "crypto\include\internal\bn_conf.h.in" "configdata.pm"
jcondren> 
jcondren> "$(PERL)" "-I$(BLDDIR)" -Mconfigdata "util\dofile.pl" \
jcondren> 
jcondren> "-omakefile" "crypto\include\internal\bn_conf.h.in" > $@
jcondren> 
jcondren> If I remove '"crypto\include\internal\bn_conf.h.in"', it then 
jcondren> gives me the following error:
jcondren> 
jcondren> NMAKE : fatal error U1073: don't know how to make '".\Configure"'
jcondren> 
jcondren> Stop.
jcondren> 
--
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] NMAKE error

2017-05-01 Thread Richard Levitte
Can you verify that crypto\include\internal\bn_conf.h.in exists?  It
should, it's part of the source.  Can you check if there's a file with
a similar name in crypto\include\internal?

Cheers,
Richard ( am wondering if there are tar implementations that screw up
file name with more than one period... )


In message 

 on Mon, 1 May 2017 15:02:41 +, James Condren  said:

jcondren> Getting the following error when attempting to make:
jcondren> 
jcondren> NMAKE : fatal error U1073: don't know how to make
jcondren> '"crypto\include\internal\bn_conf.h.in"'
jcondren> 
jcondren> Stop.
jcondren> 
jcondren> Here’s the lines from the makefile that are creating the error:
jcondren> 
jcondren> crypto\include\internal\bn_conf.h:
jcondren> "crypto\include\internal\bn_conf.h.in" "configdata.pm"
jcondren> 
jcondren> "$(PERL)" "-I$(BLDDIR)" -Mconfigdata "util\dofile.pl" \
jcondren> 
jcondren> "-omakefile" "crypto\include\internal\bn_conf.h.in" > $@
jcondren> 
jcondren> If I remove '"crypto\include\internal\bn_conf.h.in"', it then gives me
jcondren> the following error:
jcondren> 
jcondren> NMAKE : fatal error U1073: don't know how to make '".\Configure"'
jcondren> 
jcondren> Stop.
jcondren> 
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] NMAKE error

2017-05-01 Thread James Condren
Thanks for the prompt response.  Just a little background:  I am trying to 
install OpenSSL on a Windows PC so I can view a server cert.

I downloaded the latest openssl version from github.

Here are the steps I performed so far:

  1.  Downloaded latest version of openssl from git to 
C:\Workspaces\Harmony\openssl1
  2.  Downloaded NASM
  3.  Added Test::More and Text::Template perl modules to Perl location
  4.  SET PATH=%PATH%;C:\Workspaces\Harmony\openssl1
  5.  Executed perl Configure VC-WIN64A (got makefile)
  6.  Set SRCDIR in makefile to "C:\Workspaces\ Harmony\openssl1"

Doing step #6 got me past the issues I originally logged but now I am getting 
"NMAKE : fatal error U1073: don't know how to make '""'".

Not sure where the makefile is erroring out.  I tried to add console output to 
the makefile but it is erroring on the @echo lines.


From: openssl-users [mailto:openssl-users-boun...@openssl.org] On Behalf Of 
Benjamin Kaduk via openssl-users
Sent: Monday, May 1, 2017 11:38 AM
To: openssl-users@openssl.org
Subject: Re: [openssl-users] NMAKE error

On 05/01/2017 10:02 AM, James Condren wrote:

Getting the following error when attempting to make:
NMAKE : fatal error U1073: don't know how to make 
'"crypto\include\internal\bn_conf.h.in"'
Stop.

Here's the lines from the makefile that are creating the error:
crypto\include\internal\bn_conf.h: "crypto\include\internal\bn_conf.h.in" 
"configdata.pm"
   "$(PERL)" "-I$(BLDDIR)" -Mconfigdata "util\dofile.pl" \
   "-omakefile" "crypto\include\internal\bn_conf.h.in" > $@


If I remove '"crypto\include\internal\bn_conf.h.in"', it then gives me the 
following error:
NMAKE : fatal error U1073: don't know how to make '".\Configure"'
Stop.



What version of openssl?  What steps did you take prior to running nmake?

-Ben
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


Re: [openssl-users] NMAKE error

2017-05-01 Thread Benjamin Kaduk via openssl-users
On 05/01/2017 10:02 AM, James Condren wrote:
>
> Getting the following error when attempting to make:
>
> NMAKE : fatal error U1073: don't know how to make
> '"crypto\include\internal\bn_conf.h.in"'
>
> Stop.
>
>  
>
> Here’s the lines from the makefile that are creating the error:
>
> crypto\include\internal\bn_conf.h:
> "crypto\include\internal\bn_conf.h.in" "configdata.pm"
>
>"$(PERL)" "-I$(BLDDIR)" -Mconfigdata "util\dofile.pl" \
>
>"-omakefile" "crypto\include\internal\bn_conf.h.in"
> > $@
>
>  
>
>  
>
> If I remove '"crypto\include\internal\bn_conf.h.in"', it then gives me
> the following error:
>
> NMAKE : fatal error U1073: don't know how to make '".\Configure"'
>
> Stop.
>
>


What version of openssl?  What steps did you take prior to running nmake?

-Ben
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users


[openssl-users] NMAKE error

2017-05-01 Thread James Condren
Getting the following error when attempting to make:
NMAKE : fatal error U1073: don't know how to make 
'"crypto\include\internal\bn_conf.h.in"'
Stop.

Here's the lines from the makefile that are creating the error:
crypto\include\internal\bn_conf.h: "crypto\include\internal\bn_conf.h.in" 
"configdata.pm"
   "$(PERL)" "-I$(BLDDIR)" -Mconfigdata "util\dofile.pl" \
   "-omakefile" "crypto\include\internal\bn_conf.h.in" > $@


If I remove '"crypto\include\internal\bn_conf.h.in"', it then gives me the 
following error:
NMAKE : fatal error U1073: don't know how to make '".\Configure"'
Stop.
-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users