better default library names
parent
81c39d3368
commit
caf566e352
|
@ -1,20 +1,20 @@
|
||||||
- flip-branches optimizer not working
|
+ 0.80:
|
||||||
|
|
||||||
|
- flip-branches optimizer not working
|
||||||
- prettyprint:
|
- prettyprint:
|
||||||
|
|
||||||
{ V{ T{ literal T{ value f f G:110886 } f } T{ value
|
{ V{ T{ literal T{ value f f G:110886 } f } T{ value
|
||||||
f f G:110887
|
f f G:110887
|
||||||
} } }
|
} } }
|
||||||
|
|
||||||
- make-pane: if no input, just return pane-output
|
|
||||||
- intrinsic char-slot set-char-slot for x86
|
- intrinsic char-slot set-char-slot for x86
|
||||||
|
- fix remaining GL issues
|
||||||
- closing ui does not stop timers
|
- closing ui does not stop timers
|
||||||
- adding/removing timers automatically for animated gadgets
|
- adding/removing timers automatically for animated gadgets
|
||||||
- saving image with UI open
|
- saving image with UI open
|
||||||
|
|
||||||
- default library names are not useful
|
|
||||||
- fix remaining GL issues
|
|
||||||
- fix up the min thumb size hack
|
- fix up the min thumb size hack
|
||||||
|
|
||||||
|
- make-pane: if no input, just return pane-output
|
||||||
|
|
||||||
- bug: click tutorial, full screen, the right-most arrow icon
|
- bug: click tutorial, full screen, the right-most arrow icon
|
||||||
loses the vertical bar
|
loses the vertical bar
|
||||||
- signal handler should not lose stack pointers
|
- signal handler should not lose stack pointers
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
USING: alien io kernel parser sequences ;
|
USING: alien io kernel parser sequences ;
|
||||||
|
|
||||||
"freetype" {
|
"freetype" {
|
||||||
{ [ os "macosx" = ] [ "libfreetype.dylib" ] }
|
{ [ os "macosx" = ] [ "libfreetype.dylib.6" ] }
|
||||||
{ [ os "win32" = ] [ "freetype6.dll" ] }
|
{ [ os "win32" = ] [ "freetype6.dll" ] }
|
||||||
{ [ t ] [ "libfreetype.so" ] }
|
{ [ t ] [ "libfreetype.so.6" ] }
|
||||||
} cond "cdecl" add-library
|
} cond "cdecl" add-library
|
||||||
|
|
||||||
[
|
[
|
||||||
|
|
|
@ -7,8 +7,8 @@ USING: alien io kernel parser sequences ;
|
||||||
"glu" "glu32.dll" "stdcall" add-library
|
"glu" "glu32.dll" "stdcall" add-library
|
||||||
] }
|
] }
|
||||||
{ [ t ] [
|
{ [ t ] [
|
||||||
"gl" "libGL.so" "cdecl" add-library
|
"gl" "libGL.so.1" "cdecl" add-library
|
||||||
"glu" "libGLU.so" "cdecl" add-library
|
"glu" "libGLU.so.1" "cdecl" add-library
|
||||||
] }
|
] }
|
||||||
} cond
|
} cond
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue