diff options
Diffstat (limited to 'pkg')
-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 |