aboutsummaryrefslogtreecommitdiff
path: root/src/tool_metalink.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/tool_metalink.h')
-rw-r--r--src/tool_metalink.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/tool_metalink.h b/src/tool_metalink.h
index e3c66fc23..25feddcad 100644
--- a/src/tool_metalink.h
+++ b/src/tool_metalink.h
@@ -52,9 +52,14 @@ typedef struct metalinkfile {
/*
* Counts the resource in the metalinkfile.
*/
+#ifdef HAVE_LIBMETALINK
int count_next_metalink_resource(metalinkfile *mlfile);
-
void clean_metalink(struct Configurable *config);
+#else
+#define count_next_metalink_resource(x) 0
+#define clean_metalink(x)
+#endif
+
int parse_metalink(struct Configurable *config, const char *infile);