Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
GNOME
libdmapsharing
Commits
6b87cb8c
Commit
6b87cb8c
authored
Feb 27, 2010
by
W. Michael Petullo
Browse files
Fixed debug statement that caused segfaults on MIPS32 and PowerPC.
Signed-off-by:
W. Michael Petullo
<
mike@flyn.org
>
parent
ab7eff12
Changes
4
Hide whitespace changes
Inline
Side-by-side
ChangeLog
View file @
6b87cb8c
12 December 2009 W. Michael Petullo <mike@flyn.org>
* Fixed debug statement that caused segfaults of MIPS32 and
PowerPC.
05 December 2009 W. Michael Petullo <mike@flyn.org>
* Use our own log domain.
...
...
TODO
View file @
6b87cb8c
...
...
@@ -105,8 +105,7 @@ libdmapsharing-1.0.la
libdmapsharing.la
Add a Mac OS X Zeroconf backend as an alternative to avahi?
See dns_sd.h
Implement dmap-mdns-publisher.h using DNSServiceRegister ().
Finish browser side support.
Update MacPorts port to no longer require avahi.
Fix seeking.
...
...
configure.ac
View file @
6b87cb8c
AC_INIT(libdmapsharing, 1.9.0.1
4
)
AC_INIT(libdmapsharing, 1.9.0.1
5
)
dnl when going to/from release please set the nano (fourth number) right !
dnl releases only do Wall, cvs and prerelease does Werror too
AS_VERSION(libdmapsharing, LIBDMAPSHARING, 1, 9, 0, 1
4
, LIBDMAPSHARING_CVS="no", LIBDMAPSHARING_CVS="yes")
AS_VERSION(libdmapsharing, LIBDMAPSHARING, 1, 9, 0, 1
5
, LIBDMAPSHARING_CVS="no", LIBDMAPSHARING_CVS="yes")
AM_INIT_AUTOMAKE
...
...
libdmapsharing/daap-share.c
View file @
6b87cb8c
...
...
@@ -470,7 +470,7 @@ send_chunked_file (SoupServer *server, SoupMessage *message, DAAPRecord *record,
g_object_get
(
record
,
"location"
,
&
location
,
NULL
);
/* FIXME: This crashes on powerpc-440fp-linux-gnu:
* g_debug ("Sending %s chunked from offset %
.
" G_GUINT64_FORMAT, location, offset);
* g_debug ("Sending %s chunked from offset %" G_GUINT64_FORMAT
"."
, location, offset);
*/
cd
->
server
=
server
;
...
...
@@ -531,7 +531,7 @@ send_chunked_file (SoupServer *server, SoupMessage *message, DAAPRecord *record,
g_debug
(
"Using HTTP 1.1 content length encoding."
);
soup_message_headers_set_encoding
(
message
->
response_headers
,
SOUP_ENCODING_CONTENT_LENGTH
);
g_debug
(
"Content length is %
.
"
G_GUINT64_FORMAT
,
filesize
);
g_debug
(
"Content length is %"
G_GUINT64_FORMAT
"."
,
filesize
);
soup_message_headers_set_content_length
(
message
->
response_headers
,
filesize
);
}
else
if
(
soup_message_get_http_version
(
message
)
==
SOUP_HTTP_1_0
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment