diff options
author | joerg <joerg@pkgsrc.org> | 2017-07-16 16:51:48 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2017-07-16 16:51:48 +0000 |
commit | 584183419e2f500454d6b5d962f705798e6b9a01 (patch) | |
tree | 8b9d943e303cc8e68653215f0f620de3945d01da /pkgtools/pkg_install | |
parent | b702b772ea5db56ad217e545d44e985a10dbe1d8 (diff) | |
download | pkgsrc-584183419e2f500454d6b5d962f705798e6b9a01.tar.gz |
Undef bootstrap hack.
Diffstat (limited to 'pkgtools/pkg_install')
-rw-r--r-- | pkgtools/pkg_install/files/lib/pkg_io.c | 5 |
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> |