Lines Matching refs:OPENSSLDIR
156 # Do not edit these manually. Use Configure with --prefix or --openssldir
158 INSTALLTOP={- # $prefix is used in the OPENSSLDIR perl snippet
162 OPENSSLDIR={- #
163 # The logic here is that if no --openssldir was given,
164 # OPENSSLDIR will get the value from $prefix plus "/ssl".
165 # If --openssldir was given and the value is an absolute
166 # path, OPENSSLDIR will get its value without change.
167 # If the value from --openssldir is a relative path,
168 # OPENSSLDIR will get $prefix with the --openssldir
172 our $openssldir =
173 $config{openssldir} ?
174 (file_name_is_absolute($config{openssldir}) ?
175 $config{openssldir}
176 : catdir($prefix, $config{openssldir}))
178 $openssldir -}
202 # Do not edit these manually. Use Configure with --prefix or --openssldir
204 INSTALLTOP_dev={- # $prefix is used in the OPENSSLDIR perl snippet
220 # The logic here is that if no --openssldir was given,
221 # OPENSSLDIR will get the value "$mingw_commonroot/SSL".
222 # If --openssldir was given and the value is an absolute
223 # path, OPENSSLDIR will get its value without change.
224 # If the value from --openssldir is a relative path,
225 # OPENSSLDIR will get $prefix with the --openssldir
229 our $openssldir =
230 $config{openssldir} ?
231 (File::Spec::Win32->file_name_is_absolute($config{openssldir}) ?
232 File::Spec::Win32->canonpath($config{openssldir})
233 : File::Spec::Win32->catdir($prefix, $config{openssldir}))
236 File::Spec::Win32->splitpath($openssldir, 1);
237 $openssldir =~ s|\\|/|g;
259 # to adapt INSTALLTOP, OPENSSLDIR and ENGINESDIR depending on if $(DESTDIR)
264 OPENSSLDIR=$(OPENSSLDIR_dir)
268 OPENSSLDIR=$(OPENSSLDIR_dev)$(OPENSSLDIR_dir)
367 'OPENSSLDIR="\"$(OPENSSLDIR)\""',
552 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/certs"
553 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/private"
554 @$(PERL) $(SRCDIR)/util/mkdir-p.pl "$(DESTDIR)$(OPENSSLDIR)/misc"
560 $(ECHO) "install $$x1 -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
561 cp $$x1 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
562 chmod 755 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new"; \
563 mv -f "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn.new" \
564 "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
568 $(ECHO) "copy $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
569 cp "$(DESTDIR)$(OPENSSLDIR)/misc/$$fn" "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
572 $(ECHO) "link $(DESTDIR)$(OPENSSLDIR)/misc/$$ln -> $(DESTDIR)$(OPENSSLDIR)/misc/$$fn"; \
573 ln -sf $$fn "$(DESTDIR)$(OPENSSLDIR)/misc/$$ln"; \
577 @$(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
578 @cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
579 @chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new"
580 @mv -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.new" "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf.dist"
581 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf" ]; then \
582 $(ECHO) "install $(SRCDIR)/apps/openssl.cnf -> $(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
583 cp $(SRCDIR)/apps/openssl.cnf "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
584 chmod 644 "$(DESTDIR)$(OPENSSLDIR)/openssl.cnf"; \
586 @$(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
587 @cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
588 @chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new"
589 @mv -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.new" "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf.dist"
590 @if [ ! -f "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf" ]; then \
591 $(ECHO) "install $(SRCDIR)/apps/ct_log_list.cnf -> $(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
592 cp $(SRCDIR)/apps/ct_log_list.cnf "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \
593 chmod 644 "$(DESTDIR)$(OPENSSLDIR)/ct_log_list.cnf"; \