summaryrefslogtreecommitdiff
path: root/desktop/401login.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-01-05 02:10:59 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-01-05 02:10:59 +0000
commit62245d13ec60e3c0fc78221f0a8f754f33c2b6a1 (patch)
tree5bbe5b8a63941c2d3b7f71fc53ceedcbc1d92cd6 /desktop/401login.h
parent91e767cdfa11225dd370471892000e107bb06726 (diff)
downloadnetsurf-62245d13ec60e3c0fc78221f0a8f754f33c2b6a1.tar.gz
netsurf-62245d13ec60e3c0fc78221f0a8f754f33c2b6a1.tar.bz2
[project @ 2004-01-05 02:10:59 by jmb]
Add ability to turn off browser features in build. This may be useful when hunting down bugs. svn path=/import/netsurf/; revision=480
Diffstat (limited to 'desktop/401login.h')
-rw-r--r--desktop/401login.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/desktop/401login.h b/desktop/401login.h
index d9262c54c..27f76f65a 100644
--- a/desktop/401login.h
+++ b/desktop/401login.h
@@ -8,9 +8,12 @@
#ifndef NETSURF_DESKTOP_401LOGIN_H
#define NETSURF_DESKTOP_401LOGIN_H
+#include "netsurf/utils/config.h"
#include "netsurf/content/content.h"
#include "netsurf/desktop/browser.h"
+#ifdef WITH_AUTH
+
struct login {
char *host; /**< hostname */
@@ -26,3 +29,5 @@ struct login *login_list_get(char *host);
void login_list_remove(char *host);
#endif
+
+#endif