]> git.ipfire.org Git - pbs.git/commitdiff
configure: No longer depend on pygmentize
authorMichael Tremer <michael.tremer@ipfire.org>
Wed, 12 Feb 2025 11:45:19 +0000 (11:45 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Wed, 12 Feb 2025 11:45:19 +0000 (11:45 +0000)
Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
Makefile.am
configure.ac

index b4762cba266bd64d5c78b875e7890672fbcf07a9..c83d66369ce7bf521a25c69bfe1496d084139bbb 100644 (file)
@@ -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)
 
index bf1efa3ac8cadb32546f0c726d728029cffc2628..6c1d88dde9d2967fd47a83d8e298ef8e97348da5 100644 (file)
@@ -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