Skip to content
Snippets Groups Projects
Commit 90cda2e4 authored by Lyle Johnson's avatar Lyle Johnson
Browse files

Add libXft to the list of link libraries for OS X builds

parent 116a0d11
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,7 @@ def do_rake_compiler_setup
$LDFLAGS = $LDFLAGS + " -L/usr/X11/lib" # for built-in libpng
$CFLAGS = $CFLAGS + " -I/usr/local/include" # for libjpeg and libtiff
$LDFLAGS = $LDFLAGS + " -L/usr/local/lib" # for libjpeg and libtiff
%w{Xft}.each {|lib| $libs = append_library($libs, lib) }
end
$libs = append_library($libs, "stdc++")
have_header("sys/time.h") unless RUBY_PLATFORM =~ /mingw/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment