diff options
author | Marek Szuba <marecki@gentoo.org> | 2023-10-25 22:56:36 +0100 |
---|---|---|
committer | Marek Szuba <marecki@gentoo.org> | 2023-10-25 23:04:28 +0100 |
commit | f9c0cfde624dc27b32b3681e678fdf8f19af04aa (patch) | |
tree | dde174606884782f4673dae521aae4e2e71f2359 /net-analyzer/suricata/files | |
parent | sci-visualization/scidavis: fix compat with zlib-1.3-r1 (diff) | |
download | gentoo-f9c0cfde624dc27b32b3681e678fdf8f19af04aa.tar.gz gentoo-f9c0cfde624dc27b32b3681e678fdf8f19af04aa.tar.bz2 gentoo-f9c0cfde624dc27b32b3681e678fdf8f19af04aa.zip |
net-analyzer/suricata: add 7.0.2
Signed-off-by: Marek Szuba <marecki@gentoo.org>
Diffstat (limited to 'net-analyzer/suricata/files')
-rw-r--r-- | net-analyzer/suricata/files/suricata-7.0.2_configure-no-sphinx-pdflatex-automagic.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/net-analyzer/suricata/files/suricata-7.0.2_configure-no-sphinx-pdflatex-automagic.patch b/net-analyzer/suricata/files/suricata-7.0.2_configure-no-sphinx-pdflatex-automagic.patch new file mode 100644 index 000000000000..07fddac0a6d2 --- /dev/null +++ b/net-analyzer/suricata/files/suricata-7.0.2_configure-no-sphinx-pdflatex-automagic.patch @@ -0,0 +1,20 @@ +--- a/configure.ac ++++ b/configure.ac +@@ -2231,7 +2231,7 @@ + fi + + # sphinx-build for documentation, and also check for a new enough version +- AC_PATH_PROG([SPHINX_BUILD], [sphinx-build], [no]) ++ SPHINX_BUILD="no" + if test "$SPHINX_BUILD" != "no"; then + MIN_SPHINX_BUILD_VERSION="3.4.3" + sphinx_build_version=$($SPHINX_BUILD --version 2>&1 | cut -d' ' -f2-) +@@ -2257,7 +2257,7 @@ + AM_CONDITIONAL([HAVE_SURICATA_MAN], [test "x$have_suricata_man" = "xyes"]) + + # pdflatex for the pdf version of the user manual +- AC_PATH_PROG(HAVE_PDFLATEX, pdflatex, "no") ++ HAVE_PDFLATEX="no" + if test "$HAVE_PDFLATEX" = "no"; then + enable_pdflatex=no + fi |