Skip to content

Commit e6718b6

Browse files
committed
- debian packaging update for 1.7.1
- composer/wmsserver fix for lenny (Qt <4.5)
1 parent 8c3e066 commit e6718b6

File tree

6 files changed

+14
-3
lines changed

6 files changed

+14
-3
lines changed

debian/changelog

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
qgis (1.7.1-1) UNRELEASED; urgency=low
2+
3+
* new upstream bugfix release
4+
5+
-- Jürgen E. Fischer <jef@norbit.de> Sat, 24 Sep 2011 13:57:22 +0200
6+
17
qgis (1.7.0) UNRELEASED; urgency=low
28

39
* new development version 1.7 after branch

debian/qgis-common.install

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
usr/share/qgis/doc/CODING
22
usr/share/qgis/doc/favicon.ico
33
usr/share/qgis/doc/index.html
4-
usr/share/qgis/doc/qgisdoc.css
4+
usr/share/qgis/doc/style.css
55
usr/share/qgis/doc/AUTHORS
66
usr/share/qgis/doc/SPONSORS
77
usr/share/qgis/doc/CONTRIBUTORS

debian/rules

+1-1
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ binary-indep: build install
143143
binary-arch: build install
144144
dh_testdir
145145
dh_testroot
146-
dh_installchangelogs ChangeLog
146+
dh_installchangelogs CHANGELOG
147147
dh_installdocs
148148
dh_installexamples
149149
dh_install --sourcedir=debian/tmp

doc/CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,13 @@ INCLUDE(Txt2Tags)
22
FIND_TXT2TAGS()
33

44
IF(TXT2TAGS_EXECUTABLE)
5-
ADD_TXT2TAGS_FILES(QGIS_DOC_FILES INSTALL.t2t CODING.t2t)
5+
ADD_TXT2TAGS_FILES(QGIS_DOC_FILES INSTALL.t2t CODING.t2t changelog.t2t)
66
ADD_CUSTOM_TARGET (t2tdoc ALL DEPENDS ${QGIS_DOC_FILES})
77
ELSE(TXT2TAGS_EXECUTABLE)
88
SET(QGIS_DOC_FILES
99
${CMAKE_SOURCE_DIR}/INSTALL
1010
${CMAKE_SOURCE_DIR}/CODING
11+
${CMAKE_SOURCE_DIR}/CHANGELOG
1112
)
1213
ENDIF(TXT2TAGS_EXECUTABLE)
1314

src/app/composer/qgscomposer.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -518,7 +518,9 @@ class QgsPaintEngineHack : public QPaintEngine
518518
// | QPaintEngine::PerspectiveTransform
519519
| QPaintEngine::BlendModes
520520
// | QPaintEngine::ObjectBoundingModeGradients
521+
#if QT_VERSION >= 0x040500
521522
| QPaintEngine::RasterOpModes
523+
#endif
522524
| QPaintEngine::PaintOutsidePaintEvent
523525
);
524526
}

src/mapserver/qgswmsserver.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,9 @@ class QgsPaintEngineHack : public QPaintEngine
362362
// | QPaintEngine::PerspectiveTransform
363363
| QPaintEngine::BlendModes
364364
// | QPaintEngine::ObjectBoundingModeGradients
365+
#if QT_VERSION >= 0x040500
365366
| QPaintEngine::RasterOpModes
367+
#endif
366368
| QPaintEngine::PaintOutsidePaintEvent
367369
);
368370
}

0 commit comments

Comments
 (0)