traverso-commit
[Top][All Lists]
Advanced

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

[Traverso-commit] traverso CMakeLists.txt


From: Remon Sijrier
Subject: [Traverso-commit] traverso CMakeLists.txt
Date: Thu, 06 Dec 2007 18:49:49 +0000

CVSROOT:        /sources/traverso
Module name:    traverso
Changes by:     Remon Sijrier <r_sijrier>       07/12/06 18:49:49

Modified files:
        .              : CMakeLists.txt 

Log message:
        * disable OpenGL support by default, it's currently unclear if there is 
a benefit using it, and it's of course up to the packager to enable it anyways
        * if librdf.h wasn't found in /usr/include/ look for it in 
/usr/include/redland

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/traverso/CMakeLists.txt?cvsroot=traverso&r1=1.18&r2=1.19

Patches:
Index: CMakeLists.txt
===================================================================
RCS file: /sources/traverso/traverso/CMakeLists.txt,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -b -r1.18 -r1.19
--- CMakeLists.txt      3 Dec 2007 16:26:37 -0000       1.18
+++ CMakeLists.txt      6 Dec 2007 18:49:49 -0000       1.19
@@ -28,7 +28,7 @@
 OPTION(WANT_MP3_ENCODE "Include mp3 encoding support, for creating mp3 files" 
OFF)
 OPTION(WANT_PCH        "Use precompiled headers" OFF)
 OPTION(WANT_DEBUG      "Debug build" OFF)
-OPTION(WANT_OPENGL     "Build Traverso with OpenGL support" ON)
+OPTION(WANT_OPENGL     "Build Traverso with OpenGL support" OFF)
 OPTION(WANT_TRAVERSO_DEBUG "Provides 4 levels of debug ouput on the command 
line, always on for DEBUG builds" OFF)
 OPTION(WANT_THREAD_CHECK       "Checks at runtime if functions are called from 
the correct thread, used by developers for debugging" OFF)
 OPTION(WANT_VECLIB_OPTIMIZATIONS "Build with veclib optimizations (Only for 
PPC based Mac OS X)" OFF)
@@ -167,7 +167,10 @@
        ELSE(USE_SYSTEM_SLV2_LIBRARY)
                CHECK_INCLUDE_FILE("librdf.h" HAVE_LIBRDF_H)
                IF(NOT HAVE_LIBRDF_H)
+                       CHECK_INCLUDE_FILE("redland/librdf.h" 
HAVE_REDLAND_LIBRDF_H)
+                       IF(NOT HAVE_REDLAND_LIBRDF_H)
                        MESSAGE(FATAL_ERROR "lv2 support requested using 
internal slv2 lib, but the needed rdf development headers could not be 
found!\nPlease install the rdf development package (Usually called librdf-dev), 
remove CMakeCache.txt and run cmake again")
+                       ENDIF(NOT HAVE_REDLAND_LIBRDF_H)
                ENDIF(NOT HAVE_LIBRDF_H)
                
                SET(USE_INTERNAL_SLV2_LIB TRUE)




reply via email to

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