2571ec5d09
Supported rendering modes are: * Bitmaps * Anti-aliased pixmaps * Texture maps * Outlines * Polygon meshes * Extruded polygon meshes FTGL uses the Freetype font library to open and decode standard font files. It then takes that output and stores it in a format most efficient for OpenGL rendering. FTGL is designed to be used in commercial quality software. It has been written with performance, robustness and simplicity in mind. FTGL is free software. You may use it, modify it and redistribute it under the terms of the MIT license or the GNU LGPL, at your option. ok merdely@
31 lines
1.0 KiB
Plaintext
31 lines
1.0 KiB
Plaintext
$OpenBSD: patch-configure,v 1.1.1.1 2009/06/06 05:18:56 phessler Exp $
|
|
--- configure.orig Thu Jun 12 08:32:56 2008
|
|
+++ configure Fri Jun 5 22:25:02 2009
|
|
@@ -23000,7 +23000,7 @@ if test "x$FRAMEWORK_OPENGL" = "x" ; then
|
|
|
|
{ echo "$as_me:$LINENO: checking for GLU library" >&5
|
|
echo $ECHO_N "checking for GLU library... $ECHO_C" >&6; }
|
|
-LIBS="-lGLU $GL_LIBS"
|
|
+LIBS="$LIBS -lm -lGLU $GL_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -23053,7 +23053,7 @@ rm -f core conftest.err conftest.$ac_objext conftest_i
|
|
conftest$ac_exeext conftest.$ac_ext
|
|
if test "x$HAVE_GLU" = xno ; then
|
|
if test "x$GL_X_LIBS" != x ; then
|
|
- LIBS="-lGLU $GL_LIBS $GL_X_LIBS"
|
|
+ LIBS="-lGLU -lm $GL_LIBS $GL_X_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
/* confdefs.h. */
|
|
_ACEOF
|
|
@@ -23109,7 +23109,7 @@ fi
|
|
if test "x$HAVE_GLU" = xyes ; then
|
|
{ echo "$as_me:$LINENO: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6; }
|
|
- GL_LIBS="$LIBS"
|
|
+ GL_LIBS="$LIBS -lm"
|
|
else
|
|
{ echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6; }
|