[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Chicken-janitors] #1156: compiler warnings when import specifiers are u
From: |
Chicken Trac |
Subject: |
[Chicken-janitors] #1156: compiler warnings when import specifiers are used for setup-api and setup-download |
Date: |
Fri, 19 Sep 2014 01:15:51 -0000 |
#1156: compiler warnings when import specifiers are used for setup-api and
setup-
download
----------------------------------------------------------+-----------------
Reporter: mario | Owner:
Type: defect | Status: new
Priority: minor | Milestone:
someday
Component: unknown | Version: 4.9.x
Keywords: setup-api, setup-download, import specifiers |
----------------------------------------------------------+-----------------
Here are some examples:
{{{
$ echo '(module sa () (import chicken scheme) (use (only setup-api
version>=?)))' > sa.scm
$ csc sa.scm
Warning: extension `setup-api' is currently not installed
$ echo '(module sa () (import chicken scheme) (use (except setup-api
version>=?)))' > sa.scm
$ csc sa.scm
Warning: extension `setup-api' is currently not installed
$ echo '(module sa () (import chicken scheme) (use (except setup-download
latest-version)))' > sa.scm
$ csc sa.scm
Warning: extension `setup-download' is currently not installed
}}}
However,
{{{
$ echo '(module sa () (import chicken scheme) (use setup-api))' > sa.scm
$ csc sa.scm
}}}
produces no warning.
--
Ticket URL: <http://bugs.call-cc.org/ticket/1156>
CHICKEN Scheme <http://www.call-with-current-continuation.org/>
CHICKEN Scheme is a compiler for the Scheme programming language.
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Chicken-janitors] #1156: compiler warnings when import specifiers are used for setup-api and setup-download,
Chicken Trac <=