Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 56262 | Differences between
and this patch

Collapse All | Expand All

(-)qgis_0.10.0.orig/CMakeLists.txt (-2 / +12 lines)
Lines 44-49 Link Here
44
  SET (POSTGRESQL_PREFIX "" CACHE PATH "Path to POSTGRESQL base directory")
44
  SET (POSTGRESQL_PREFIX "" CACHE PATH "Path to POSTGRESQL base directory")
45
ENDIF (WITH_POSTGRESQL)
45
ENDIF (WITH_POSTGRESQL)
46
46
47
# try to configure and build the GPS importer plugin by default
48
SET (WITH_EXPAT TRUE CACHE BOOL "Determines whether GPS import plugin should be built")
49
50
# try to configure and build the GNU Scientific Library for the Georeferencer
51
SET (WITH_GSL TRUE CACHE BOOL "Determines whether the GNU Scientific library is used")
52
47
# try to configure and build python bindings by default
53
# try to configure and build python bindings by default
48
SET (WITH_BINDINGS TRUE CACHE BOOL "Determines whether python bindings should be built")
54
SET (WITH_BINDINGS TRUE CACHE BOOL "Determines whether python bindings should be built")
49
IF (WITH_BINDINGS)
55
IF (WITH_BINDINGS)
Lines 107-114 Link Here
107
IF (WITH_POSTGRESQL)
113
IF (WITH_POSTGRESQL)
108
  FIND_PACKAGE(Postgres) # PostgreSQL provider, SPIT plugin
114
  FIND_PACKAGE(Postgres) # PostgreSQL provider, SPIT plugin
109
ENDIF (WITH_POSTGRESQL)
115
ENDIF (WITH_POSTGRESQL)
110
FIND_PACKAGE(Expat)    # GPS importer plugin
116
IF (WITH_EXPAT)
111
FIND_PACKAGE(GSL)      # Georeferencer
117
  FIND_PACKAGE(Expat)    # GPS importer plugin
118
ENDIF (WITH_EXPAT)
119
IF (WITH_GSL)
120
  FIND_PACKAGE(GSL)      # Georeferencer
121
ENDIF (WITH_GSL)
112
IF (WITH_GRASS)
122
IF (WITH_GRASS)
113
  FIND_PACKAGE(GRASS)    # GRASS plugin
123
  FIND_PACKAGE(GRASS)    # GRASS plugin
114
ENDIF (WITH_GRASS)
124
ENDIF (WITH_GRASS)

Return to bug 56262