src/sod-{frontend,test}.asd.in: Define systems in separate packages.
authorMark Wooding <mdw@distorted.org.uk>
Tue, 22 Sep 2015 10:27:11 +0000 (11:27 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Thu, 8 Oct 2015 20:56:38 +0000 (21:56 +0100)
Now that the system-definition packages have started exporting
variables, we'll get annoying warnings if the different `defpackage'
forms have inconsistent exports.

src/sod-frontend.asd.in
src/sod-test.asd.in

index 591438c..e79dc5e 100644 (file)
 ;;; along with SOD; if not, write to the Free Software Foundation,
 ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
-(cl:defpackage #:sod-sysdef
+(cl:defpackage #:sod-frontend-sysdef
   (:use #:common-lisp #:asdf)
   (:export #:*version*))
 
-(cl:in-package #:sod-sysdef)
+(cl:in-package #:sod-frontend-sysdef)
 
 #|@-auto-@|# (load "auto.lisp")
 
index c9504aa..63154ae 100644 (file)
 ;;; along with SOD; if not, write to the Free Software Foundation,
 ;;; Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
-(cl:defpackage #:sod-sysdef
+(cl:defpackage #:sod-test-sysdef
   (:use #:common-lisp #:asdf)
   (:export #:*version*))
 
-(cl:in-package #:sod-sysdef)
+(cl:in-package #:sod-test-sysdef)
 
 #|@-auto-@|# (load "auto.lisp")