Description: replace complicated statements by a simple require 'ttfunk'
 ttfunk is available as a Debian package. We do not need $LOAD_PATH
 manipulations and rescues to load this library.
Author: Cédric Boutillier <cedric.boutillier@gmail.com>
Last-Update: 2011-11-24

--- a/lib/prawn/core.rb
+++ b/lib/prawn/core.rb
@@ -6,19 +6,7 @@
 # This is free software. Please see the LICENSE and COPYING files for details.
 
 require "set"
-
-%w[ttfunk/lib].each do |dep|
-  $LOAD_PATH.unshift(File.dirname(__FILE__) + "/../../vendor/#{dep}")
-end
-
-begin
-  require 'ttfunk'
-rescue LoadError
-  puts "Failed to load ttfunk. If you are running Prawn from git:"
-  puts "  git submodule init"
-  puts "  git submodule update"
-  exit
-end
+require 'ttfunk'
 
 module Prawn
   extend self
