Re: [Patch]: Issues with arch:opt:opt:opt pattern replacement

2007-01-29 Thread William A. Rowe, Jr.
Gentle ping... is there any desire to implement this sort of a solution? Any feedback on the suggested syntax? I'm happy to forward port this now to trunk for folks to begin experimenting with it, if there is interest. William A. Rowe, Jr. wrote: Patch attached against 0.9.7, out of cycles to

[Patch]: Issues with arch:opt:opt:opt pattern replacement

2007-01-18 Thread William A. Rowe, Jr.
Patch attached against 0.9.7, out of cycles to try applying this to HEAD at this exact moment. The patch does one other small conservation, when it splits options it leaves one lingering ::: value beyond the last used element rather than several dozen unused array values. Again, comments and

Issues with arch:opt:opt:opt pattern replacement

2007-01-17 Thread William A. Rowe, Jr.
Rather than perpetually patch Configure, I'm trying to determine if there is a way to substitute just one of the options. E.g., the patterns for linux are fine, but in order to avoid confusing the environment, I'd like to override cc with gcc -m32 or gcc33 and otherwise accept openssl's other opt

Re: Issues with arch:opt:opt:opt pattern replacement

2007-01-17 Thread Richard Salz
E.g., the patterns for linux are fine, but in order to avoid confusing the environment, I'd like to override cc with gcc -m32 or gcc33 and otherwise accept openssl's other opt patterns verbatim. something like this, around line 943: my $cc = $ENV{'CC'} || $fields[$idx_cc]; So you can

Re: Issues with arch:opt:opt:opt pattern replacement

2007-01-17 Thread William A. Rowe, Jr.
Richard Salz wrote: E.g., the patterns for linux are fine, but in order to avoid confusing the environment, I'd like to override cc with gcc -m32 or gcc33 and otherwise accept openssl's other opt patterns verbatim. something like this, around line 943: my $cc = $ENV{'CC'} ||