Skip to content

Commit

Permalink
OS-998 No longer able to ssh noninteractively
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnSonnenschein committed Feb 27, 2012
1 parent 070825b commit 4330073
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 32 deletions.
18 changes: 8 additions & 10 deletions openssl/Makefile
Expand Up @@ -39,27 +39,27 @@ CONFIG_STATUS = config.status
all: all32 all64

all32: $(VER)/$(CONFIG_STATUS)
cd $(VER); env - PATH=$(PATH) \
cd $(VER); env - PATH=/opt/SUNWspro/bin:$(PATH) \
"CFLAGS=$(CFLAGS)" \
gmake
gmake

all64: $(VER64)/$(CONFIG_STATUS)
cd $(VER64); env - PATH=$(PATH) \
cd $(VER64); env - PATH=/opt/SUNWspro/bin:$(PATH) \
"CFLAGS=$(CFLAGS)" \
gmake
gmake

# opensslconf.h is patched to ensure suitability for both 64bit and 32bit
$(VER)/$(CONFIG_STATUS): $(VER)/configure
cd $(VER); env - PATH=$(PATH) \
cd $(VER); env - PATH=/opt/SUNWspro/bin:$(PATH) \
ksh93 ./Configure $(CONFIGURE_OPTIONS)
gpatch -p1 $(VER)/crypto/opensslconf.h opensslconf.patch
cd $(VER); gmake depend
cd $(VER); gmake depend
touch $@

$(VER64)/$(CONFIG_STATUS): $(VER)/configure
cd $(VER64); env - PATH=$(PATH) \
cd $(VER64); env - PATH=/opt/SUNWspro/bin:$(PATH) \
ksh93 ./Configure $(CONFIGURE_OPTIONS64)
cd $(VER64); gmake depend
cd $(VER64); gmake depend
touch $@

install: all install32 install64
Expand All @@ -73,12 +73,10 @@ install64: all64

$(VER)/configure: $(VER).tar.gz
gzip -dc $(VER).tar.gz | tar xopf -
gpatch -p1 $(VER)/Configure configure.patch
mv $(VER) $(VER64)
touch $(VER64)/configure
gzip -dc $(VER).tar.gz | tar xopf -
touch $(VER)/configure
gpatch -p1 $(VER)/Configure configure.patch

clean:
-rm -rf $(VER) $(VER64)
4 changes: 2 additions & 2 deletions openssl/Makefile.com
Expand Up @@ -65,12 +65,12 @@ GENERIC_CONFIGURE_OPTIONS = \
threads \
shared

CONFIGURE_OPTIONS64_i386 = solaris64-x86_64-gcc
CONFIGURE_OPTIONS64_i386 = solaris64-x86_64-cc-sunw
CONFIGURE_OPTIONS64 = $(GENERIC_CONFIGURE_OPTIONS) \
$(CONFIGURE_OPTIONS64_i386) \
--pk11-libname=$(PKCS11_LIB64)

CONFIGURE_OPTIONS_i386 = solaris-x86-gcc
CONFIGURE_OPTIONS_i386 = solaris-x86-cc-sunw
CONFIGURE_OPTIONS = $(GENERIC_CONFIGURE_OPTIONS) \
$(CONFIGURE_OPTIONS_i386) \
--pk11-libname=$(PKCS11_LIB)
Expand Down
20 changes: 0 additions & 20 deletions openssl/configure.patch

This file was deleted.

0 comments on commit 4330073

Please sign in to comment.