From: Matt Birkholz Date: Thu, 22 Mar 2018 20:31:11 +0000 (-0700) Subject: gl: Version 0.2. X-Git-Tag: mit-scheme-pucked-gl-0.2 X-Git-Url: https://birchwood-abbey.net/git?a=commitdiff_plain;h=e88253b118e3d7e54584d924f4db3d28c49438da;p=mit-scheme.git gl: Version 0.2. --- diff --git a/src/gl/NEWS b/src/gl/NEWS index ebb808b03..c3a32bce8 100644 --- a/src/gl/NEWS +++ b/src/gl/NEWS @@ -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-gl 0.2 - Matt Birkholz, 2018-03-20 +==================================================== + +Use with-glib-lock as required by the new version of the gtk plugin. + mit-scheme-pucked-gl 0.1 - Matt Birkholz, 2016-06-12 ==================================================== diff --git a/src/gl/configure.ac b/src/gl/configure.ac index 945b1ddce..db44eb312 100644 --- a/src/gl/configure.ac +++ b/src/gl/configure.ac @@ -2,7 +2,7 @@ dnl Process this file with autoconf to produce a configure script. AC_PREREQ([2.69]) AC_INIT([MIT/GNU Scheme Pucked gl plugin], - [0.1], + [0.2], [matt@birchwood-abbey.net], [mit-scheme-pucked-gl]) AC_CONFIG_SRCDIR([gl.pkg]) diff --git a/src/gl/debian/changelog b/src/gl/debian/changelog index fb2863e8e..e58f9c738 100644 --- a/src/gl/debian/changelog +++ b/src/gl/debian/changelog @@ -1,3 +1,9 @@ +mit-scheme-pucked-gl (0.2) birchwood; urgency=low + + * Use with-glib-lock as required by the new version of the gtk plugin. + + -- Matt Birkholz Tue, 20 Mar 20188 00:00:00 -0700 + mit-scheme-pucked-gl (0.1) birchwood; urgency=low * Initial Debianization. diff --git a/src/gl/debian/control b/src/gl/debian/control index a9e5d0257..616ffce77 100644 --- a/src/gl/debian/control +++ b/src/gl/debian/control @@ -3,7 +3,7 @@ Section: lisp Priority: optional Maintainer: Matt Birkholz Build-Depends: debhelper (>= 9), autotools-dev, libltdl-dev, - mit-scheme-pucked-gtk (>= 0.5), + mit-scheme-pucked-gtk (>= 0.6), texinfo, texlive, libglu1-mesa-dev Standards-Version: 3.9.4 @@ -13,7 +13,7 @@ Vcs-Browser: http://birchwood-abbey.net/gitweb/?p=mit-scheme.git;a=summary Package: mit-scheme-pucked-gl Architecture: any -Depends: mit-scheme-pucked-gtk (>= 0.5), ${shlibs:Depends}, ${misc:Depends} +Depends: mit-scheme-pucked-gtk (>= 0.6), ${shlibs:Depends}, ${misc:Depends} Description: OpenGL plugin for MIT/GNU Scheme Pucked This package provides mit-scheme-pucked with a dynamically loadable wrapper of a small portion of the OpenGL C API as implemented by the diff --git a/src/gl/make.scm b/src/gl/make.scm index 6b863acb1..2ff6af90e 100644 --- a/src/gl/make.scm +++ b/src/gl/make.scm @@ -6,4 +6,4 @@ (with-loader-base-uri (system-library-uri "gl/") (lambda () (load-package-set "gl"))) -(add-subsystem-identification! "GL" '(0 1)) \ No newline at end of file +(add-subsystem-identification! "GL" '(0 2)) \ No newline at end of file