mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-21 19:42:24 +01:00
network/wmget: Fix build.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
28187edffb
commit
a4bfd836ee
2 changed files with 16 additions and 4 deletions
14
network/wmget/da_run.patch
Normal file
14
network/wmget/da_run.patch
Normal file
|
@ -0,0 +1,14 @@
|
|||
--- wmget/dockapp/da_run.c.orig 2016-02-14 00:57:46.773867780 +0700
|
||||
+++ wmget/dockapp/da_run.c 2016-02-14 01:18:46.455679579 +0700
|
||||
@@ -157,10 +157,8 @@
|
||||
static long da_timer_msec_remaining (void)
|
||||
{
|
||||
struct timeval right_now;
|
||||
- int rv;
|
||||
+ gettimeofday(&right_now, NULL);
|
||||
|
||||
- rv = gettimeofday (&right_now, 0);
|
||||
-
|
||||
return
|
||||
(da_timer_next_timeout.tv_sec - right_now.tv_sec) * 1000L
|
||||
+ (da_timer_next_timeout.tv_usec - right_now.tv_usec) / 1000L;
|
|
@ -69,10 +69,8 @@ find -L . \
|
|||
\( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \
|
||||
-o -perm 440 -o -perm 400 \) -exec chmod 644 {} \;
|
||||
|
||||
# Patch to fix!
|
||||
cp $CWD/wmget.patch ./
|
||||
patch -p0 < wmget.patch
|
||||
|
||||
patch -p1 < $CWD/da_run.patch
|
||||
|
||||
CFLAGS="$SLKCFLAGS" \
|
||||
CXXFLAGS="$SLKCFLAGS" \
|
||||
make
|
||||
|
|
Loading…
Reference in a new issue