Juergen Moellenhoff <[EMAIL PROTECTED]>:
> is there a Perl-Script (or whatever script) available which makes it
> easier to modify the #include path inside the .h files? For example,
> I would like to change the path from #include <openssl/bn.h> to
> #include "bn.h".
Why whould you need a perl script to do that? It's easily done with
sed; or, if it has to be perl, with something like
$ perl -p -e 's|<openssl/(.*)>|"$1"|'
through which you can pipe individual files; build a simple shell for
loop around this, and you're done.
______________________________________________________________________
OpenSSL Project http://www.openssl.org
Development Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]