problem with self-signed crt in Apache

2012-12-31 Thread Robert Moskowitz
Hello, I am running on Centos 6.3 where it looks like Openssl is 1.0.0-25 I am creating my cert with: openssl req -new -outform PEM -out certs/test.htt-consult.com.crt -newkey rsa:2048 -nodes -keyout private/test.htt-consult.com.key -keyform PEM -days 3650 -x509 This prompts me for the cont

Re: Using OpenSSL in a makefile?

2012-12-31 Thread Jeffrey Walton
On Mon, Dec 31, 2012 at 1:58 PM, Walter H. wrote: > Hello, > > why does the following makefile not succeed? > > ... > I have isolated the problem: > > openssl crl -noout -text -in $< >$@ > exits with exit code 1 instead of 0, why? > > openssl crl -noout -text -in $< -out $@ > does the same ..., ex

Using OpenSSL in a makefile?

2012-12-31 Thread Walter H.
Hello, why does the following makefile not succeed? all: pckdCRL.zip .SUFFIXES: .SUFFIXES: .text .pem .crl .pem.crl: openssl crl -in $< -outform der -out $@ .pem.text: openssl crl -noout -text -in $< >$@ pckdCRL.zip: rootCRL.pem rootCRL.crl rootCRL.text zip -9 -j pckdCRL.zip ro

Re: Conditionally Patching output of Makefile from Configure?

2012-12-31 Thread Jeffrey Walton
On Mon, Dec 31, 2012 at 8:39 AM, Jakob Bohm wrote: > On 12/31/2012 12:39 PM, Jeffrey Walton wrote: >> >> On Sun, Dec 30, 2012 at 3:20 PM, wrote: >>> >>> On 30-12-2012 21:01, Jeffrey Walton wrote: ... >> >> Configure should test `makeddepend`. If 'makedepend' succeeds, do >> nothing. If

Re: Conditionally Patching output of Makefile from Configure?

2012-12-31 Thread Jakob Bohm
On 12/31/2012 12:39 PM, Jeffrey Walton wrote: On Sun, Dec 30, 2012 at 3:20 PM, wrote: On 30-12-2012 21:01, Jeffrey Walton wrote: Hi All, While working on Apple with Mac OS X and iOS, I found I needed to patch OpenSSL 1.0.1c's Makefile. Makefile.org has the following line, and it was copied

Re: Conditionally Patching output of Makefile from Configure?

2012-12-31 Thread Jeffrey Walton
On Sun, Dec 30, 2012 at 3:20 PM, wrote: > On 30-12-2012 21:01, Jeffrey Walton wrote: >> >> Hi All, >> >> While working on Apple with Mac OS X and iOS, I found I needed to >> patch OpenSSL 1.0.1c's Makefile. >> >> Makefile.org has the following line, and it was copied directly into >> Makefile by