blob: eef57c036ca9f6b2754963be93dad96830990107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
$NetBSD: patch-ac,v 1.1.1.1 2003/06/10 13:21:52 wiz Exp $
--- src/callbacks.c.orig Sun Jun 1 10:02:59 2003
+++ src/callbacks.c
@@ -30,7 +30,13 @@
#include <sys/socket.h>
#include <sys/un.h>
#include <math.h>
+#ifdef __linux__
#include <linux/sem.h>
+#else
+#ifndef SEMVMX
+#define SEMVMX 32767 /* semaphore maximum value */
+#endif
+#endif
#include <fcntl.h>
#include <signal.h>
#include <dirent.h>
@@ -71,6 +77,10 @@
#include "gtk_helper.h"
#include "network.h"
#include "custom_hublist_tree.h"
+
+#ifndef MSG_NOSIGNAL
+#define MSG_NOSIGNAL 0
+#endif
static void build_start_dl_popup(int from_panel);
void on_load_selected_share_lists_button_clicked (GtkButton *button, gpointer user_data);
|