picolisp

Unnamed repository; edit this file to name it for gitweb.
git clone https://logand.com/git/picolisp.git/
Log | Files | Refs | README | LICENSE

commit 2b75a3189600b0ff0a450c8ceedaf486d5ef1091
parent 089a6bde3891d3eb3a9e48f64dcd5e56d1063cb7
Author: Alexander Burger <abu@software-lab.de>
Date:   Fri,  9 Nov 2012 07:59:22 +0100

Slightly shortened Darwin OpenGL libs
Diffstat:
Mlib/openGl.l | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/lib/openGl.l b/lib/openGl.l @@ -1,4 +1,4 @@ -# 08nov12abu +# 09nov12abu # 27jul10jk # (c) Software Lab. Alexander Burger @@ -7,8 +7,8 @@ (if (= *OS "Darwin") (default - *GluLib "Frameworks/OpenGL.framework/OpenGL" - *GlutLib "Frameworks/GLUT.framework/GLUT" ) + *GluLib "OpenGL.framework/OpenGL" + *GlutLib "GLUT.framework/GLUT" ) (default *GluLib "libGLU.so" *GlutLib "libglut.so" ) )