- Patch to fix opening issue from browser (#431769)
- Patch to fix hardcoded optimize compile flagsepel9
parent
c1c64a14ba
commit
412483c6d0
@ -0,0 +1,13 @@
|
|||||||
|
--- transmission-1.11/configure.orig 2008-05-02 15:58:10.000000000 +0200
|
||||||
|
+++ transmission-1.11/configure 2008-05-02 15:58:20.000000000 +0200
|
||||||
|
@@ -20809,8 +20809,8 @@
|
||||||
|
|
||||||
|
|
||||||
|
if test "x$GCC" = "xyes" ; then
|
||||||
|
- CFLAGS="-g -Wall -W -O3 -funroll-loops"
|
||||||
|
- CXXFLAGS="-g -Wall -W -O3 -funroll-loops"
|
||||||
|
+ CFLAGS="-Wall -W"
|
||||||
|
+ CXXFLAGS="-Wall -W"
|
||||||
|
fi
|
||||||
|
{ echo "$as_me:$LINENO: checking for ANSI C header files" >&5
|
||||||
|
echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6; }
|
@ -0,0 +1,26 @@
|
|||||||
|
--- transmission-1.11/gtk/conf.c~ 2008-04-04 21:27:33.000000000 +0200
|
||||||
|
+++ transmission-1.11/gtk/conf.c 2008-05-02 18:11:16.000000000 +0200
|
||||||
|
@@ -103,8 +103,10 @@
|
||||||
|
static void
|
||||||
|
cf_removelocks( void )
|
||||||
|
{
|
||||||
|
- g_unlink( gl_lockpath );
|
||||||
|
- g_free( gl_lockpath );
|
||||||
|
+ if ( gl_lockpath ) {
|
||||||
|
+ g_unlink( gl_lockpath );
|
||||||
|
+ g_free( gl_lockpath );
|
||||||
|
+ }
|
||||||
|
}
|
||||||
|
|
||||||
|
/* errstr may be NULL, this might be called before GTK is initialized */
|
||||||
|
--- transmission-1.11/gtk/ipc.c~ 2008-04-04 21:27:33.000000000 +0200
|
||||||
|
+++ transmission-1.11/gtk/ipc.c 2008-05-02 18:56:50.000000000 +0200
|
||||||
|
@@ -339,7 +350,7 @@
|
||||||
|
}
|
||||||
|
|
||||||
|
g_main_loop_run(con->u.client.loop);
|
||||||
|
-
|
||||||
|
+ sleep(1);
|
||||||
|
return ret;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in new issue