You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
431 B
18 lines
431 B
#!/usr/bin/make -f
|
|
|
|
%:
|
|
dh $@
|
|
|
|
# Ensure at build time that the library has no dependencies on undefined
|
|
# symbols, and speed up loading.
|
|
export LDFLAGS := $(shell dpkg-buildflags --get LDFLAGS) -Wl,-z,defs -Wl,-O1
|
|
|
|
override_dh_auto_configure:
|
|
./autogen.sh
|
|
dh_auto_configure -- $(CONFFLAGS) \
|
|
--enable-compat-libdns_sd \
|
|
--disable-mono --disable-monodoc \
|
|
--disable-gtk3 \
|
|
--with-systemdsystemunitdir=/lib/systemd/system
|
|
|