forked from pool/prosody
* Rewritten more extensible MUC module + Store inactive rooms to disk + Store rooms to disk on shutdown + Voice requests + Tombstones in place of destroyed rooms * PubSub features + Persistence + Affiliations + Access models + "publish-options" * PEP now uses our pubsub code and now shares the above features * Asynchronous operations * Busted for tests * mod\_muc\_mam (XEP-0313 in groupchats) * mod\_vcard\_legacy (XEP-0398) * mod\_vcard4 (XEP-0292) * mod\_csi, mod\_csi\_simple (XEP-0352) * New experimental network backend "epoll" - For more details see: * https://blog.prosody.im/prosody-0-11-0-released/ * https://prosody.im/doc/release/0.11.0#upgrade_notes - Remove prosody-makefile.patch: configure supports --libdir now - Update prosody-configure.patch: no libdir manipulation required - Update prosody-cfg.patch: refresh and remove posix part. It's enabled by default. OBS-URL: https://build.opensuse.org/package/show/devel:languages:lua/prosody?expand=0&rev=46
25 lines
702 B
Diff
25 lines
702 B
Diff
diff -urEbwB prosody-0.11.0/configure prosody-0.11.0.new/configure
|
|
--- prosody-0.11.0/configure 2018-11-19 11:42:24.000000000 +0100
|
|
+++ prosody-0.11.0.new/configure 2018-11-22 12:38:01.969935735 +0100
|
|
@@ -4,15 +4,15 @@
|
|
|
|
APP_NAME="Prosody"
|
|
APP_DIRNAME="prosody"
|
|
-PREFIX="/usr/local"
|
|
-SYSCONFDIR="$PREFIX/etc/$APP_DIRNAME"
|
|
+PREFIX="/usr"
|
|
+SYSCONFDIR="/etc/$APP_DIRNAME"
|
|
LIBDIR="$PREFIX/lib"
|
|
-DATADIR="$PREFIX/var/lib/$APP_DIRNAME"
|
|
+DATADIR="/var/lib/$APP_DIRNAME"
|
|
LUA_SUFFIX=""
|
|
LUA_DIR="/usr"
|
|
LUA_BINDIR="/usr/bin"
|
|
-LUA_INCDIR="/usr/include"
|
|
-LUA_LIBDIR="/usr/lib"
|
|
+LUA_INCDIR="@@INCLUDEDIR@@"
|
|
+LUA_LIBDIR="@@LIBDIR@@"
|
|
IDN_LIB="idn"
|
|
ICU_FLAGS="-licui18n -licudata -licuuc"
|
|
OPENSSL_LIB="crypto"
|