planetarium: Add subsystem identification.
authorMatt Birkholz <matt@birchwood-abbey.net>
Mon, 6 Nov 2017 23:11:20 +0000 (16:11 -0700)
committerMatt Birkholz <matt@birchwood-abbey.net>
Mon, 6 Nov 2017 23:11:20 +0000 (16:11 -0700)
src/planetarium/NEWS
src/planetarium/configure.ac
src/planetarium/debian/changelog
src/planetarium/mit-make.scm

index e069d114f4dfbd312cb4934ffa0df50cad6fb239..16de1bee6390ea38ca834bf79c782640105aeaf2 100644 (file)
@@ -19,6 +19,11 @@ You should have received a copy of the GNU General Public License
 along with this plugin; if not, write to the Free Software Foundation,
 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 
+mit-scheme-pucked-planetarium 0.2 - Matt Birkholz, 2017-11-06
+=============================================================
+
+Add subsystem identification.
+
 mit-scheme-pucked-planetarium 0.1 - Matt Birkholz, 2017-02-06
 =============================================================
 
index bd1fc5aa4f18b6e362a1d464927bb81c13b9ea28..0c73fcd83b45b337adf8ecb47633875903c5285f 100644 (file)
@@ -1,7 +1,7 @@
 dnl Process this file with autoconf to produce a configure script.
 
 AC_INIT([MIT/GNU Scheme Pucked planetarium plugin],
-        [0.1],
+        [0.2],
         [matt@birchwood-abbey.net],
         [mit-scheme-pucked-planetarium])
 AC_CONFIG_SRCDIR([mit.pkg])
index 9ee27d03af4602e5a893d18591380c2ddfe904a8..0e12dd4681f33d2be952863a06ff8aa5c0a80359 100644 (file)
@@ -1,3 +1,9 @@
+mit-scheme-pucked-planetarium (0.2) birchwood; urgency=low
+
+  * Add subsystem identification.
+
+ -- Matt Birkholz <matt@birchwood-abbey.net>  Sun,  6 Nov 2017 16:00:00 -0700
+
 mit-scheme-pucked-planetarium (0.1) birchwood; urgency=low
 
   * Initial Debianization.
index dfda20e95e3ce3ff51c9698e2584cbc9e32536ab..89926e27fa05d5b6c0a0f722ba58c4262b420e94 100644 (file)
@@ -27,11 +27,12 @@ Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA.
 ;;; when it is available.  (This presumes the 3D portion was
 ;;; installed.)
 
-(with-working-directory-pathname
-    (directory-pathname (current-load-pathname))
+(with-working-directory-pathname (directory-pathname (current-load-pathname))
   (lambda ()
     (parameterize ((param:suppress-loading-message? #t))
       (load-package-set "mit")
       (load "mit-link")
       (if (not (warn-errors? (lambda () (load-option 'GL))))
-         (load-package-set "mit-3d")))))
\ No newline at end of file
+         (load-package-set "mit-3d")))))
+
+(add-subsystem-identification! "Planetarium" '(0 2))
\ No newline at end of file