aboutsummaryrefslogtreecommitdiff
path: root/net/linphone/files
diff options
context:
space:
mode:
authorTijl Coosemans <tijl@FreeBSD.org>2014-07-14 10:29:38 +0000
committerTijl Coosemans <tijl@FreeBSD.org>2014-07-14 10:29:38 +0000
commitc5f5a1d39d301d868ffdc6087f9caed2aec85cfd (patch)
tree6c6af440896486471f6df0337f2552dd1859809a /net/linphone/files
parent6bf335212499b4da77733ef1857a0f5cf1325758 (diff)
downloadports-c5f5a1d39d301d868ffdc6087f9caed2aec85cfd.tar.gz
ports-c5f5a1d39d301d868ffdc6087f9caed2aec85cfd.zip
- Move net/linphone-base to replace net/linphone and update to version 3.7.0
- Adjust ports that depended on linphone-base to depend on net/ortp or net/mediastreamer instead - Mark net-im/libjingle deprecated (part of Google Talk) Approved by: portmgr (implicit, PORTREVISION bump of unstaged port)
Notes
Notes: svn path=/head/; revision=361763
Diffstat (limited to 'net/linphone/files')
-rw-r--r--net/linphone/files/patch-configure24
-rw-r--r--net/linphone/files/patch-coreapi__presence.c11
2 files changed, 35 insertions, 0 deletions
diff --git a/net/linphone/files/patch-configure b/net/linphone/files/patch-configure
new file mode 100644
index 000000000000..d97d2dd4c993
--- /dev/null
+++ b/net/linphone/files/patch-configure
@@ -0,0 +1,24 @@
+--- configure.orig
++++ configure
+@@ -19486,12 +19486,6 @@
+ ;;
+ esac
+
+-case "$host_os" in
+- *freebsd*)
+- LDFLAGS="$LDFLAGS -pthread"
+- ;;
+-esac
+-
+ case "$host_cpu" in
+ *arm*)
+
+@@ -20993,7 +20987,7 @@
+ { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
+ $as_echo "yes" >&6; }
+
+- SQLITE3_CFLAGS+="-DMSG_STORAGE_ENABLED"
++ SQLITE3_CFLAGS="$SQLITE3_CFLAGS -DMSG_STORAGE_ENABLED"
+
+
+ enable_msg_storage=true
diff --git a/net/linphone/files/patch-coreapi__presence.c b/net/linphone/files/patch-coreapi__presence.c
new file mode 100644
index 000000000000..95829fe4a610
--- /dev/null
+++ b/net/linphone/files/patch-coreapi__presence.c
@@ -0,0 +1,11 @@
+--- coreapi/presence.c.orig
++++ coreapi/presence.c
+@@ -167,7 +167,7 @@
+ ms_error("mktime() failed: %s", strerror(errno));
+ return (time_t)-1;
+ }
+- return seconds - timezone;
++ return seconds;
+ }
+
+ static char * timestamp_to_string(time_t timestamp) {