diff options
author | Michael Mair-Keimberger (asterix) <m.mairkeimberger@gmail.com> | 2016-07-03 19:27:38 +0200 |
---|---|---|
committer | Patrice Clement <monsieurp@gentoo.org> | 2016-07-07 07:18:59 +0000 |
commit | 06b52394003721e272e5488f32f64fdcd9d2500c (patch) | |
tree | 8fd09fa73f908e80640defadbc3715218ae2fe2f /app-doc/doxygen | |
parent | app-dicts/ipadic: remove unused patch (diff) | |
download | gentoo-06b52394003721e272e5488f32f64fdcd9d2500c.tar.gz gentoo-06b52394003721e272e5488f32f64fdcd9d2500c.tar.bz2 gentoo-06b52394003721e272e5488f32f64fdcd9d2500c.zip |
app-doc/doxygen: remove unused patches
Closes: https://github.com/gentoo/gentoo/pull/1826
Signed-off-by: Patrice Clement <monsieurp@gentoo.org>
Diffstat (limited to 'app-doc/doxygen')
-rw-r--r-- | app-doc/doxygen/files/doxygen-1.8.1-prefix-misc-alt.patch | 82 | ||||
-rw-r--r-- | app-doc/doxygen/files/doxygen-1.8.3.1-empty-line-sigsegv.patch | 20 |
2 files changed, 0 insertions, 102 deletions
diff --git a/app-doc/doxygen/files/doxygen-1.8.1-prefix-misc-alt.patch b/app-doc/doxygen/files/doxygen-1.8.1-prefix-misc-alt.patch deleted file mode 100644 index 0ecaf4db37b4..000000000000 --- a/app-doc/doxygen/files/doxygen-1.8.1-prefix-misc-alt.patch +++ /dev/null @@ -1,82 +0,0 @@ -* make sure we always look for tools in the path, no "do it yourself paths" - ---- a/configure -+++ b/configure -@@ -170,27 +170,15 @@ - ;; - Darwin:*) - f_platform=macosx-c++ -- if test "$f_insttool" = NO; then -- f_insttool=/usr/bin/install -- fi - ;; - FreeBSD:*) - f_platform=freebsd-g++ -- if test "$f_insttool" = NO; then -- f_insttool=/usr/bin/install -- fi - ;; - NetBSD:*) - f_platform=netbsd-g++ -- if test "$f_insttool" = NO; then -- f_insttool=/usr/bin/install -- fi - ;; - HP-UX:*) - f_platform=hpux-g++ -- if test "$f_insttool" = NO; then -- f_insttool=/usr/bin/install -- fi - ;; - IRIX64:*) - f_platform=irix-64 -@@ -221,9 +209,6 @@ - ;; - SunOS:5*) - f_platform=solaris-g++ -- if test "$f_insttool" = NO; then -- f_insttool=/usr/bin/install -- fi - ;; - ULTRIX:*) - f_platform=ultrix-g++ -@@ -323,8 +308,8 @@ - - echo -n " Checking for GNU install tool... " - if test "$f_insttool" = NO; then -- install_names="ginstall install" -- install_dirs="$bin_dirs /usr/bin /usr/local/bin /bin /sbin /usr/ucb" -+ install_names="install" -+ install_dirs="$bin_dirs" - install_prog=NO - install_found=NO - for i in $install_names; do -@@ -360,7 +345,7 @@ - - echo -n " Checking for dot (part of GraphViz)... " - if test "$f_dot" = NO; then -- dot_dirs="$bin_dirs /usr/bin /usr/local/bin /bin /sbin" -+ dot_dirs="$bin_dirs" - dot_prog=NO - for j in $dot_dirs; do - if test -x "$j/dot"; then -@@ -382,7 +367,7 @@ - echo -n " Checking for perl... " - if test "$f_perl" = NO; then - perl_names="perl perl5" -- perl_dirs="$bin_dirs /usr/bin /usr/local/bin /bin /sbin" -+ perl_dirs="$bin_dirs" - perl_prog=NO - perl_found=NO - for i in $perl_names; do -@@ -546,10 +531,6 @@ - cat >> .tmakeconfig <<EOF - TMAKE_LFLAGS += -non_shared - EOF -- elif test "$f_platform" = "solaris-cc"; then -- cat >> .tmakeconfig <<EOF -- TMAKE_LFLAGS += -Bstatic --EOF - elif test "$f_platform" = "hpux-cc"; then - cat >> .tmakeconfig <<EOF - TMAKE_LFLAGS += -noshared diff --git a/app-doc/doxygen/files/doxygen-1.8.3.1-empty-line-sigsegv.patch b/app-doc/doxygen/files/doxygen-1.8.3.1-empty-line-sigsegv.patch deleted file mode 100644 index 4b51ce95bc1a..000000000000 --- a/app-doc/doxygen/files/doxygen-1.8.3.1-empty-line-sigsegv.patch +++ /dev/null @@ -1,20 +0,0 @@ -removeEmptyLines() segfaults on empty string - -https://bugs.gentoo.org/show_bug.cgi?id=454348 -http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=676423 - -Patch written by Thibaut Paumard <paumard@users.sourceforge.net> ---- a/src/htmlgen.cpp -+++ b/src/htmlgen.cpp -@@ -1022,6 +1022,11 @@ - static QCString removeEmptyLines(const QCString &s) - { - BufStr out(s.length()+1); -+ if (s.length()==0) -+ { -+ out.addChar('\0'); -+ return out.data(); -+ } - char *p=s.data(); - if (p) - { |