File tree Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Expand file tree Collapse file tree 2 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,17 @@ include Makefile.jsc8
106
106
include Makefile.jsc11
107
107
endif
108
108
109
+ # Debian 12
110
+ ifeq ($(CODENAME ) ,bookworm)
111
+ include Makefile.php
112
+ include Makefile.python311
113
+ include Makefile.go
114
+ include Makefile.perl
115
+ include Makefile.ruby
116
+ include Makefile.jsc-common
117
+ include Makefile.jsc17
118
+ endif
119
+
109
120
# Debian 11
110
121
ifeq ($(CODENAME ) ,bullseye)
111
122
include Makefile.php
Original file line number Diff line number Diff line change @@ -6,8 +6,10 @@ MODULE_SUMMARY_jsc_common= Java shared packages for NGINX Unit
6
6
MODULE_VERSION_jsc_common= $(VERSION)
7
7
MODULE_RELEASE_jsc_common= 1
8
8
9
- ifneq (,$(findstring $( CODENAME),bionic) )
9
+ ifeq ($( CODENAME),bionic)
10
10
JAVA_MINVERSION= 8
11
+ else ifeq ($(CODENAME),bookworm)
12
+ JAVA_MINVERSION= 17
11
13
else
12
14
JAVA_MINVERSION= 11
13
15
endif
You can’t perform that action at this time.
0 commit comments