Commit 8453135f authored by Julian Wiesener's avatar Julian Wiesener

Workaround for a breaking change in GNU make 4.3.

parent 19a87c5b
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -5,12 +5,21 @@ DPKG_EXPORT_BUILDFLAGS=1 ...@@ -5,12 +5,21 @@ DPKG_EXPORT_BUILDFLAGS=1
include /usr/share/dpkg/pkg-info.mk include /usr/share/dpkg/pkg-info.mk
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./bootstrap ./bootstrap
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./bootstrap ./bootstrap
......
#!/usr/bin/make -f #!/usr/bin/make -f
DH_VERBOSE=1 DH_VERBOSE=1
DPKG_EXPORT_BUILDFLAGS=1 DPKG_EXPORT_BUILDFLAGS=1
include /usr/share/dpkg/pkg-info.mk include /usr/share/dpkg/pkg-info.mk
...@@ -20,12 +21,21 @@ ifneq ($(filter $(DEB_HOST_ARCH),$(DISABLE_JEMALLOC_ARCH_LIST)),) ...@@ -20,12 +21,21 @@ ifneq ($(filter $(DEB_HOST_ARCH),$(DISABLE_JEMALLOC_ARCH_LIST)),)
LOCAL_CONFIGURE_FLAGS += --disable-jemalloc LOCAL_CONFIGURE_FLAGS += --disable-jemalloc
endif endif
VMOD_strictABI = $(shell printf '\#include "vcs_version.h"\nVCS_Version\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - -Iinclude | sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/') H := \#
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - -Iinclude \ # VMOD API
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
# Main build rule, leave everything to debhelper # Main build rule, leave everything to debhelper
%: %:
......
...@@ -2,12 +2,21 @@ ...@@ -2,12 +2,21 @@
DH_VERBOSE=1 DH_VERBOSE=1
VMOD_ABI = $(shell printf '\#include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \ # Workaround for a breaking change in GNU make 4.3.
| cpp - $(shell pkg-config --cflags varnishapi) \ H := \#
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
VMOD_strictABI = $(shell printf '\#include "vmod_abi.h"\nVMOD_ABI_Version\n' \ # Extract VMOD_ABI version, this is used for building vmods using the official
| cpp - $(shell pkg-config --cflags varnishapi) \ # VMOD API
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^.* /varnishabi-strict-/') VMOD_ABI = $(shell printf '$(H)include "vdef.h"\n$(H)include "vrt.h"\nvarnishabi- VRT_MAJOR_VERSION . VRT_MINOR_VERSION\n' \
| cpp - -Iinclude \
| sed -e '/^varnishabi-/!d' -e 's/U//g' -e 's/ //g')
# Extract VMOD_strictABI, which refers to the exact build of varnish. This is
# used for old style vmods bypassing the VMOD API, accessing the internal data
# structures directly.
VMOD_strictABI = $(shell printf '$(H)include "vcs_version.h"\nVCS_Version\n' \
| cpp - -Iinclude \
| sed -e '/^"/!d' -e 's/\"//g' -e 's/^/varnishabi-strict-/')
override_dh_auto_configure: override_dh_auto_configure:
./autogen.sh ./autogen.sh
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment