diff options
author | miwi <miwi@FreeBSD.org> | 2008-12-28 19:47:50 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2008-12-28 19:47:50 +0800 |
commit | 85ab8cf2e6dd502835a4914c9aa24210278d2513 (patch) | |
tree | 14afd4fb7d9ae39a6d24b9415cd36aab66f84017 /lang/ypsilon/files/patch-gtk-hello.scm | |
parent | dd3ae1f8f11f97324624eed3d53000f1f4d03703 (diff) | |
download | freebsd-ports-gnome-85ab8cf2e6dd502835a4914c9aa24210278d2513.tar.gz freebsd-ports-gnome-85ab8cf2e6dd502835a4914c9aa24210278d2513.tar.zst freebsd-ports-gnome-85ab8cf2e6dd502835a4914c9aa24210278d2513.zip |
- 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>
Diffstat (limited to 'lang/ypsilon/files/patch-gtk-hello.scm')
-rw-r--r-- | lang/ypsilon/files/patch-gtk-hello.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/lang/ypsilon/files/patch-gtk-hello.scm b/lang/ypsilon/files/patch-gtk-hello.scm new file mode 100644 index 000000000000..0ae6e534254d --- /dev/null +++ b/lang/ypsilon/files/patch-gtk-hello.scm @@ -0,0 +1,18 @@ +--- 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")))) + |