freetype-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Devel] freetype enhancement request


From: Warren L Dodge
Subject: [Devel] freetype enhancement request
Date: Tue, 2 Mar 2004 15:31:54 -0800 (PST)

I build freetype-2.1.5 for soalris 2.5 and 8

In the way I have everything setup I needed to change freetype-config to make
things work.

I embed the runtime library is everything so the users don't need to worry
about LD_LIBRARY_PATH or wrappers etc.

I'd like to request a way to use configure to provide this -R switch
automatically rather then hand editing after the build.

Let me know your thoughts on this.


This section of freetype-config

if test "$echo_libs" = "yes" ; then
 libs="-lfreetype -lz"
 if test "${exec_prefix}/lib" != "/usr/lib" ; then
  echo -L${exec_prefix}/lib $libs
 else
  echo $libs
 fi
fi


became this

if test "$echo_libs" = "yes" ; then
 libs="-lfreetype -lz"
 if test "${exec_prefix}/lib" != "/usr/lib" ; then
  echo -R${exec_prefix}/lib -L${exec_prefix}/lib $libs
 else
  echo $libs
 fi
fi



reply via email to

[Prev in Thread] Current Thread [Next in Thread]