configure.patch revision 2656
2656N/AThis patch makes two changes:
2656N/A
2656N/A1) Removes references to /usr/ucb/install which no longer exists in Solaris 12.
2656N/A2) Adjusts the set of standard locations that the erlang configure scripts
2656N/A uses to try to find SSL. Without this change, we see the following errors
2656N/A at pkglint time:
2656N/A ERROR userland.action001.3 bad RUNPATH, 'usr/lib/amd64/erlang/lib/crypto-2.2/priv/lib/crypto.so' includes '/opt/local/lib/64:/opt/local/lib'
2656N/A ERROR userland.action001.3 bad RUNPATH, 'usr/lib/erlang/lib/crypto-2.2/priv/lib/crypto.so' includes '/opt/local/lib'
2656N/A
2656N/A--- otp_src_R15B03/lib/erl_interface/configure.orig 2012-12-12 07:42:11.245364398 -0800
2656N/A+++ otp_src_R15B03/lib/erl_interface/configure 2012-12-12 07:42:31.268827476 -0800
2656N/A@@ -5212,16 +5212,6 @@
683N/A { (exit 1); exit 1; }; }
683N/A fi
683N/A
683N/A-case $host in
683N/A- *-*-solaris*|free_source)
683N/A- if test -x /usr/ucb/install; then
683N/A- INSTALL="/usr/ucb/install -c"
683N/A- fi
683N/A- ;;
683N/A- *)
683N/A- ;;
683N/A-esac
683N/A-
683N/A # Find a good install program. We prefer a C program (faster),
683N/A # so one script is as good as another. But avoid the broken or
683N/A # incompatible versions:
2656N/A--- otp_src_R15B03/erts/configure.orig 2012-12-12 07:41:37.651907946 -0800
2656N/A+++ otp_src_R15B03/erts/configure 2012-12-28 07:28:38.797816435 -0800
2656N/A@@ -6223,15 +6223,6 @@
2656N/A echo "$as_me: WARNING: No 'fop' command found: going to generate placeholder PDF files" >&2;}
2656N/A fi
683N/A
683N/A-case $host in
683N/A- *-*-solaris*|free_source)
683N/A- if test -x /usr/ucb/install; then
683N/A- INSTALL="/usr/ucb/install -c"
683N/A- fi
683N/A- ;;
683N/A- *)
683N/A- ;;
683N/A-esac
683N/A # Find a good install program. We prefer a C program (faster),
683N/A # so one script is as good as another. But avoid the broken or
683N/A # incompatible versions:
2656N/A@@ -36432,7 +36423,7 @@
2656N/A
2656N/A
2656N/A
2656N/A-std_ssl_locations="/usr/local /usr/sfw /usr /opt/local /usr/pkg /usr/local/openssl /usr/lib/openssl /usr/openssl /usr/local/ssl /usr/lib/ssl /usr/ssl"
2656N/A+std_ssl_locations="/usr"
2656N/A
2656N/A
2656N/A # Check whether --with-ssl-zlib or --without-ssl-zlib was given.