mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
a8327869bc
Qt is the only third party library it is dependent on. Users need to a have working knowledge of C++ and Qt basics (Signals and Slots and Qt data types). The underlying TCP socket and the XMPP RFCs (RFC3920 and RFC3921) have been encapsulated into classes and functions. Therefore the user would not be bothered with these details. But it is always recommended to the advanced users to read and enjoy the low level details. WWW: http://code.google.com/p/qxmpp/ PR: ports/163967 Submitted by: Gvozdikov Veniamin <g.veniamin@googlemail.com>
15 lines
303 B
Plaintext
15 lines
303 B
Plaintext
--- qxmpp.pri.orig 2011-04-07 05:36:03.000000000 +0000
|
|
+++ qxmpp.pri 2012-01-08 14:08:13.744880936 +0000
|
|
@@ -35,3 +35,11 @@
|
|
QXMPP_LIBRARY_FILE = $${QXMPP_LIBRARY_DIR}/lib$${QXMPP_LIBRARY_NAME}.a
|
|
}
|
|
|
|
+unix {
|
|
+ isEmpty(PREFIX) {
|
|
+ PREFIX = /usr/local
|
|
+ }
|
|
+ isEmpty(LIBDIR) {
|
|
+ LIBDIR = lib
|
|
+ }
|
|
+}
|