From 8e16f5e7e6ce4e19926cadb864d6de167890310b Mon Sep 17 00:00:00 2001
From: Lyle Johnson <lyle@lylejohnson.name>
Date: Tue, 13 Oct 2009 15:44:39 -0500
Subject: [PATCH] Modified $CFLAGS and $LDFLAGS in extconf.rb for OS X.

I added -I/usr/local/include to $CFLAGS and -L/usr/local/lib to
$LDFLAGS for the Darwin build, so that it would find the jpeg and
tiff libs on my system.
---
 ext/fox16/extconf.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/ext/fox16/extconf.rb b/ext/fox16/extconf.rb
index 196efd3..5df4807 100755
--- a/ext/fox16/extconf.rb
+++ b/ext/fox16/extconf.rb
@@ -80,6 +80,8 @@ def do_rake_compiler_setup
   elsif RUBY_PLATFORM =~ /darwin/
     $CFLAGS = $CFLAGS + " -I/usr/X11/include" # for built-in libpng
     $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
   end
   $libs = append_library($libs, "stdc++")
   have_header("sys/time.h") unless RUBY_PLATFORM =~ /mingw/
-- 
GitLab