blob: 3627d6295e9684ff7207b23bdf94069d74b094b0 (
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-ag,v 1.3 2006/06/27 14:55:54 wiz Exp $
--- src/libsoup/soup-private.h.orig 2003-01-02 19:04:09.000000000 +0000
+++ src/libsoup/soup-private.h
@@ -26,12 +26,16 @@
#else
# ifdef HAVE_ALLOCA_H
# include <alloca.h>
+# elif defined(HAVE_STDLIB_H)
+# include <stdlib.h>
# else
# ifdef _AIX
# pragma alloca
# else
# ifndef alloca /* predefined by HP cc +Olibcalls */
+#ifndef __DragonFly__
char *alloca ();
+#endif
# endif
# endif
# endif
@@ -68,7 +72,6 @@ extern "C" {
#define RESPONSE_BLOCK_SIZE 8192
extern gboolean soup_initialized;
-extern GSList *soup_active_requests; /* CONTAINS: SoupMessage */
extern GHashTable *soup_hosts; /* KEY: uri->host, VALUE: SoupHost */
extern SoupAuthorizeFn soup_auth_fn;
|