aboutsummaryrefslogtreecommitdiffstats
path: root/palm/synce-librapi2/files/patch-rapi_context.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-02 07:35:54 +0800
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-02 07:35:54 +0800
commit89ca9a777bdc3a3e800b54666e3ef2d2e217a202 (patch)
tree03bd2d9cdd604f1a735351a55db7c93136ee976a /palm/synce-librapi2/files/patch-rapi_context.c
parent39a5b78f8797ded2c50107a77794cd671dff707f (diff)
downloadfreebsd-ports-gnome-89ca9a777bdc3a3e800b54666e3ef2d2e217a202.tar.gz
freebsd-ports-gnome-89ca9a777bdc3a3e800b54666e3ef2d2e217a202.tar.zst
freebsd-ports-gnome-89ca9a777bdc3a3e800b54666e3ef2d2e217a202.zip
Remove non staged ports without pending PR from p*
Diffstat (limited to 'palm/synce-librapi2/files/patch-rapi_context.c')
-rw-r--r--palm/synce-librapi2/files/patch-rapi_context.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/palm/synce-librapi2/files/patch-rapi_context.c b/palm/synce-librapi2/files/patch-rapi_context.c
deleted file mode 100644
index 414ca3c862a2..000000000000
--- a/palm/synce-librapi2/files/patch-rapi_context.c
+++ /dev/null
@@ -1,24 +0,0 @@
---- src/support/rapi_context.c 2009-07-27 13:25:07.000000000 +0400
-+++ src/support/rapi_context.c 2009-07-27 13:26:52.000000000 +0400
-@@ -513,13 +513,19 @@
- /*
- * odccm, synce-hal, or proxy ?
- */
-+#if ENABLE_ODCCM_SUPPORT
- if (strcmp(transport, "odccm") == 0) {
- synce_socket_take_descriptor(context->socket, get_connection_from_odccm(info));
- }
-- else if (strcmp(transport, "hal") == 0) {
-+ else
-+#endif
-+#if ENABLE_HAL_SUPPORT
-+ if (strcmp(transport, "hal") == 0) {
- synce_socket_take_descriptor(context->socket, get_connection_from_hal(info));
- }
-- else if ( !synce_socket_connect_proxy(context->socket, synce_info_get_device_ip(info)) )
-+ else
-+#endif
-+ if ( !synce_socket_connect_proxy(context->socket, synce_info_get_device_ip(info)) )
- {
- synce_error("failed to connect to proxy for %s", synce_info_get_device_ip(info));
- goto fail;