Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge remote-tracking branch 'upstream/master'
  • Loading branch information
luipir committed Sep 11, 2013
2 parents 4200046 + ba4e438 commit 23af7f7
Show file tree
Hide file tree
Showing 46 changed files with 100,421 additions and 87,126 deletions.
16 changes: 10 additions & 6 deletions BUGS
@@ -1,27 +1,31 @@
Help I think I found a bug!
---------------------------

If you find a bug in QGIS, you can report it using the QGIS ticket/bug database at:
If you find a bug in QGIS, you can search for it

http://hub.qgis.org/search/index/quantum-gis/issues

If you can't find an exisitng ticket, report it using the QGIS ticket/bug database at:

http://hub.qgis.org/projects/quantum-gis/issues/new


Some hints about when you should file a bug:


- just because a bug is filed doesn't always mean we can or will fix it.
- Just because a bug is filed doesn't always mean we can or will fix it.
Sometimes people ask for things that will require many man hours to do and
offer little reward to work ratio benefit when compared to the other issues
in the queue. Also some things are simply not fixable due to whatever
technical reason.
- sometimes we don't fix a bug because the user's vision of how QGIS should
- Sometimes we don't fix a bug because the user's vision of how QGIS should
behave doesn't match ours. Hey we are all humans it can happen...
- always check that your bug has not already been filed by someone else since
- Always check that your bug has not already been filed by someone else since
dealing with duplicate tickets causes a lot of time wasting.
- always provide contact details and make sure you are subscribed to the
- Always provide contact details and make sure you are subscribed to the
ticket entry (either by adding yourself to CC field or by logging in before
filing the ticket).
- don't be offended if we don't see tickets as having the same priority as you
- Don't be offended if we don't see tickets as having the same priority as you
do. While we appreciate it's inconvenient if some issue prevents you doing
your work, we need to take the big picture view of things and focus on
things that affect the largest proportion of our user base.
13 changes: 7 additions & 6 deletions CMakeLists.txt
Expand Up @@ -102,9 +102,6 @@ ELSE (ANDROID)
SET (DEFAULT_WITH_QTMOBILITY FALSE)
ENDIF (ANDROID)
SET (WITH_QTMOBILITY ${DEFAULT_WITH_QTMOBILITY} CACHE BOOL "Determines if QtMobility related code should be build (for example internal GPS)")
IF (WITH_QTMOBILITY)
FIND_PACKAGE(QtMobility 1.1.0)
ENDIF (WITH_QTMOBILITY)

SET (WITH_GLOBE FALSE CACHE BOOL "Determines whether Globe plugin should be built")
IF (WITH_GLOBE)
Expand Down Expand Up @@ -234,6 +231,10 @@ IF (NOT QT_QTXML_FOUND OR NOT QT_QTNETWORK_FOUND OR NOT QT_QTSVG_FOUND OR NOT QT
MESSAGE(SEND_ERROR "Some Qt4 modules haven't been found!")
ENDIF (NOT QT_QTXML_FOUND OR NOT QT_QTNETWORK_FOUND OR NOT QT_QTSVG_FOUND OR NOT QT_QTSQL_FOUND OR NOT QT_QTWEBKIT_FOUND)

IF (WITH_QTMOBILITY)
FIND_PACKAGE(QtMobility 1.1.0)
ENDIF (WITH_QTMOBILITY)

IF (ANDROID)
SET (DEFAULT_WITH_TOUCH TRUE)
ELSE (ANDROID)
Expand Down Expand Up @@ -605,12 +606,12 @@ IF (GIT_MARKER)
# Get GIT remote and branch
EXECUTE_PROCESS(
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
COMMAND ${GITCOMMAND} name-rev --name-only HEAD OUTPUT_VARIABLE GIT_LOCAL_BRANCH
COMMAND ${GITCOMMAND} name-rev --name-only HEAD OUTPUT_VARIABLE GIT_LOCAL_BRANCH
)
STRING(STRIP "${GIT_LOCAL_BRANCH}" GIT_LOCAL_BRANCH)
EXECUTE_PROCESS(
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
COMMAND ${GITCOMMAND} config branch.${GIT_LOCAL_BRANCH}.remote OUTPUT_VARIABLE GIT_REMOTE
COMMAND ${GITCOMMAND} config branch.${GIT_LOCAL_BRANCH}.remote OUTPUT_VARIABLE GIT_REMOTE
)
STRING(STRIP "${GIT_REMOTE}" GIT_REMOTE)
EXECUTE_PROCESS(
Expand Down Expand Up @@ -681,7 +682,7 @@ ENDIF (APPLE)

# manual page - makes sense only on unix systems
IF (UNIX AND NOT APPLE)
INSTALL (FILES qgis.1 DESTINATION ${QGIS_MANUAL_DIR}/man1)
INSTALL (FILES qgis.1 qbrowser.1 DESTINATION ${QGIS_MANUAL_DIR}/man1)
ENDIF (UNIX AND NOT APPLE)

INSTALL(FILES cmake/FindQGIS.cmake DESTINATION ${QGIS_DATA_DIR})
Expand Down

0 comments on commit 23af7f7

Please sign in to comment.