Hi Mark, > I doubled checked this and re-installed all the "use" modules in Makefile.PL > and still get the same. If you do use "OPENSSL_PREFIX=/usr/local" are you > sure it is the parameter that is working as this directory is hardcoded into > the script as a default search location. When I edit the script to include > my 098 openssl location in the default search path the script runs fine but > reports the following warning: > 'OPENSSL_PREFIX' is not a known MakeMaker parameter name. > which would also suggest that the parameter is not being parsed.
Which shell do you use? If you don't want to export OPENSSL_PREFIX you can say something like: 1) in csh: (setenv OPENSSL_PREFIX /usr && perl Makefile.PL) 2) in bash: OPENSSL_PREFIX=/usr && perl Makefile.PL Should help. Best regards, Julia. ------------------------------------------------------------------------- This SF.net email is sponsored by DB2 Express Download DB2 Express C - the FREE version of DB2 express and take control of your XML. No limits. Just data. Click to get it now. http://sourceforge.net/powerbar/db2/ _______________________________________________ OpenXPKI-users mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/openxpki-users
