summaryrefslogtreecommitdiff
path: root/pkgtools
diff options
context:
space:
mode:
authorjoerg <joerg@pkgsrc.org>2017-07-16 16:51:48 +0000
committerjoerg <joerg@pkgsrc.org>2017-07-16 16:51:48 +0000
commit727b68886fd9245b749759ca4a349d71c72e0df6 (patch)
tree9d7bbd879379c79d9e1a4b5c5ff4b1d8d98cfdfb /pkgtools
parentb9311b94757a3e6863616083ab12caa07ef25360 (diff)
downloadpkgsrc-727b68886fd9245b749759ca4a349d71c72e0df6.tar.gz
Undef bootstrap hack.
Diffstat (limited to 'pkgtools')
-rw-r--r--pkgtools/pkg_install/files/lib/pkg_io.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgtools/pkg_install/files/lib/pkg_io.c b/pkgtools/pkg_install/files/lib/pkg_io.c
index 82076d2f7ec..e961e814742 100644
--- a/pkgtools/pkg_install/files/lib/pkg_io.c
+++ b/pkgtools/pkg_install/files/lib/pkg_io.c
@@ -1,4 +1,4 @@
-/* $NetBSD: pkg_io.c,v 1.12 2017/04/19 21:42:50 joerg Exp $ */
+/* $NetBSD: pkg_io.c,v 1.13 2017/07/16 16:51:48 joerg Exp $ */
/*-
* Copyright (c) 2008, 2009 Joerg Sonnenberger <joerg@NetBSD.org>.
* All rights reserved.
@@ -36,7 +36,7 @@
#include <sys/cdefs.h>
#endif
-__RCSID("$NetBSD: pkg_io.c,v 1.12 2017/04/19 21:42:50 joerg Exp $");
+__RCSID("$NetBSD: pkg_io.c,v 1.13 2017/07/16 16:51:48 joerg Exp $");
#include <archive.h>
#include <archive_entry.h>
@@ -49,6 +49,7 @@ __RCSID("$NetBSD: pkg_io.c,v 1.12 2017/04/19 21:42:50 joerg Exp $");
#include <stdlib.h>
#ifdef BOOTSTRAP
+#undef IS_URL
#define IS_URL(x) 0
#else
#include <fetch.h>