From: Michael Tremer Date: Wed, 12 Feb 2025 11:45:19 +0000 (+0000) Subject: configure: No longer depend on pygmentize X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f9f337ffbbf193d0d230f628fc77ac7865d4324d;p=pbs.git configure: No longer depend on pygmentize Signed-off-by: Michael Tremer --- diff --git a/Makefile.am b/Makefile.am index b4762cba..c83d6636 100644 --- a/Makefile.am +++ b/Makefile.am @@ -444,10 +444,6 @@ UGLIFYJS_PROCESS = \ $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ $(SASS) --style compressed $< > $@ -src/static/css/highlight.css: Makefile - $(AM_V_GEN)$(MKDIR_P) $(dir $@) && \ - $(PYGMENTIZE) -S xcode -f html -a .highlight > $@ - %.min.js: %.js $(UGLIFYJS_PROCESS) diff --git a/configure.ac b/configure.ac index bf1efa3a..6c1d88dd 100644 --- a/configure.ac +++ b/configure.ac @@ -57,12 +57,6 @@ AC_PROG_SED # Python AM_PATH_PYTHON([3.9]) -# pygmentize (from pygments) -AC_CHECK_PROG(PYGMENTIZE, [pygmentize], [pygmentize]) -if test -z "${PYGMENTIZE}"; then - AC_MSG_ERROR([pygmentize is required]) -fi - # SASS AC_CHECK_PROGS(SASS, [sass node-sass]) if test -z "${SASS}"; then