]> git.pld-linux.org Git - packages/openssl.git/blob - openssl-man-namespace.patch
- up to 1.0.2
[packages/openssl.git] / openssl-man-namespace.patch
1 --- openssl-1.0.0/Makefile.org.orig     2010-04-10 11:05:35.900993086 +0200
2 +++ openssl-1.0.0/Makefile.org  2010-04-10 11:16:15.052993924 +0200
3 @@ -610,7 +610,7 @@
4                         --release=$(VERSION) `basename $$i`") \
5                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
6                 $(PERL) util/extract-names.pl < $$i | \
7 -                       (grep -v $$filecase "^$$fn\$$"; true) | \
8 +                       (grep -v $$filecase "^$${fn#openssl_}\$$"; true) | \
9                         (grep -v "[     ]"; true) | \
10                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
11                          while read n; do \
12 @@ -627,11 +627,11 @@
13                         --release=$(VERSION) `basename $$i`") \
14                         >  $(INSTALL_PREFIX)$(MANDIR)/man$$sec/$$fn.$${sec}$(MANSUFFIX); \
15                 $(PERL) util/extract-names.pl < $$i | \
16 -                       (grep -v $$filecase "^$$fn\$$"; true) | \
17 +                       (grep -v -E $$filecase "^$${fn#openssl_}\$$"; true) | \
18                         (grep -v "[     ]"; true) | \
19                         (cd $(INSTALL_PREFIX)$(MANDIR)/man$$sec/; \
20                          while read n; do \
21 -                               PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) "$$n".$${sec}$(MANSUFFIX); \
22 +                               PLATFORM=$(PLATFORM) $$here/util/point.sh $$fn.$${sec}$(MANSUFFIX) openssl_"$$n".$${sec}$(MANSUFFIX); \
23                          done); \
24         done
25  
26 --- openssl-1.0.0/util/point.sh.orig    2009-04-06 16:25:02.000000000 +0200
27 +++ openssl-1.0.0/util/point.sh 2010-04-10 11:17:19.616991410 +0200
28 @@ -1,7 +1,9 @@
29  #!/bin/sh
30  
31  rm -f "$2"
32 -if test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
33 +if true; then
34 +    echo ".so $1" > "$2"
35 +elif test "$OSTYPE" = msdosdjgpp || test "x$PLATFORM" = xmingw ; then
36      cp "$1" "$2"
37  else
38      ln -s "$1" "$2"
This page took 0.05721 seconds and 3 git commands to generate.