From 794e2a277876f3bea654cbf546d381627ff1a690 Mon Sep 17 00:00:00 2001 From: Dimitrios Eftaxiopoulos Date: Sat, 22 Dec 2012 04:12:52 +0200 Subject: [PATCH] Add patch to enable all available features during build --- CMakeLists.txt | 38 ++++++++++---------- debian/patches/CMakeLists-txt.patch | 54 +++++++++++++++++++++++++++++ debian/patches/series | 1 + 3 files changed, 74 insertions(+), 19 deletions(-) create mode 100644 debian/patches/CMakeLists-txt.patch diff --git a/CMakeLists.txt b/CMakeLists.txt index 7f394c0..bbe4cab 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,32 +14,32 @@ set(MathGL_VERSION_MINOR 1) include(CMakeDependentOption) option(enable-double "Enable double precision in MathGL library" ON) -option(enable-simple "Slightly increase drawing speed but disable mglDataA class") -option(enable-mpi "Enable mpi") -option(enable-all "Enable all core features") -option(enable-all-widgets "Enable all Widgets") -option(enable-all-swig "Enable all SWIG based interfaces") +option(enable-simple "Slightly increase drawing speed but disable mglDataA class" OFF) +option(enable-mpi "Enable mpi" ON) +option(enable-all "Enable all core features" ON) +option(enable-all-widgets "Enable all Widgets" ON) +option(enable-all-swig "Enable all SWIG based interfaces" ON) option(enable-lgpl "Enable only LGPL part of MathGL" OFF) #option(enable-ltdl "Enable loading modules support") -option(enable-pthread "Enable POSIX threads support") -option(enable-gsl "Enable gsl support") -option(enable-jpeg "Enable jpeg support") +option(enable-pthread "Enable POSIX threads support" ON) +option(enable-gsl "Enable gsl support" ON) +option(enable-jpeg "Enable jpeg support" ON) option(enable-png "Enable png support" ON) option(enable-zlib "Enable zlib support" ON) #option(enable-u3d "Enable u3d support") -option(enable-pdf "Enable pdf support") -option(enable-gif "Enable gif support") -option(enable-hdf4 "Enable hdf4 support") -option(enable-hdf5 "Enable hdf5 support") +option(enable-pdf "Enable pdf support" ON) +option(enable-gif "Enable gif support" ON) +option(enable-hdf4 "Enable hdf4 support" ON) +option(enable-hdf5 "Enable hdf5 support" ON) option(enable-opengl "Enable OpenGL support" ON) -option(enable-glut "Enable glut support") -option(enable-fltk "Enable fltk widget") -option(enable-wx "Enable wxWidget widget") -option(enable-qt "Enable Qt4 widget") -option(enable-python "Enable python interface") -option(enable-octave "Enable octave interface") +option(enable-glut "Enable glut support" ON) +option(enable-fltk "Enable fltk widget" ON) +option(enable-wx "Enable wxWidget widget" ON) +option(enable-qt "Enable Qt4 widget" ON) +option(enable-python "Enable python interface" ON) +option(enable-octave "Enable octave interface" ON) option(enable-octave-install "Octave interface will install for all users" ON) -option(enable-doc "Enable documentation building") +option(enable-doc "Enable documentation building" ON) include_directories( ${MathGL_SOURCE_DIR}/include ${MathGL_BINARY_DIR}/include) diff --git a/debian/patches/CMakeLists-txt.patch b/debian/patches/CMakeLists-txt.patch new file mode 100644 index 0000000..06848c8 --- /dev/null +++ b/debian/patches/CMakeLists-txt.patch @@ -0,0 +1,54 @@ +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -14,32 +14,32 @@ + include(CMakeDependentOption) + + option(enable-double "Enable double precision in MathGL library" ON) +-option(enable-simple "Slightly increase drawing speed but disable mglDataA class") +-option(enable-mpi "Enable mpi") +-option(enable-all "Enable all core features") +-option(enable-all-widgets "Enable all Widgets") +-option(enable-all-swig "Enable all SWIG based interfaces") ++option(enable-simple "Slightly increase drawing speed but disable mglDataA class" OFF) ++option(enable-mpi "Enable mpi" ON) ++option(enable-all "Enable all core features" ON) ++option(enable-all-widgets "Enable all Widgets" ON) ++option(enable-all-swig "Enable all SWIG based interfaces" ON) + option(enable-lgpl "Enable only LGPL part of MathGL" OFF) + #option(enable-ltdl "Enable loading modules support") +-option(enable-pthread "Enable POSIX threads support") +-option(enable-gsl "Enable gsl support") +-option(enable-jpeg "Enable jpeg support") ++option(enable-pthread "Enable POSIX threads support" ON) ++option(enable-gsl "Enable gsl support" ON) ++option(enable-jpeg "Enable jpeg support" ON) + option(enable-png "Enable png support" ON) + option(enable-zlib "Enable zlib support" ON) + #option(enable-u3d "Enable u3d support") +-option(enable-pdf "Enable pdf support") +-option(enable-gif "Enable gif support") +-option(enable-hdf4 "Enable hdf4 support") +-option(enable-hdf5 "Enable hdf5 support") ++option(enable-pdf "Enable pdf support" ON) ++option(enable-gif "Enable gif support" ON) ++option(enable-hdf4 "Enable hdf4 support" ON) ++option(enable-hdf5 "Enable hdf5 support" ON) + option(enable-opengl "Enable OpenGL support" ON) +-option(enable-glut "Enable glut support") +-option(enable-fltk "Enable fltk widget") +-option(enable-wx "Enable wxWidget widget") +-option(enable-qt "Enable Qt4 widget") +-option(enable-python "Enable python interface") +-option(enable-octave "Enable octave interface") ++option(enable-glut "Enable glut support" ON) ++option(enable-fltk "Enable fltk widget" ON) ++option(enable-wx "Enable wxWidget widget" ON) ++option(enable-qt "Enable Qt4 widget" ON) ++option(enable-python "Enable python interface" ON) ++option(enable-octave "Enable octave interface" ON) + option(enable-octave-install "Octave interface will install for all users" ON) +-option(enable-doc "Enable documentation building") ++option(enable-doc "Enable documentation building" ON) + + include_directories( ${MathGL_SOURCE_DIR}/include ${MathGL_BINARY_DIR}/include) + diff --git a/debian/patches/series b/debian/patches/series index e69de29..4277de1 100644 --- a/debian/patches/series +++ b/debian/patches/series @@ -0,0 +1 @@ +CMakeLists-txt.patch -- 2.30.2