Makefile (937:bda4c934fd87) Makefile (939:b20072104026)
1#!/usr/bin/make
2
3DEFAULT_VERSION := $(shell grep 'define NXT_VERSION' ../../src/nxt_main.h \
4 | sed -e 's/^.*"\(.*\)".*/\1/')
5
6DEFAULT_RELEASE := 1
7
8VERSION ?= $(DEFAULT_VERSION)

--- 81 unchanged lines hidden (view full) ---

90include Makefile.python27
91include Makefile.python34
92include Makefile.perl
93endif
94
95ifeq ($(OSVER), fedora)
96include Makefile.php
97include Makefile.python27
1#!/usr/bin/make
2
3DEFAULT_VERSION := $(shell grep 'define NXT_VERSION' ../../src/nxt_main.h \
4 | sed -e 's/^.*"\(.*\)".*/\1/')
5
6DEFAULT_RELEASE := 1
7
8VERSION ?= $(DEFAULT_VERSION)

--- 81 unchanged lines hidden (view full) ---

90include Makefile.python27
91include Makefile.python34
92include Makefile.perl
93endif
94
95ifeq ($(OSVER), fedora)
96include Makefile.php
97include Makefile.python27
98ifeq ($(shell test `rpm --eval '0%{?fedora} -ge 29'`; echo $$?),0)
99include Makefile.python37
100else
101include Makefile.python36
98include Makefile.python36
102endif
103include Makefile.go
104include Makefile.perl
105include Makefile.ruby
106endif
107
108CONFIGURE_ARGS=\
109 --prefix=/usr \
110 --state=%{_sharedstatedir}/unit \
99include Makefile.go
100include Makefile.perl
101include Makefile.ruby
102endif
103
104CONFIGURE_ARGS=\
105 --prefix=/usr \
106 --state=%{_sharedstatedir}/unit \
111 --control="unix:/var/run/unit/control.sock" \
107 --control="unix:/var/run/control.unit.sock" \
112 --pid=/var/run/unit.pid \
113 --log=/var/log/unit.log \
114 --tests \
115 --openssl
116
117export CR=\\n
118
119default:

--- 137 unchanged lines hidden ---
108 --pid=/var/run/unit.pid \
109 --log=/var/log/unit.log \
110 --tests \
111 --openssl
112
113export CR=\\n
114
115default:

--- 137 unchanged lines hidden ---