1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-19 19:59:43 +00:00
freebsd-ports/lang/ypsilon/files/patch-gtk-hello.scm
Martin Wilke e0913176f8 - Update to 0.9.6-update3
Notable changes:
- support for FreeBSD/amd64
- a bunch of new libraries
- several bugs are fixed

PR:		129974
Submitted by:	Vitaly Magerya <vmagerya@gmail.com>
2008-12-28 11:47:50 +00:00

19 lines
643 B
Scheme

--- example/gtk-hello.scm.orig 2008-12-27 17:14:34.000000000 +0200
+++ example/gtk-hello.scm 2008-12-27 17:15:07.000000000 +0200
@@ -7,6 +7,7 @@
;; Requirements:
;; Darwin: Gtk.framework
;; Linux: libgtk-x11-2.0.so.0
+;; FreeBSD: libgtk-x11-2.0.so
(import (rnrs)
(srfi :28)
@@ -16,6 +17,7 @@
(define libgtk-name (cond (on-linux "libgtk-x11-2.0.so.0")
(on-darwin "Gtk.framework/Gtk")
+ (on-freebsd "libgtk-x11-2.0.so")
(else
(assertion-violation #f "can not locate GTK library, unknown operating system"))))