Re: Darwin builds

2001-07-25 Thread Marko Asplund
On Wed, 25 Jul 2001, CJ Holmes wrote: > ... > prebind does a neat trick where is pre-resolves the location of all the > symbols needed in the dynamic libraries used by a binary. This speeds up > launch time dramatically. If you app is pre-bound to its dynamic libraries, > and they are all pre-b

Re: Darwin builds

2001-07-25 Thread CJ Holmes
on 7/25/01 3:59 AM, Marko Asplund at [EMAIL PROTECTED] wrote: >> ... >> Now you can run config from the command line: >> >> ./config shared threads -D_REENTRANT -DUSE_TOD -DDARWIN -O3 > > why do you need to add the compiler flags to the command line? you can do > it in config and Configure. I

Re: Darwin builds

2001-07-24 Thread CJ Holmes
on 7/24/01 12:16 PM, Darrell S. Begay at [EMAIL PROTECTED] wrote: > please post your document, i would like to see if i missed anything. ( This is what is checked into our source control, so we remember how to do this for each revision. It is only about a 10-20 minute operation. Apple's libope

Re: Darwin builds

2001-07-24 Thread hunter
it finally built, started ALL over again as a mere mortal, removing the old libs from /usr/lib and doing all the aforementioned steps, and it DID make and install. WHEW...now to complete mod_ssl, which is what this entire exercise was all about!! THANKS for ALL your help, Mark, i DO appreciate it

RE: Darwin builds

2001-07-24 Thread Darrell S. Begay
please post your document, i would like to see if i missed anything. -darrell -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of CJ Holmes Sent: Tuesday, July 24, 2001 11:12 AM To: [EMAIL PROTECTED] Subject: Re: Darwin builds I actually have a document

Re: Darwin builds

2001-07-24 Thread CJ Holmes
I actually have a document where I explain how I go about porting OpenSSL and making shared libraries from it. There are only a very few changes to the source code and a few lines added to the configure script. I can post it, if anyone is interested. Maybe the development team will make the cha

Re: Darwin builds

2001-07-23 Thread Marko Asplund
On Mon, 23 Jul 2001, hunter wrote: > ... > [agmacosx:~/openssl-0.9.6b] root# ./Configure rhapsody-ppc-cc shared > Configuring for rhapsody-ppc-cc > IsWindows=0 > CC=cc > CFLAG =-O3 -DB_ENDIAN -DUSE_TOD -DPEDANTIC > EX_LIBS = > BN_ASM=bn_asm.o > DES_ENC =des

Re: Darwin builds

2001-07-23 Thread hunter
Did that, patched and ran with the following results: [agmacosx:~/openssl-0.9.6b] root# ./Configure rhapsody-ppc-cc shared Configuring for rhapsody-ppc-cc IsWindows=0 CC=cc CFLAG =-O3 -DB_ENDIAN -DUSE_TOD -DPEDANTIC EX_LIBS = BN_ASM=bn_asm.o DES_ENC =des_en

Re: Darwin builds

2001-07-23 Thread Marko Asplund
On Mon, 23 Jul 2001, hunter wrote: > no i have not, i took a previous suggestion and moved the libcryto amd > libssl out of /usr/lib but now i get: > > cc -o openssl -DMONOLITH -I../include -O3 -DB_ENDIAN openssl.o verify.o > asn1pars.o req.o dgst.o dh.o dhparam.o enc.o passwd.o gendh.o errstr.o

Re: Darwin builds

2001-07-23 Thread hunter
no i have not, i took a previous suggestion and moved the libcryto amd libssl out of /usr/lib but now i get: cc -o openssl -DMONOLITH -I../include -O3 -DB_ENDIAN openssl.o verify.o asn1pars.o req.o dgst.o dh.o dhparam.o enc.o passwd.o gendh.o errstr.o ca.o pkcs7.o crl2p7.o crl.o rsa.o rsautl.o ds

Re: Darwin builds

2001-07-22 Thread Marko Asplund
On Sun, 22 Jul 2001, hunter wrote: > i used the patch and ran and received the following: > > [agmacosx:~/openssl-engine-0.9.6b] root# ./Configure rhapsody-ppc-cc > shared > Configuring for rhapsody-ppc-cc > IsWindows=0 > CC=cc > CFLAG =-O3 -DB_ENDIAN -DUSE_TOD -DPEDANTIC > EX

Re: Darwin Builds

2001-07-22 Thread Marko Asplund
On Mon, 23 Jul 2001, hunter wrote: > ... > > cc -o openssl -DMONOLITH -I../include -O3 -DB_ENDIAN openssl.o verify.o > asn1pars.o req.o dgst.o dh.o dhparam.o enc.o passwd.o gendh.o errstr.o > ca.o pkcs7.o crl2p7.o crl.o rsa.o rsautl.o dsa.o dsaparam.o x509.o > genrsa.o gendsa.o s_server.o s_clie

Re: Darwin Builds

2001-07-22 Thread hunter
OK, i have a server running the following: Darwin agmacosx 1.3.7 Darwin Kernel Version 1.3.7: Sat Jun 9 11:12:48 PDT 2001; root:xnu/xnu-124.13.obj~1/RELEASE_PPC Power Macintosh powerpc (i.e. MacOSX 10.0.4) and have downloaded openssl-0.9.6b. I patched the Configure and Makefile.org as specifie

Re: Darwin builds

2001-07-22 Thread hunter
depend: @for i in $(DIRS) ;\ do \ if [ -d "$$i" ]; then \ (cd $$i && echo "making dependencies $$i..." && \ $(MAKE) SDIRS='${SDIRS}' DEPFLAG='${DEPFLAG}' depend ) || exit $ fi; \ done; line 367 is the if [ -d "$$i" ]; then \ line re