1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242
|
include config.mak
bin_PROGRAMS = pgbouncer
pgbouncer_SOURCES = \
src/admin.c \
src/client.c \
src/dnslookup.c \
src/hba.c \
src/janitor.c \
src/ldapauth.c \
src/loader.c \
src/messages.c \
src/main.c \
src/objects.c \
src/pam.c \
src/pktbuf.c \
src/pooler.c \
src/proto.c \
src/prepare.c \
src/sbuf.c \
src/scram.c \
src/server.c \
src/stats.c \
src/system.c \
src/takeover.c \
src/util.c \
src/varcache.c \
src/common/sha2.c \
src/common/base64.c \
src/common/bool.c \
src/common/cryptohash.c \
src/common/hmac.c \
src/common/pgstrcasecmp.c \
src/common/saslprep.c \
src/common/scram-common.c \
src/common/string.c \
src/common/unicode_norm.c \
src/common/wchar.c \
include/admin.h \
include/bouncer.h \
include/client.h \
include/dnslookup.h \
include/hba.h \
include/iobuf.h \
include/janitor.h \
include/ldapauth.h \
include/loader.h \
include/messages.h \
include/objects.h \
include/pam.h \
include/pktbuf.h \
include/pooler.h \
include/proto.h \
include/prepare.h \
include/sbuf.h \
include/scram.h \
include/server.h \
include/stats.h \
include/system.h \
include/takeover.h \
include/util.h \
include/varcache.h \
include/common/ascii.h \
include/common/base64.h \
include/common/builtins.h \
include/common/cryptohash.h \
include/common/hmac.h \
include/common/pg_wchar.h \
include/common/postgres_compat.h \
include/common/protocol.h \
include/common/saslprep.h \
include/common/scram-common.h \
include/common/sha2.h \
include/common/sha2_int.h \
include/common/simd.h \
include/common/string.h \
include/common/unicode_east_asian_fw_table.h \
include/common/unicode_nonspacing_table.h \
include/common/unicode_norm.h \
include/common/unicode_norm_table.h \
include/common/uthash.h \
include/common/uthash_lowercase.h
pgbouncer_CPPFLAGS = -Iinclude $(CARES_CFLAGS) $(LIBEVENT_CFLAGS) $(TLS_CPPFLAGS)
# include libusual sources directly
AM_FEATURES = libusual
pgbouncer_EMBED_LIBUSUAL = 1
# docs to install as-is
dist_doc_DATA = README.md NEWS.md \
etc/pgbouncer-minimal.ini \
etc/pgbouncer.ini \
etc/pgbouncer.service \
etc/pgbouncer.socket \
etc/userlist.txt
DISTCLEANFILES = config.mak config.status lib/usual/config.h config.log
DIST_SUBDIRS = doc test
dist_man_MANS = doc/pgbouncer.1 doc/pgbouncer.5
pgbouncer_LDFLAGS := $(TLS_LDFLAGS)
pgbouncer_LDADD := $(CARES_LIBS) $(LIBEVENT_LIBS) $(TLS_LIBS) $(LIBS)
LIBS :=
#
# win32
#
EXTRA_pgbouncer_SOURCES = win32/win32support.c win32/win32support.h win32/win32ver.rc
EXTRA_PROGRAMS = pgbevent
ifeq ($(PORTNAME),win32)
pgbouncer_CPPFLAGS += -Iwin32
pgbouncer_SOURCES += $(EXTRA_pgbouncer_SOURCES)
bin_PROGRAMS += pgbevent
endif
pgbevent_SOURCES = win32/pgbevent.c win32/eventmsg.rc \
win32/eventmsg.mc win32/MSG00001.bin
pgbevent_EXT = .dll
pgbevent_LINK = $(CC) -shared -Wl,--export-all-symbols -Wl,--add-stdcall-alias -o $@ $^
# .rc->.o
AM_LANGUAGES = RC
AM_LANG_RC_SRCEXTS = .rc
AM_LANG_RC_COMPILE = $(WINDRES) $< -o $@ --include-dir=$(srcdir)/win32 --include-dir=lib
AM_LANG_RC_LINK = false
#
# now load antimake
#
# disable dist target from antimake
AM_DIST_DEFAULT =
USUAL_DIR = lib
abs_top_srcdir ?= $(CURDIR)
include $(abs_top_srcdir)/lib/mk/antimake.mk
config.mak:
@echo "Please run ./configure"
@exit 1
#
# dist
# (adapted from PostgreSQL)
#
distdir = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)
PG_GIT_REVISION = HEAD
GIT = git
EXTRA_DIST = config.guess config.sub configure install-sh lib/usual/config.h.in
dist: $(distdir).tar.gz
$(PACKAGE_TARNAME)-$(PACKAGE_VERSION).tar.gz:
$(GIT) -C $(srcdir) -c core.autocrlf=false archive --format tar.gz -9 --prefix $(distdir)/ $(PG_GIT_REVISION) -o $(abs_top_builddir)/$@ $(foreach file,$(EXTRA_DIST),--prefix $(distdir)/$(dir $(file)) --add-file=$(file)) --prefix $(distdir)/
#
# test
#
PYTEST = $(shell command -v pytest || echo '$(PYTHON) -m pytest')
CONCURRENCY = auto
PYTEST_FLAGS = -r s
check: all
etc/optscan.sh
if [ $(CONCURRENCY) = 1 ]; then \
PYTHONIOENCODING=utf8 $(PYTEST) $(PYTEST_FLAGS); \
else \
PYTHONIOENCODING=utf8 $(PYTEST) -n $(CONCURRENCY) $(PYTEST_FLAGS); \
fi
$(MAKE) -C test check
w32zip = $(PACKAGE_TARNAME)-$(PACKAGE_VERSION)-windows-$(host_cpu).zip
zip: $(w32zip)
$(w32zip): pgbouncer.exe pgbevent.dll etc/pgbouncer.ini etc/userlist.txt README.md COPYRIGHT
rm -rf $(basename $@)
mkdir $(basename $@)
cp $^ $(basename $@)
$(STRIP) $(addprefix $(basename $@)/,$(filter %.exe %.dll,$(^F)))
zip -MM $@ $(addprefix $(basename $@)/,$(filter %.exe %.dll,$(^F)))
# NB: zip -l for text files for end-of-line conversion
zip -MM -l $@ $(addprefix $(basename $@)/,$(filter-out %.exe %.dll,$(^F)))
.PHONY: tags
tags:
ctags src/*.c include/*.h lib/usual/*.[ch] lib/usual/*/*.[ch]
htmls:
for f in *.md doc/*.md; do \
mkdir -p html && $(PANDOC) $$f -o html/`basename $$f`.html; \
done
doc/pgbouncer.1 doc/pgbouncer.5:
$(MAKE) -C doc $(@F)
lint:
flake8
UNCRUSTIFY_FILES = include/*.h src/*.c test/*.c \
lib/test/*.c lib/usual/*.c lib/usual/crypto/*.c lib/usual/hashing/*.c lib/usual/tls/*.c \
lib/test/*.h lib/usual/*.h lib/usual/crypto/*.h lib/usual/hashing/*.h lib/usual/tls/*.h
format-check: uncrustify
git diff-tree --check `git hash-object -t tree /dev/null` HEAD
black --check --diff .
isort --check --diff .
./uncrustify -c uncrustify.cfg --check -L WARN $(UNCRUSTIFY_FILES)
format: uncrustify
$(MAKE) format-c
$(MAKE) format-python
format-python: uncrustify
black .
isort .
format-c: uncrustify
./uncrustify -c uncrustify.cfg --replace --no-backup -L WARN $(UNCRUSTIFY_FILES)
UNCRUSTIFY_VERSION=0.77.1
uncrustify:
temp=$$(mktemp -d) \
&& cd $$temp \
&& curl -L https://github.com/uncrustify/uncrustify/archive/refs/tags/uncrustify-$(UNCRUSTIFY_VERSION).tar.gz --output uncrustify.tar.gz \
&& tar xzf uncrustify.tar.gz \
&& cd uncrustify-uncrustify-$(UNCRUSTIFY_VERSION) \
&& mkdir -p build \
&& cd build \
&& cmake .. \
&& $(MAKE) \
&& cp uncrustify $(CURDIR)/uncrustify
|