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
|
#!/usr/bin/make -f
#export DH_VERBOSE=1
SHELL=/bin/bash
BUILDDIR := debian/build
DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
DEB_HOST_ARCH_OS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
DEB_HOST_ARCH_BITS ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_BITS)
DEB_HOST_MULTIARCH ?= $(shell dpkg-architecture -qDEB_HOST_MULTIARCH)
# The 'build' target needs special handling because there there is a directory
# named 'build'.
.PHONY: build
# The build target must not be empty. Sadly because of how make
# works, we have do duplicate the target in this case.
build:
dh $@ -B$(BUILDDIR)
%:
dh $@ -B$(BUILDDIR)
#
# configure
#
CONFFLAGS := LTFLAGS=--no-silent \
--host=$(DEB_HOST_GNU_TYPE) \
--build=$(DEB_BUILD_GNU_TYPE) \
--enable-layout=Debian \
--includedir=/usr/include/apr-1.0 \
--with-installbuilddir=/usr/share/apr-1.0/build \
--libdir=/usr/lib/$(DEB_HOST_MULTIARCH) \
--enable-nonportable-atomics \
--enable-allocator-uses-mmap \
ac_cv_prog_AWK=mawk
# apr_cv_mutex_robust_shared causes hangs in procmutex test on arm(el|hf) and alpha
ifneq (,$(filter $(DEB_HOST_ARCH),alpha armel armhf))
CONFFLAGS += apr_cv_mutex_robust_shared=no
else
# apr_cv_mutex_robust_shared cannot be detected during cross compilation
ifneq ($(DEB_BUILD_ARCH),$(DEB_HOST_ARCH))
CONFFLAGS += apr_cv_mutex_robust_shared=yes
endif
endif
# On linux, we always want SCTP support, even if the kernel of the build machine
# has it disabled.
ifeq (linux,$(DEB_HOST_ARCH_OS))
CONFFLAGS += apr_cv_sctp=yes
endif
# SH4 cannot use proc_pthread.
ifneq (,$(findstring sh4,$(DEB_HOST_ARCH)))
CONFFLAGS += apr_cv_hasprocpthreadser=no ac_cv_define_PTHREAD_PROCESS_SHARED=no
endif
# multicast not supported on Hurd
ifeq (hurd,$(DEB_HOST_ARCH_OS))
CONFFLAGS += apr_cv_struct_ipmreq=no
endif
# some minimal cross-building support
ifneq ($(DEB_HOST_GNU_TYPE),$(DEB_BUILD_GNU_TYPE))
ifeq ($(DEB_HOST_ARCH_OS),linux)
CONFFLAGS += ac_cv_file__dev_zero=yes \
ac_cv_func_setpgrp_void=yes \
apr_cv_epoll=yes \
ac_cv_struct_rlimit=yes \
apr_cv_tcp_nodelay_with_cork=yes \
apr_cv_process_shared_works=yes
endif
ifeq ($(DEB_HOST_ARCH_BITS),32)
CONFFLAGS += ac_cv_sizeof_struct_iovec=8
else ifeq ($(DEB_HOST_ARCH_BITS),64)
CONFFLAGS += ac_cv_sizeof_struct_iovec=16
endif
endif
# Set several variables to make build reproducible even when built on
# usrmerge system
CONFFLAGS += SED=/bin/sed
CONFFLAGS += GREP=/bin/grep
CONFFLAGS += EGREP="/bin/grep -E"
CONFFLAGS += FGREP="/bin/grep -F"
CONFFLAGS += ac_cv_path_lt_DD=/bin/dd
override_dh_autoreconf:
LC_ALL=C dh_autoreconf ./buildconf
override_dh_auto_configure:
mkdir -p $(BUILDDIR)/docs
# We need to force the use of bash here. Otherwise, if apr is built with
# /bin/sh -> /bin/bash, the resulting libtool will not work on systems
# where /bin/sh -> /bin/dash.
cd $(BUILDDIR) && CONFIG_SHELL=/bin/bash /bin/bash $(CURDIR)/configure $(CONFFLAGS)
ifeq (linux,$(DEB_HOST_ARCH_OS))
if grep -q APR_HAS_POSIXSEM_SERIALIZE.*0 $(BUILDDIR)/include/apr.h ;\
then \
echo "WARNING: This is Linux but configure did not detect POSIX semaphores." ;\
if ! df /dev/shm/.|grep -q ^tmpfs ;\
then \
echo "ERROR: POSIX semaphores not usable and /dev/shm not mounted." ;\
echo "ERROR: Aborting." ;\
echo "HINT: If you are using pbuilder or cowbuilder, add /dev/shm to BINDMOUNTS" ;\
echo "HINT: in pbuilderrc" ;\
exit 1 ;\
fi ;\
fi
endif
#
# build
#
ifneq (,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
NUMJOBS := $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
endif
override_dh_auto_build:
$(MAKE) -j$(NUMJOBS) -C $(BUILDDIR) all dox
find debian/build/docs/dox/html -name \*.md5 -delete
#
# test
#
ifeq (,$(findstring nocheck,$(DEB_BUILD_OPTIONS)))
# the testsockets test will fail on vservers (no 127.0.0.1) or if ipv6 is
# enabled in the kernel but not configured on any interface
IGNORE_TESTSOCK = $(shell IGN=false; \
/sbin/ifconfig|grep -q 127.0.0.1 || IGN=true; \
grep -q ipv6 /proc/net/protocols && ( /sbin/ifconfig|grep -q inet6 || IGN=true ) ; \
echo $$IGN )
override_dh_auto_test:
$(MAKE) -C $(BUILDDIR)/test -j$(NUMJOBS) all
cd $(BUILDDIR)/test && ./testall -v testsockets testsock || $(IGNORE_TESTSOCK)
cd $(BUILDDIR)/test && ( ulimit -S -s 8192 ; ./testall -v testatomic)
cd $(BUILDDIR)/test && ./testall -v -x testsockets testsock testatomic
else
override_dh_auto_test:
endif
#
# install
#
override_dh_auto_install:
dh_auto_install --destdir=debian/tmp
perl -p -i -e "s,^dependency_libs=.*,dependency_libs=''," debian/tmp/usr/lib/$(DEB_HOST_MULTIARCH)/libapr-1.la
# Remove hostname to make build reproducible
perl -p -i -e 's/Libtool was configured on host.*//' debian/tmp/usr/share/apr-1.0/build/libtool
# Replace variable build path with BUILDDIR
perl -p -i -e "s,$(CURDIR),BUILDDIR/," debian/tmp/usr/bin/apr-1-config
perl -p -i -e "s,$(CURDIR),BUILDDIR/," debian/tmp/usr/share/apr-1.0/build/apr_rules.mk
perl -p -i -e "s,$(CURDIR),BUILDDIR/," debian/tmp/usr/share/apr-1.0/build/libtool
if ! head -n 1 debian/tmp/usr/share/apr-1.0/build/libtool | grep -q /bin/bash ; then \
echo ERROR: The built libtool uses /bin/sh instead of /bin/bash ; \
exit 1 ; \
fi
override_dh_strip:
dh_strip --dbgsym-migration='libapr1-dbg (<< 1.7.0-4~)'
override_dh_makeshlibs:
dh_makeshlibs -- -Idebian/symbols.$(DEB_HOST_ARCH_OS)
override_dh_auto_clean:
dh_auto_clean
rm -rf $(BUILDDIR)
|