Skip to content

Commit

Permalink
[snmp] fixed ASDF system files for feature.lisp
Browse files Browse the repository at this point in the history
  • Loading branch information
binghe committed Jul 9, 2010
1 parent 55fcea4 commit 562ad65
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 0 deletions.
3 changes: 3 additions & 0 deletions snmp-dev.asd
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
(make-package ':snmp-system
:use '(:common-lisp :asdf)))

(unless (find-package ':snmp-features)
(load (merge-pathnames #p"features.lisp" *load-truename*)))

(in-package :snmp-system)

(defsystem snmp-dev
Expand Down
3 changes: 3 additions & 0 deletions snmp-mib.asd
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
(make-package ':snmp-system
:use '(:common-lisp :asdf)))

(unless (find-package ':snmp-features)
(load (merge-pathnames #p"features.lisp" *load-truename*)))

(in-package :snmp-system)

(defparameter *mib.lisp-expr*
Expand Down
3 changes: 3 additions & 0 deletions snmp-server.asd
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
(make-package ':snmp-system
:use '(:common-lisp :asdf)))

(unless (find-package ':snmp-features)
(load (merge-pathnames #p"features.lisp" *load-truename*)))

(in-package :snmp-system)

(defsystem snmp-server
Expand Down
3 changes: 3 additions & 0 deletions snmp-test.asd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
(make-package ':snmp-system
:use '(:common-lisp :asdf)))

(unless (find-package ':snmp-features)
(load (merge-pathnames #p"features.lisp" *load-truename*)))

(in-package :snmp-system)

(defsystem snmp-test
Expand Down
3 changes: 3 additions & 0 deletions snmp-ui.asd
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
(make-package ':snmp-system
:use '(:common-lisp :asdf)))

(unless (find-package ':snmp-features)
(load (merge-pathnames #p"features.lisp" *load-truename*)))

(in-package :snmp-system)

#+(and lispworks capi)
Expand Down
3 changes: 3 additions & 0 deletions snmp.asd
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
(make-package ':snmp-system
:use '(:common-lisp :asdf)))

(unless (find-package ':snmp-features)
(load (merge-pathnames #p"features.lisp" *load-truename*)))

(in-package :snmp-system)

(defsystem snmp
Expand Down

0 comments on commit 562ad65

Please sign in to comment.