8b10e39ca4
extensible C++ library for XMPP clients and components gloox is a rock-solid, full-featured Jabber/XMPP client library, written in clean ANSI C++. It makes writing spec-compliant clients easy and allows for hassle-free integration of Jabber/XMPP functionality into existing applications OK landry@
26 lines
597 B
Plaintext
26 lines
597 B
Plaintext
$OpenBSD: patch-Makefile_in,v 1.1.1.1 2010/07/28 14:20:50 sebastia Exp $
|
|
|
|
do not hardocde the make
|
|
|
|
--- Makefile.in.orig Mon Jul 26 16:17:22 2010
|
|
+++ Makefile.in Mon Jul 26 16:17:53 2010
|
|
@@ -821,15 +821,15 @@ apidox:
|
|
check: test
|
|
|
|
test:
|
|
- make -C src test
|
|
+ ${MAKE_PROGRAM} -C src test
|
|
|
|
leakcheck: leaktest
|
|
|
|
leaktest:
|
|
- make -C src leaktest
|
|
+ ${MAKE_PROGRAM} -C src leaktest
|
|
|
|
includetest:
|
|
- make -C src includetest
|
|
+ ${MAKE_PROGRAM} -C src includetest
|
|
|
|
# Tell versions [3.59,3.63) of GNU make to not export all variables.
|
|
# Otherwise a system limit (for SysV at least) may be exceeded.
|