diff options
author | Konstantin Pavlov <thresh@nginx.com> | 2023-06-07 17:39:27 -0700 |
---|---|---|
committer | Konstantin Pavlov <thresh@nginx.com> | 2023-06-07 17:39:27 -0700 |
commit | 88c90e1c351ab8c5bd487a5cd4b735014b08e271 (patch) | |
tree | 4c3c7acf9ad97d8378e6fc62aaf68560917cc0f1 | |
parent | 92ffcb89f8e145299e837438f0a0de93d73ffede (diff) | |
download | unit-88c90e1c351ab8c5bd487a5cd4b735014b08e271.tar.gz unit-88c90e1c351ab8c5bd487a5cd4b735014b08e271.tar.bz2 |
Packages: added Debian 12 "bookworm" support.
-rw-r--r-- | pkg/deb/Makefile | 11 | ||||
-rw-r--r-- | pkg/deb/Makefile.jsc-common | 4 |
2 files changed, 14 insertions, 1 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index 09544892..044b7226 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -106,6 +106,17 @@ include Makefile.jsc8 include Makefile.jsc11 endif +# Debian 12 +ifeq ($(CODENAME),bookworm) +include Makefile.php +include Makefile.python311 +include Makefile.go +include Makefile.perl +include Makefile.ruby +include Makefile.jsc-common +include Makefile.jsc17 +endif + # Debian 11 ifeq ($(CODENAME),bullseye) include Makefile.php diff --git a/pkg/deb/Makefile.jsc-common b/pkg/deb/Makefile.jsc-common index 2b098025..61af8e6e 100644 --- a/pkg/deb/Makefile.jsc-common +++ b/pkg/deb/Makefile.jsc-common @@ -6,8 +6,10 @@ MODULE_SUMMARY_jsc_common= Java shared packages for NGINX Unit MODULE_VERSION_jsc_common= $(VERSION) MODULE_RELEASE_jsc_common= 1 -ifneq (,$(findstring $(CODENAME),bionic)) +ifeq ($(CODENAME),bionic) JAVA_MINVERSION= 8 +else ifeq ($(CODENAME),bookworm) +JAVA_MINVERSION= 17 else JAVA_MINVERSION= 11 endif |