[Hdrflow-svn] SF.net SVN: hdrflow: [441] trunk/lib/openlibraries
Status: Pre-Alpha
Brought to you by:
glslang
From: <gl...@us...> - 2008-04-22 19:32:08
|
Revision: 441 http://hdrflow.svn.sourceforge.net/hdrflow/?rev=441&view=rev Author: glslang Date: 2008-04-22 12:32:03 -0700 (Tue, 22 Apr 2008) Log Message: ----------- Leopard portability fixes Modified Paths: -------------- trunk/lib/openlibraries/configure.ac trunk/lib/openlibraries/src/openimagelib/plugins/Makefile.am Modified: trunk/lib/openlibraries/configure.ac =================================================================== --- trunk/lib/openlibraries/configure.ac 2008-03-31 21:10:39 UTC (rev 440) +++ trunk/lib/openlibraries/configure.ac 2008-04-22 19:32:03 UTC (rev 441) @@ -96,10 +96,16 @@ AC_CHECK_SQLITE3( ) dnl check for X11 -AC_PATH_XTRA -if test x"$no_x" != "xyes"; then - AC_DEFINE(HAVE_X11,1,[Define this if you have X11R6 installed]) -fi +case $host in + *-apple-darwin*) + ;; + *) + AC_PATH_XTRA + if test x"$no_x" != "xyes"; then + AC_DEFINE(HAVE_X11,1,[Define this if you have X11R6 installed]) + fi + ;; +esac AM_CONDITIONAL(HAVE_X11, [test x"$no_x" != "xyes"]) dnl OpenGL, GLU, GLUT support @@ -125,11 +131,11 @@ dnl GLEW support AC_CHECK_GLEW( ) -dnl NVIDIA Cg runtime support -AC_CHECK_CG_RUNTIME( ) +#dnl NVIDIA Cg runtime support +#AC_CHECK_CG_RUNTIME( ) -dnl NVIDIA Gelato(tm) runtime support -AC_CHECK_GELATO_RUNTIME( ) +#dnl NVIDIA Gelato(tm) runtime support +#AC_CHECK_GELATO_RUNTIME( ) dnl OFX support AC_CHECK_OFX( ) Modified: trunk/lib/openlibraries/src/openimagelib/plugins/Makefile.am =================================================================== --- trunk/lib/openlibraries/src/openimagelib/plugins/Makefile.am 2008-03-31 21:10:39 UTC (rev 440) +++ trunk/lib/openlibraries/src/openimagelib/plugins/Makefile.am 2008-04-22 19:32:03 UTC (rev 441) @@ -10,7 +10,6 @@ exr \ hdr \ jpg \ - png \ sgi \ tga \ tiff \ This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |