better default library names

cvs
Slava Pestov 2005-11-23 02:44:06 +00:00
parent 81c39d3368
commit caf566e352
3 changed files with 13 additions and 13 deletions

View File

@ -1,20 +1,20 @@
- flip-branches optimizer not working
+ 0.80:
- flip-branches optimizer not working
- prettyprint:
{ V{ T{ literal T{ value f f G:110886 } f } T{ value
f f G:110887
} } }
- make-pane: if no input, just return pane-output
- intrinsic char-slot set-char-slot for x86
- fix remaining GL issues
- closing ui does not stop timers
- adding/removing timers automatically for animated gadgets
- saving image with UI open
- default library names are not useful
- fix remaining GL issues
- 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
loses the vertical bar
- signal handler should not lose stack pointers

View File

@ -1,9 +1,9 @@
USING: alien io kernel parser sequences ;
"freetype" {
{ [ os "macosx" = ] [ "libfreetype.dylib" ] }
{ [ os "macosx" = ] [ "libfreetype.dylib.6" ] }
{ [ os "win32" = ] [ "freetype6.dll" ] }
{ [ t ] [ "libfreetype.so" ] }
{ [ t ] [ "libfreetype.so.6" ] }
} cond "cdecl" add-library
[

View File

@ -7,8 +7,8 @@ USING: alien io kernel parser sequences ;
"glu" "glu32.dll" "stdcall" add-library
] }
{ [ t ] [
"gl" "libGL.so" "cdecl" add-library
"glu" "libGLU.so" "cdecl" add-library
"gl" "libGL.so.1" "cdecl" add-library
"glu" "libGLU.so.1" "cdecl" add-library
] }
} cond