nixpkgs/pkgs/by-name/ob/obex_data_server/obex-data-server-0.4.6-build-fixes-1.patch
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

57 lines
2.0 KiB
Diff

Submitted By: Armin K. <krejzi at email dot com>
Date: 2012-07-06
Initial Package Version: 0.4.6
Upstream Status: Unknown
Origin: Self
Description: Some build fixes.
--- obex-data-server.orig/src/ods-obex.c 2011-02-10 10:14:42.000000000 +0100
+++ obex-data-server/src/ods-obex.c 2012-07-06 20:10:09.208712553 +0200
@@ -412,7 +412,7 @@
goto err;
}
- interfaces_num = OBEX_FindInterfaces(obex_context->obex_handle, &obex_intf);
+ interfaces_num = OBEX_EnumerateInterfaces(obex_context->obex_handle);
if (intf_num >= interfaces_num) {
g_set_error (error, ODS_ERROR, ODS_ERROR_FAILED, "Invalid interface number");
goto err;
@@ -1928,7 +1928,7 @@
gchar *uname;
gsize uname_len;
- if (action != OBEX_ACTION_SETPERM)
+ if (action != 0x03)
g_assert (src && dst);
object = OBEX_ObjectNew (obex_context->obex_handle, OBEX_CMD_ACTION);
@@ -1974,7 +1974,7 @@
OBEX_HDR_ACTION_ID, hv, 1, 0);
/* permissions header */
- if (action == OBEX_ACTION_SETPERM) {
+ if (action == 0x03) {
hv.bq4 = perms;
ret = OBEX_ObjectAddHeader (obex_context->obex_handle, object,
OBEX_HDR_PERMISSIONS, hv, 4, 0);
--- obex-data-server.orig/src/ods-session.c 2011-02-10 09:57:31.000000000 +0100
+++ obex-data-server/src/ods-session.c 2012-07-06 20:10:09.208712553 +0200
@@ -1761,7 +1761,7 @@
DBusGMethodInvocation *context)
{
return ods_session_remote_action (session, remote_source,
- remote_destination, OBEX_ACTION_COPY,
+ remote_destination, 0x00,
context);
}
@@ -1772,7 +1772,7 @@
DBusGMethodInvocation *context)
{
return ods_session_remote_action (session, remote_source,
- remote_destination, OBEX_ACTION_MOVE,
+ remote_destination, 0x01,
context);
}