diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2023-10-17 16:22:44 -0700 |
---|---|---|
committer | Konstantin Pavlov <pavlov.konstantin@gmail.com> | 2024-02-09 14:31:36 -0800 |
commit | 3a2687bb714226ab13111cac2149afc660fa70e7 (patch) | |
tree | f75f4ee903ea26127317c434936be8bf2e7d239e /pkg/deb/Makefile | |
parent | 9e986704480de0d6b74dafa5ebcf775eaa88333a (diff) | |
download | unit-3a2687bb714226ab13111cac2149afc660fa70e7.tar.gz unit-3a2687bb714226ab13111cac2149afc660fa70e7.tar.bz2 |
Packages: added Ubuntu 23.10 "mantic" support.
Diffstat (limited to 'pkg/deb/Makefile')
-rw-r--r-- | pkg/deb/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index ce16068d..8bfe6c19 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -19,6 +19,23 @@ BUILD_DEPENDS = $(BUILD_DEPENDS_unit) MODULES= +# Ubuntu 23.10 +ifeq ($(CODENAME),mantic) +include Makefile.php +include Makefile.python311 +include Makefile.python312 +include Makefile.go +include Makefile.perl +include Makefile.ruby +include Makefile.jsc-common +include Makefile.jsc11 +include Makefile.jsc17 +include Makefile.jsc19 +include Makefile.jsc20 +include Makefile.jsc21 +include Makefile.wasm +endif + # Ubuntu 23.04 ifeq ($(CODENAME),lunar) include Makefile.php |