diff options
author | Andrei Belov <defan@nginx.com> | 2019-07-09 14:17:03 +0300 |
---|---|---|
committer | Andrei Belov <defan@nginx.com> | 2019-07-09 14:17:03 +0300 |
commit | c0aad59d13dc611641f204066d9453bbb4baf25d (patch) | |
tree | bb92ae322ed7d2de30a68183d07a0c3e067c5069 | |
parent | d7516e5f4e7709853c5f010f149acf8822c81788 (diff) | |
download | unit-c0aad59d13dc611641f204066d9453bbb4baf25d.tar.gz unit-c0aad59d13dc611641f204066d9453bbb4baf25d.tar.bz2 |
Packages: Debian 10 "buster" support added.
Diffstat (limited to '')
-rw-r--r-- | pkg/deb/Makefile | 12 | ||||
-rw-r--r-- | pkg/deb/Makefile.jsc-common | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/pkg/deb/Makefile b/pkg/deb/Makefile index 0ad98d80..952408cd 100644 --- a/pkg/deb/Makefile +++ b/pkg/deb/Makefile @@ -78,6 +78,18 @@ include Makefile.python include Makefile.perl endif +# Debian 10 +ifeq ($(CODENAME),buster) +include Makefile.php +include Makefile.python27 +include Makefile.python37 +include Makefile.go111 +include Makefile.perl +include Makefile.ruby +include Makefile.jsc-common +include Makefile.jsc11 +endif + # Debian 9 ifeq ($(CODENAME),stretch) include Makefile.php diff --git a/pkg/deb/Makefile.jsc-common b/pkg/deb/Makefile.jsc-common index 080e248f..30f777fd 100644 --- a/pkg/deb/Makefile.jsc-common +++ b/pkg/deb/Makefile.jsc-common @@ -6,7 +6,7 @@ MODULE_SUMMARY_jsc_common= Java shared packages for NGINX Unit MODULE_VERSION_jsc_common= $(VERSION) MODULE_RELEASE_jsc_common= 1 -ifeq ($(CODENAME),disco) +ifneq (,$(findstring $(CODENAME),disco buster)) JAVA_MINVERSION= 11 else JAVA_MINVERSION= 8 |