Merge lp:~valavanisalex/ubuntu/precise/inkscape/fix-943984 into lp:ubuntu/precise/inkscape

Proposed by Alex Valavanis
Status: Merged
Merged at revision: 65
Proposed branch: lp:~valavanisalex/ubuntu/precise/inkscape/fix-943984
Merge into: lp:ubuntu/precise/inkscape
Diff against target: 1746 lines (+434/-252)
43 files modified
Info.plist (+3/-3)
Makefile.in (+2/-0)
build.xml (+2/-2)
config.guess (+31/-18)
config.sub (+39/-26)
configure (+215/-134)
configure.ac (+6/-2)
debian/changelog (+8/-0)
debian/control (+1/-1)
doc/Makefile.in (+4/-2)
inkscape.spec (+1/-1)
share/Makefile.in (+4/-2)
share/clipart/Makefile.in (+4/-2)
share/examples/Makefile.in (+4/-2)
share/extensions/Barcode/Makefile.in (+4/-2)
share/extensions/Makefile.in (+4/-2)
share/extensions/Poly3DObjects/Makefile.in (+4/-2)
share/extensions/alphabet_soup/Makefile.in (+4/-2)
share/extensions/test/Makefile.in (+4/-2)
share/extensions/xaml2svg/Makefile.in (+4/-2)
share/filters/Makefile.in (+4/-2)
share/fonts/Makefile.in (+4/-2)
share/gradients/Makefile.in (+4/-2)
share/icons/Makefile.in (+4/-2)
share/icons/application/16x16/Makefile.in (+4/-2)
share/icons/application/22x22/Makefile.in (+4/-2)
share/icons/application/24x24/Makefile.in (+4/-2)
share/icons/application/256x256/Makefile.in (+4/-2)
share/icons/application/32x32/Makefile.in (+4/-2)
share/icons/application/48x48/Makefile.in (+4/-2)
share/icons/application/Makefile.in (+4/-2)
share/keys/Makefile.in (+4/-2)
share/markers/Makefile.in (+4/-2)
share/palettes/Makefile.in (+4/-2)
share/patterns/Makefile.in (+4/-2)
share/screens/Makefile.in (+4/-2)
share/templates/Makefile.in (+4/-2)
share/tutorials/Makefile.in (+4/-2)
share/ui/Makefile.in (+4/-2)
src/Makefile.in (+4/-2)
src/color-profile.cpp (+1/-1)
src/display/nr-filter-flood.cpp (+4/-3)
src/inkscape-version.cpp (+1/-1)
To merge this branch: bzr merge lp:~valavanisalex/ubuntu/precise/inkscape/fix-943984
Reviewer Review Type Date Requested Status
Ubuntu branches Pending
Review via email: mp+95434@code.launchpad.net

Description of the change

This new upstream version should fix build failures on older versions of Ubuntu, which will be useful for later backports. I have also sorted out the LCMS2 build-dependency to help with the lcms migration.

To post a comment you must log in.

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'Info.plist'
--- Info.plist 2012-02-16 10:21:27 +0000
+++ Info.plist 2012-03-01 18:39:30 +0000
@@ -7,7 +7,7 @@
7 <key>CFBundleExecutable</key>7 <key>CFBundleExecutable</key>
8 <string>Inkscape</string>8 <string>Inkscape</string>
9 <key>CFBundleGetInfoString</key>9 <key>CFBundleGetInfoString</key>
10 <string>0.48.3, Copyright 2003-2009 Inkscape Developers</string>10 <string>0.48.3.1, Copyright 2003-2009 Inkscape Developers</string>
11 <key>CFBundleIconFile</key>11 <key>CFBundleIconFile</key>
12 <string>Inkscape.icns</string>12 <string>Inkscape.icns</string>
13 <key>CFBundleIdentifier</key>13 <key>CFBundleIdentifier</key>
@@ -323,11 +323,11 @@
323 <key>CFBundlePackageType</key>323 <key>CFBundlePackageType</key>
324 <string>APPL</string>324 <string>APPL</string>
325 <key>CFBundleShortVersionString</key>325 <key>CFBundleShortVersionString</key>
326 <string>0.48.3</string>326 <string>0.48.3.1</string>
327 <key>CFBundleSignature</key>327 <key>CFBundleSignature</key>
328 <string>Inks</string>328 <string>Inks</string>
329 <key>CFBundleVersion</key>329 <key>CFBundleVersion</key>
330 <string>0.48.3</string>330 <string>0.48.3.1</string>
331 <key>NSHumanReadableCopyright</key>331 <key>NSHumanReadableCopyright</key>
332 <string>Copyright 2009 Inkscape Developers, GNU General Public License.</string>332 <string>Copyright 2009 Inkscape Developers, GNU General Public License.</string>
333 <key>LSMinimumSystemVersion</key>333 <key>LSMinimumSystemVersion</key>
334334
=== modified file 'Makefile.in'
--- Makefile.in 2012-02-16 10:21:27 +0000
+++ Makefile.in 2012-03-01 18:39:30 +0000
@@ -296,6 +296,8 @@
296MSGFMT = @MSGFMT@296MSGFMT = @MSGFMT@
297MSGFMT_OPTS = @MSGFMT_OPTS@297MSGFMT_OPTS = @MSGFMT_OPTS@
298MSGMERGE = @MSGMERGE@298MSGMERGE = @MSGMERGE@
299NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
300NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
299OBJEXT = @OBJEXT@301OBJEXT = @OBJEXT@
300PACKAGE = @PACKAGE@302PACKAGE = @PACKAGE@
301PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@303PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
302304
=== modified file 'build.xml'
--- build.xml 2012-02-16 10:21:27 +0000
+++ build.xml 2012-03-01 18:39:30 +0000
@@ -42,7 +42,7 @@
42 </description>42 </description>
4343
44 <!-- set global properties for this build -->44 <!-- set global properties for this build -->
45 <property name="version" value="0.48.3"/>45 <property name="version" value="0.48.3.1"/>
46 <property name="src" location="src"/>46 <property name="src" location="src"/>
47 <property name="lib" location="lib"/>47 <property name="lib" location="lib"/>
48 <property name="build" location="build"/>48 <property name="build" location="build"/>
@@ -153,7 +153,7 @@
153 #define HAVE_OPENMP 1153 #define HAVE_OPENMP 1
154 #define HAVE_TR1_UNORDERED_SET 1154 #define HAVE_TR1_UNORDERED_SET 1
155155
156 #define ENABLE_LCMS 1156 #define HAVE_LIBLCMS1 1
157157
158 #define ENABLE_NLS 1158 #define ENABLE_NLS 1
159 #define HAVE_BIND_TEXTDOMAIN_CODESET 1159 #define HAVE_BIND_TEXTDOMAIN_CODESET 1
160160
=== modified file 'config.guess'
--- config.guess 2011-07-10 11:35:30 +0000
+++ config.guess 2012-03-01 18:39:30 +0000
@@ -2,9 +2,9 @@
2# Attempt to guess a canonical system name.2# Attempt to guess a canonical system name.
3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
5# 2011 Free Software Foundation, Inc.5# 2011, 2012 Free Software Foundation, Inc.
66
7timestamp='2011-05-11'7timestamp='2012-02-10'
88
9# This file is free software; you can redistribute it and/or modify it9# This file is free software; you can redistribute it and/or modify it
10# under the terms of the GNU General Public License as published by10# under the terms of the GNU General Public License as published by
@@ -17,9 +17,7 @@
17# General Public License for more details.17# General Public License for more details.
18#18#
19# You should have received a copy of the GNU General Public License19# You should have received a copy of the GNU General Public License
20# along with this program; if not, write to the Free Software20# along with this program; if not, see <http://www.gnu.org/licenses/>.
21# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
22# 02110-1301, USA.
23#21#
24# As a special exception to the GNU General Public License, if you22# As a special exception to the GNU General Public License, if you
25# distribute this file as part of a program that contains a23# distribute this file as part of a program that contains a
@@ -57,8 +55,8 @@
5755
58Originally written by Per Bothner.56Originally written by Per Bothner.
59Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,57Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
602001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free582001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
61Software Foundation, Inc.59Free Software Foundation, Inc.
6260
63This is free software; see the source for copying conditions. There is NO61This is free software; see the source for copying conditions. There is NO
64warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."62warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -145,7 +143,7 @@
145case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in143case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in
146 *:NetBSD:*:*)144 *:NetBSD:*:*)
147 # NetBSD (nbsd) targets should (where applicable) match one or145 # NetBSD (nbsd) targets should (where applicable) match one or
148 # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*,146 # more of the tuples: *-*-netbsdelf*, *-*-netbsdaout*,
149 # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently147 # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently
150 # switched to ELF, *-*-netbsd* would select the old148 # switched to ELF, *-*-netbsd* would select the old
151 # object file format. This provides both forward149 # object file format. This provides both forward
@@ -792,13 +790,12 @@
792 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}790 echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE}
793 exit ;;791 exit ;;
794 *:FreeBSD:*:*)792 *:FreeBSD:*:*)
795 case ${UNAME_MACHINE} in793 UNAME_PROCESSOR=`/usr/bin/uname -p`
796 pc98)794 case ${UNAME_PROCESSOR} in
797 echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
798 amd64)795 amd64)
799 echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;796 echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
800 *)797 *)
801 echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;798 echo ${UNAME_PROCESSOR}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;;
802 esac799 esac
803 exit ;;800 exit ;;
804 i*:CYGWIN*:*)801 i*:CYGWIN*:*)
@@ -807,6 +804,9 @@
807 *:MINGW*:*)804 *:MINGW*:*)
808 echo ${UNAME_MACHINE}-pc-mingw32805 echo ${UNAME_MACHINE}-pc-mingw32
809 exit ;;806 exit ;;
807 i*:MSYS*:*)
808 echo ${UNAME_MACHINE}-pc-msys
809 exit ;;
810 i*:windows32*:*)810 i*:windows32*:*)
811 # uname -m includes "-pc" on this system.811 # uname -m includes "-pc" on this system.
812 echo ${UNAME_MACHINE}-mingw32812 echo ${UNAME_MACHINE}-mingw32
@@ -861,6 +861,13 @@
861 i*86:Minix:*:*)861 i*86:Minix:*:*)
862 echo ${UNAME_MACHINE}-pc-minix862 echo ${UNAME_MACHINE}-pc-minix
863 exit ;;863 exit ;;
864 aarch64:Linux:*:*)
865 echo ${UNAME_MACHINE}-unknown-linux-gnu
866 exit ;;
867 aarch64_be:Linux:*:*)
868 UNAME_MACHINE=aarch64_be
869 echo ${UNAME_MACHINE}-unknown-linux-gnu
870 exit ;;
864 alpha:Linux:*:*)871 alpha:Linux:*:*)
865 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in872 case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in
866 EV5) UNAME_MACHINE=alphaev5 ;;873 EV5) UNAME_MACHINE=alphaev5 ;;
@@ -895,13 +902,16 @@
895 echo ${UNAME_MACHINE}-unknown-linux-gnu902 echo ${UNAME_MACHINE}-unknown-linux-gnu
896 exit ;;903 exit ;;
897 cris:Linux:*:*)904 cris:Linux:*:*)
898 echo cris-axis-linux-gnu905 echo ${UNAME_MACHINE}-axis-linux-gnu
899 exit ;;906 exit ;;
900 crisv32:Linux:*:*)907 crisv32:Linux:*:*)
901 echo crisv32-axis-linux-gnu908 echo ${UNAME_MACHINE}-axis-linux-gnu
902 exit ;;909 exit ;;
903 frv:Linux:*:*)910 frv:Linux:*:*)
904 echo frv-unknown-linux-gnu911 echo ${UNAME_MACHINE}-unknown-linux-gnu
912 exit ;;
913 hexagon:Linux:*:*)
914 echo ${UNAME_MACHINE}-unknown-linux-gnu
905 exit ;;915 exit ;;
906 i*86:Linux:*:*)916 i*86:Linux:*:*)
907 LIBC=gnu917 LIBC=gnu
@@ -943,7 +953,7 @@
943 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }953 test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; }
944 ;;954 ;;
945 or32:Linux:*:*)955 or32:Linux:*:*)
946 echo or32-unknown-linux-gnu956 echo ${UNAME_MACHINE}-unknown-linux-gnu
947 exit ;;957 exit ;;
948 padre:Linux:*:*)958 padre:Linux:*:*)
949 echo sparc-unknown-linux-gnu959 echo sparc-unknown-linux-gnu
@@ -978,13 +988,13 @@
978 echo ${UNAME_MACHINE}-unknown-linux-gnu988 echo ${UNAME_MACHINE}-unknown-linux-gnu
979 exit ;;989 exit ;;
980 tile*:Linux:*:*)990 tile*:Linux:*:*)
981 echo ${UNAME_MACHINE}-tilera-linux-gnu991 echo ${UNAME_MACHINE}-unknown-linux-gnu
982 exit ;;992 exit ;;
983 vax:Linux:*:*)993 vax:Linux:*:*)
984 echo ${UNAME_MACHINE}-dec-linux-gnu994 echo ${UNAME_MACHINE}-dec-linux-gnu
985 exit ;;995 exit ;;
986 x86_64:Linux:*:*)996 x86_64:Linux:*:*)
987 echo x86_64-unknown-linux-gnu997 echo ${UNAME_MACHINE}-unknown-linux-gnu
988 exit ;;998 exit ;;
989 xtensa*:Linux:*:*)999 xtensa*:Linux:*:*)
990 echo ${UNAME_MACHINE}-unknown-linux-gnu1000 echo ${UNAME_MACHINE}-unknown-linux-gnu
@@ -1315,6 +1325,9 @@
1315 i*86:AROS:*:*)1325 i*86:AROS:*:*)
1316 echo ${UNAME_MACHINE}-pc-aros1326 echo ${UNAME_MACHINE}-pc-aros
1317 exit ;;1327 exit ;;
1328 x86_64:VMkernel:*:*)
1329 echo ${UNAME_MACHINE}-unknown-esx
1330 exit ;;
1318esac1331esac
13191332
1320#echo '(No uname command or uname output not recognized.)' 1>&21333#echo '(No uname command or uname output not recognized.)' 1>&2
13211334
=== modified file 'config.sub'
--- config.sub 2011-07-10 11:35:30 +0000
+++ config.sub 2012-03-01 18:39:30 +0000
@@ -2,9 +2,9 @@
2# Configuration validation subroutine script.2# Configuration validation subroutine script.
3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,3# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,4# 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
5# 2011 Free Software Foundation, Inc.5# 2011, 2012 Free Software Foundation, Inc.
66
7timestamp='2011-03-23'7timestamp='2012-02-10'
88
9# This file is (in principle) common to ALL GNU software.9# This file is (in principle) common to ALL GNU software.
10# The presence of a machine in this file suggests that SOME GNU software10# The presence of a machine in this file suggests that SOME GNU software
@@ -21,9 +21,7 @@
21# GNU General Public License for more details.21# GNU General Public License for more details.
22#22#
23# You should have received a copy of the GNU General Public License23# You should have received a copy of the GNU General Public License
24# along with this program; if not, write to the Free Software24# along with this program; if not, see <http://www.gnu.org/licenses/>.
25# Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
26# 02110-1301, USA.
27#25#
28# As a special exception to the GNU General Public License, if you26# As a special exception to the GNU General Public License, if you
29# distribute this file as part of a program that contains a27# distribute this file as part of a program that contains a
@@ -76,8 +74,8 @@
76GNU config.sub ($timestamp)74GNU config.sub ($timestamp)
7775
78Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,76Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
792001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 Free772001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
80Software Foundation, Inc.78Free Software Foundation, Inc.
8179
82This is free software; see the source for copying conditions. There is NO80This is free software; see the source for copying conditions. There is NO
83warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."81warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
@@ -132,6 +130,10 @@
132 os=-$maybe_os130 os=-$maybe_os
133 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`131 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`
134 ;;132 ;;
133 android-linux)
134 os=-linux-android
135 basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'`-unknown
136 ;;
135 *)137 *)
136 basic_machine=`echo $1 | sed 's/-[^-]*$//'`138 basic_machine=`echo $1 | sed 's/-[^-]*$//'`
137 if [ $basic_machine != $1 ]139 if [ $basic_machine != $1 ]
@@ -247,17 +249,22 @@
247 # Some are omitted here because they have special meanings below.249 # Some are omitted here because they have special meanings below.
248 1750a | 580 \250 1750a | 580 \
249 | a29k \251 | a29k \
252 | aarch64 | aarch64_be \
250 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \253 | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \
251 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \254 | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \
252 | am33_2.0 \255 | am33_2.0 \
253 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \256 | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \
257 | be32 | be64 \
254 | bfin \258 | bfin \
255 | c4x | clipper \259 | c4x | clipper \
256 | d10v | d30v | dlx | dsp16xx \260 | d10v | d30v | dlx | dsp16xx \
261 | epiphany \
257 | fido | fr30 | frv \262 | fido | fr30 | frv \
258 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \263 | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \
264 | hexagon \
259 | i370 | i860 | i960 | ia64 \265 | i370 | i860 | i960 | ia64 \
260 | ip2k | iq2000 \266 | ip2k | iq2000 \
267 | le32 | le64 \
261 | lm32 \268 | lm32 \
262 | m32c | m32r | m32rle | m68000 | m68k | m88k \269 | m32c | m32r | m32rle | m68000 | m68k | m88k \
263 | maxq | mb | microblaze | mcore | mep | metag \270 | maxq | mb | microblaze | mcore | mep | metag \
@@ -291,7 +298,7 @@
291 | pdp10 | pdp11 | pj | pjl \298 | pdp10 | pdp11 | pj | pjl \
292 | powerpc | powerpc64 | powerpc64le | powerpcle \299 | powerpc | powerpc64 | powerpc64le | powerpcle \
293 | pyramid \300 | pyramid \
294 | rx \301 | rl78 | rx \
295 | score \302 | score \
296 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \303 | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \
297 | sh64 | sh64le \304 | sh64 | sh64le \
@@ -300,7 +307,7 @@
300 | spu \307 | spu \
301 | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \308 | tahoe | tic4x | tic54x | tic55x | tic6x | tic80 | tron \
302 | ubicom32 \309 | ubicom32 \
303 | v850 | v850e \310 | v850 | v850e | v850e1 | v850e2 | v850es | v850e2v3 \
304 | we32k \311 | we32k \
305 | x86 | xc16x | xstormy16 | xtensa \312 | x86 | xc16x | xstormy16 | xtensa \
306 | z8k | z80)313 | z8k | z80)
@@ -315,8 +322,7 @@
315 c6x)322 c6x)
316 basic_machine=tic6x-unknown323 basic_machine=tic6x-unknown
317 ;;324 ;;
318 m6811 | m68hc11 | m6812 | m68hc12 | picochip)325 m6811 | m68hc11 | m6812 | m68hc12 | m68hcs12x | picochip)
319 # Motorola 68HC11/12.
320 basic_machine=$basic_machine-unknown326 basic_machine=$basic_machine-unknown
321 os=-none327 os=-none
322 ;;328 ;;
@@ -329,7 +335,10 @@
329 strongarm | thumb | xscale)335 strongarm | thumb | xscale)
330 basic_machine=arm-unknown336 basic_machine=arm-unknown
331 ;;337 ;;
332338 xgate)
339 basic_machine=$basic_machine-unknown
340 os=-none
341 ;;
333 xscaleeb)342 xscaleeb)
334 basic_machine=armeb-unknown343 basic_machine=armeb-unknown
335 ;;344 ;;
@@ -352,11 +361,13 @@
352 # Recognize the basic CPU types with company name.361 # Recognize the basic CPU types with company name.
353 580-* \362 580-* \
354 | a29k-* \363 | a29k-* \
364 | aarch64-* | aarch64_be-* \
355 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \365 | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \
356 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \366 | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \
357 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \367 | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \
358 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \368 | arm-* | armbe-* | armle-* | armeb-* | armv*-* \
359 | avr-* | avr32-* \369 | avr-* | avr32-* \
370 | be32-* | be64-* \
360 | bfin-* | bs2000-* \371 | bfin-* | bs2000-* \
361 | c[123]* | c30-* | [cjt]90-* | c4x-* \372 | c[123]* | c30-* | [cjt]90-* | c4x-* \
362 | clipper-* | craynv-* | cydra-* \373 | clipper-* | craynv-* | cydra-* \
@@ -365,8 +376,10 @@
365 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \376 | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \
366 | h8300-* | h8500-* \377 | h8300-* | h8500-* \
367 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \378 | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \
379 | hexagon-* \
368 | i*86-* | i860-* | i960-* | ia64-* \380 | i*86-* | i860-* | i960-* | ia64-* \
369 | ip2k-* | iq2000-* \381 | ip2k-* | iq2000-* \
382 | le32-* | le64-* \
370 | lm32-* \383 | lm32-* \
371 | m32c-* | m32r-* | m32rle-* \384 | m32c-* | m32r-* | m32rle-* \
372 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \385 | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \
@@ -400,7 +413,7 @@
400 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \413 | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \
401 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \414 | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* \
402 | pyramid-* \415 | pyramid-* \
403 | romp-* | rs6000-* | rx-* \416 | rl78-* | romp-* | rs6000-* | rx-* \
404 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \417 | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \
405 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \418 | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \
406 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \419 | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \
@@ -408,10 +421,11 @@
408 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \421 | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | sv1-* | sx?-* \
409 | tahoe-* \422 | tahoe-* \
410 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \423 | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \
411 | tile-* | tilegx-* \424 | tile*-* \
412 | tron-* \425 | tron-* \
413 | ubicom32-* \426 | ubicom32-* \
414 | v850-* | v850e-* | vax-* \427 | v850-* | v850e-* | v850e1-* | v850es-* | v850e2-* | v850e2v3-* \
428 | vax-* \
415 | we32k-* \429 | we32k-* \
416 | x86-* | x86_64-* | xc16x-* | xps100-* \430 | x86-* | x86_64-* | xc16x-* | xps100-* \
417 | xstormy16-* | xtensa*-* \431 | xstormy16-* | xtensa*-* \
@@ -711,7 +725,6 @@
711 i370-ibm* | ibm*)725 i370-ibm* | ibm*)
712 basic_machine=i370-ibm726 basic_machine=i370-ibm
713 ;;727 ;;
714# I'm not sure what "Sysv32" means. Should this be sysv3.2?
715 i*86v32)728 i*86v32)
716 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`729 basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'`
717 os=-sysv32730 os=-sysv32
@@ -808,10 +821,18 @@
808 ms1-*)821 ms1-*)
809 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`822 basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'`
810 ;;823 ;;
824 msys)
825 basic_machine=i386-pc
826 os=-msys
827 ;;
811 mvs)828 mvs)
812 basic_machine=i370-ibm829 basic_machine=i370-ibm
813 os=-mvs830 os=-mvs
814 ;;831 ;;
832 nacl)
833 basic_machine=le32-unknown
834 os=-nacl
835 ;;
815 ncr3000)836 ncr3000)
816 basic_machine=i486-ncr837 basic_machine=i486-ncr
817 os=-sysv4838 os=-sysv4
@@ -1120,13 +1141,8 @@
1120 basic_machine=t90-cray1141 basic_machine=t90-cray
1121 os=-unicos1142 os=-unicos
1122 ;;1143 ;;
1123 # This must be matched before tile*.
1124 tilegx*)
1125 basic_machine=tilegx-unknown
1126 os=-linux-gnu
1127 ;;
1128 tile*)1144 tile*)
1129 basic_machine=tile-unknown1145 basic_machine=$basic_machine-unknown
1130 os=-linux-gnu1146 os=-linux-gnu
1131 ;;1147 ;;
1132 tx39)1148 tx39)
@@ -1336,7 +1352,7 @@
1336 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \1352 | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \
1337 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \1353 | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \
1338 | -chorusos* | -chorusrdb* | -cegcc* \1354 | -chorusos* | -chorusrdb* | -cegcc* \
1339 | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \1355 | -cygwin* | -msys* | -pe* | -psos* | -moss* | -proelf* | -rtems* \
1340 | -mingw32* | -linux-gnu* | -linux-android* \1356 | -mingw32* | -linux-gnu* | -linux-android* \
1341 | -linux-newlib* | -linux-uclibc* \1357 | -linux-newlib* | -linux-uclibc* \
1342 | -uxpv* | -beos* | -mpeix* | -udk* \1358 | -uxpv* | -beos* | -mpeix* | -udk* \
@@ -1548,9 +1564,6 @@
1548 ;;1564 ;;
1549 m68000-sun)1565 m68000-sun)
1550 os=-sunos31566 os=-sunos3
1551 # This also exists in the configure program, but was not the
1552 # default.
1553 # os=-sunos4
1554 ;;1567 ;;
1555 m68*-cisco)1568 m68*-cisco)
1556 os=-aout1569 os=-aout
15571570
=== modified file 'configure'
--- configure 2012-02-16 10:21:27 +0000
+++ configure 2012-03-01 18:39:30 +0000
@@ -1,6 +1,6 @@
1#! /bin/sh1#! /bin/sh
2# Guess values for system-dependent variables and create Makefiles.2# Guess values for system-dependent variables and create Makefiles.
3# Generated by GNU Autoconf 2.68 for inkscape 0.48.3.3# Generated by GNU Autoconf 2.68 for inkscape 0.48.3.1.
4#4#
5#5#
6# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,6# Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -557,8 +557,8 @@
557# Identity of this package.557# Identity of this package.
558PACKAGE_NAME='inkscape'558PACKAGE_NAME='inkscape'
559PACKAGE_TARNAME='inkscape'559PACKAGE_TARNAME='inkscape'
560PACKAGE_VERSION='0.48.3'560PACKAGE_VERSION='0.48.3.1'
561PACKAGE_STRING='inkscape 0.48.3'561PACKAGE_STRING='inkscape 0.48.3.1'
562PACKAGE_BUGREPORT=''562PACKAGE_BUGREPORT=''
563PACKAGE_URL=''563PACKAGE_URL=''
564564
@@ -665,8 +665,6 @@
665USE_GNOME_VFS_TRUE665USE_GNOME_VFS_TRUE
666GNOME_VFS_LIBS666GNOME_VFS_LIBS
667GNOME_VFS_CFLAGS667GNOME_VFS_CFLAGS
668PKG_CONFIG_LIBDIR
669PKG_CONFIG_PATH
670PLATFORM_SOLARIS_FALSE668PLATFORM_SOLARIS_FALSE
671PLATFORM_SOLARIS_TRUE669PLATFORM_SOLARIS_TRUE
672PLATFORM_OSX_FALSE670PLATFORM_OSX_FALSE
@@ -677,7 +675,6 @@
677FREETYPE_LIBS675FREETYPE_LIBS
678FREETYPE_CFLAGS676FREETYPE_CFLAGS
679FREETYPE_CONFIG677FREETYPE_CONFIG
680PKG_CONFIG
681MKINSTALLDIRS678MKINSTALLDIRS
682POSUB679POSUB
683POFILES680POFILES
@@ -690,6 +687,11 @@
690CATALOGS687CATALOGS
691MSGFMT_OPTS688MSGFMT_OPTS
692GETTEXT_PACKAGE689GETTEXT_PACKAGE
690NEW_GLIBMM_LIBS
691NEW_GLIBMM_CFLAGS
692PKG_CONFIG_LIBDIR
693PKG_CONFIG_PATH
694PKG_CONFIG
693AM_BACKSLASH695AM_BACKSLASH
694AM_DEFAULT_V696AM_DEFAULT_V
695AM_V697AM_V
@@ -866,6 +868,8 @@
866PKG_CONFIG868PKG_CONFIG
867PKG_CONFIG_PATH869PKG_CONFIG_PATH
868PKG_CONFIG_LIBDIR870PKG_CONFIG_LIBDIR
871NEW_GLIBMM_CFLAGS
872NEW_GLIBMM_LIBS
869GNOME_VFS_CFLAGS873GNOME_VFS_CFLAGS
870GNOME_VFS_LIBS874GNOME_VFS_LIBS
871LCMS2_CFLAGS875LCMS2_CFLAGS
@@ -1440,7 +1444,7 @@
1440 # Omit some internal or obsolete options to make the list less imposing.1444 # Omit some internal or obsolete options to make the list less imposing.
1441 # This message is too long to be a string in the A/UX 3.1 sh.1445 # This message is too long to be a string in the A/UX 3.1 sh.
1442 cat <<_ACEOF1446 cat <<_ACEOF
1443\`configure' configures inkscape 0.48.3 to adapt to many kinds of systems.1447\`configure' configures inkscape 0.48.3.1 to adapt to many kinds of systems.
14441448
1445Usage: $0 [OPTION]... [VAR=VALUE]...1449Usage: $0 [OPTION]... [VAR=VALUE]...
14461450
@@ -1510,7 +1514,7 @@
15101514
1511if test -n "$ac_init_help"; then1515if test -n "$ac_init_help"; then
1512 case $ac_init_help in1516 case $ac_init_help in
1513 short | recursive ) echo "Configuration of inkscape 0.48.3:";;1517 short | recursive ) echo "Configuration of inkscape 0.48.3.1:";;
1514 esac1518 esac
1515 cat <<\_ACEOF1519 cat <<\_ACEOF
15161520
@@ -1555,6 +1559,10 @@
1555 directories to add to pkg-config's search path1559 directories to add to pkg-config's search path
1556 PKG_CONFIG_LIBDIR1560 PKG_CONFIG_LIBDIR
1557 path overriding pkg-config's built-in search path1561 path overriding pkg-config's built-in search path
1562 NEW_GLIBMM_CFLAGS
1563 C compiler flags for NEW_GLIBMM, overriding pkg-config
1564 NEW_GLIBMM_LIBS
1565 linker flags for NEW_GLIBMM, overriding pkg-config
1558 GNOME_VFS_CFLAGS1566 GNOME_VFS_CFLAGS
1559 C compiler flags for GNOME_VFS, overriding pkg-config1567 C compiler flags for GNOME_VFS, overriding pkg-config
1560 GNOME_VFS_LIBS1568 GNOME_VFS_LIBS
@@ -1683,7 +1691,7 @@
1683test -n "$ac_init_help" && exit $ac_status1691test -n "$ac_init_help" && exit $ac_status
1684if $ac_init_version; then1692if $ac_init_version; then
1685 cat <<\_ACEOF1693 cat <<\_ACEOF
1686inkscape configure 0.48.31694inkscape configure 0.48.3.1
1687generated by GNU Autoconf 2.681695generated by GNU Autoconf 2.68
16881696
1689Copyright (C) 2010 Free Software Foundation, Inc.1697Copyright (C) 2010 Free Software Foundation, Inc.
@@ -2243,7 +2251,7 @@
2243This file contains any messages produced by compilers while2251This file contains any messages produced by compilers while
2244running configure, to aid debugging if configure makes a mistake.2252running configure, to aid debugging if configure makes a mistake.
22452253
2246It was created by inkscape $as_me 0.48.3, which was2254It was created by inkscape $as_me 0.48.3.1, which was
2247generated by GNU Autoconf 2.68. Invocation command line was2255generated by GNU Autoconf 2.68. Invocation command line was
22482256
2249 $ $0 $@2257 $ $0 $@
@@ -3131,7 +3139,7 @@
31313139
3132# Define the identity of the package.3140# Define the identity of the package.
3133 PACKAGE='inkscape'3141 PACKAGE='inkscape'
3134 VERSION='0.48.3'3142 VERSION='0.48.3.1'
31353143
31363144
3137cat >>confdefs.h <<_ACEOF3145cat >>confdefs.h <<_ACEOF
@@ -7141,7 +7149,200 @@
7141 # Enable all default warnings7149 # Enable all default warnings
7142 CPPFLAGS="-Wall $CPPFLAGS"7150 CPPFLAGS="-Wall $CPPFLAGS"
7143 # Enforce including only <glib.h> (required since 2.31)7151 # Enforce including only <glib.h> (required since 2.31)
7144 CPPFLAGS="-DG_DISABLE_SINGLE_INCLUDES $CPPFLAGS"7152
7153
7154
7155
7156
7157
7158
7159if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
7160 if test -n "$ac_tool_prefix"; then
7161 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
7162set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
7163{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7164$as_echo_n "checking for $ac_word... " >&6; }
7165if ${ac_cv_path_PKG_CONFIG+:} false; then :
7166 $as_echo_n "(cached) " >&6
7167else
7168 case $PKG_CONFIG in
7169 [\\/]* | ?:[\\/]*)
7170 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
7171 ;;
7172 *)
7173 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7174for as_dir in $PATH
7175do
7176 IFS=$as_save_IFS
7177 test -z "$as_dir" && as_dir=.
7178 for ac_exec_ext in '' $ac_executable_extensions; do
7179 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7180 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
7181 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7182 break 2
7183 fi
7184done
7185 done
7186IFS=$as_save_IFS
7187
7188 ;;
7189esac
7190fi
7191PKG_CONFIG=$ac_cv_path_PKG_CONFIG
7192if test -n "$PKG_CONFIG"; then
7193 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
7194$as_echo "$PKG_CONFIG" >&6; }
7195else
7196 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7197$as_echo "no" >&6; }
7198fi
7199
7200
7201fi
7202if test -z "$ac_cv_path_PKG_CONFIG"; then
7203 ac_pt_PKG_CONFIG=$PKG_CONFIG
7204 # Extract the first word of "pkg-config", so it can be a program name with args.
7205set dummy pkg-config; ac_word=$2
7206{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
7207$as_echo_n "checking for $ac_word... " >&6; }
7208if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
7209 $as_echo_n "(cached) " >&6
7210else
7211 case $ac_pt_PKG_CONFIG in
7212 [\\/]* | ?:[\\/]*)
7213 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
7214 ;;
7215 *)
7216 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
7217for as_dir in $PATH
7218do
7219 IFS=$as_save_IFS
7220 test -z "$as_dir" && as_dir=.
7221 for ac_exec_ext in '' $ac_executable_extensions; do
7222 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
7223 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
7224 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
7225 break 2
7226 fi
7227done
7228 done
7229IFS=$as_save_IFS
7230
7231 ;;
7232esac
7233fi
7234ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
7235if test -n "$ac_pt_PKG_CONFIG"; then
7236 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
7237$as_echo "$ac_pt_PKG_CONFIG" >&6; }
7238else
7239 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7240$as_echo "no" >&6; }
7241fi
7242
7243 if test "x$ac_pt_PKG_CONFIG" = x; then
7244 PKG_CONFIG=""
7245 else
7246 case $cross_compiling:$ac_tool_warned in
7247yes:)
7248{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
7249$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
7250ac_tool_warned=yes ;;
7251esac
7252 PKG_CONFIG=$ac_pt_PKG_CONFIG
7253 fi
7254else
7255 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
7256fi
7257
7258fi
7259if test -n "$PKG_CONFIG"; then
7260 _pkg_min_version=0.9.0
7261 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
7262$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
7263 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
7264 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
7265$as_echo "yes" >&6; }
7266 else
7267 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7268$as_echo "no" >&6; }
7269 PKG_CONFIG=""
7270 fi
7271fi
7272
7273pkg_failed=no
7274{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for NEW_GLIBMM" >&5
7275$as_echo_n "checking for NEW_GLIBMM... " >&6; }
7276
7277if test -n "$NEW_GLIBMM_CFLAGS"; then
7278 pkg_cv_NEW_GLIBMM_CFLAGS="$NEW_GLIBMM_CFLAGS"
7279 elif test -n "$PKG_CONFIG"; then
7280 if test -n "$PKG_CONFIG" && \
7281 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glibmm-2.4 >= 2.28\""; } >&5
7282 ($PKG_CONFIG --exists --print-errors "glibmm-2.4 >= 2.28") 2>&5
7283 ac_status=$?
7284 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7285 test $ac_status = 0; }; then
7286 pkg_cv_NEW_GLIBMM_CFLAGS=`$PKG_CONFIG --cflags "glibmm-2.4 >= 2.28" 2>/dev/null`
7287 test "x$?" != "x0" && pkg_failed=yes
7288else
7289 pkg_failed=yes
7290fi
7291 else
7292 pkg_failed=untried
7293fi
7294if test -n "$NEW_GLIBMM_LIBS"; then
7295 pkg_cv_NEW_GLIBMM_LIBS="$NEW_GLIBMM_LIBS"
7296 elif test -n "$PKG_CONFIG"; then
7297 if test -n "$PKG_CONFIG" && \
7298 { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"glibmm-2.4 >= 2.28\""; } >&5
7299 ($PKG_CONFIG --exists --print-errors "glibmm-2.4 >= 2.28") 2>&5
7300 ac_status=$?
7301 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5
7302 test $ac_status = 0; }; then
7303 pkg_cv_NEW_GLIBMM_LIBS=`$PKG_CONFIG --libs "glibmm-2.4 >= 2.28" 2>/dev/null`
7304 test "x$?" != "x0" && pkg_failed=yes
7305else
7306 pkg_failed=yes
7307fi
7308 else
7309 pkg_failed=untried
7310fi
7311
7312
7313
7314if test $pkg_failed = yes; then
7315 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7316$as_echo "no" >&6; }
7317
7318if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then
7319 _pkg_short_errors_supported=yes
7320else
7321 _pkg_short_errors_supported=no
7322fi
7323 if test $_pkg_short_errors_supported = yes; then
7324 NEW_GLIBMM_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors --cflags --libs "glibmm-2.4 >= 2.28" 2>&1`
7325 else
7326 NEW_GLIBMM_PKG_ERRORS=`$PKG_CONFIG --print-errors --cflags --libs "glibmm-2.4 >= 2.28" 2>&1`
7327 fi
7328 # Put the nasty error message in config.log where it belongs
7329 echo "$NEW_GLIBMM_PKG_ERRORS" >&5
7330
7331 new_glibmm=no
7332elif test $pkg_failed = untried; then
7333 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
7334$as_echo "no" >&6; }
7335 new_glibmm=no
7336else
7337 NEW_GLIBMM_CFLAGS=$pkg_cv_NEW_GLIBMM_CFLAGS
7338 NEW_GLIBMM_LIBS=$pkg_cv_NEW_GLIBMM_LIBS
7339 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
7340$as_echo "yes" >&6; }
7341 new_glibmm=yes
7342fi
7343 if test "x$new_glibmm" = "xyes"; then
7344 CPPFLAGS="-DG_DISABLE_SINGLE_INCLUDES $CPPFLAGS"
7345 fi
71457346
7146 # Test for -Werror=... (introduced some time post-4.0)7347 # Test for -Werror=... (introduced some time post-4.0)
7147 # If we hit a format error -- it should be fatal.7348 # If we hit a format error -- it should be fatal.
@@ -8975,126 +9176,6 @@
8975 gnome_vfs=no9176 gnome_vfs=no
8976else9177else
89779178
8978
8979
8980
8981
8982
8983
8984if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then
8985 if test -n "$ac_tool_prefix"; then
8986 # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args.
8987set dummy ${ac_tool_prefix}pkg-config; ac_word=$2
8988{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
8989$as_echo_n "checking for $ac_word... " >&6; }
8990if ${ac_cv_path_PKG_CONFIG+:} false; then :
8991 $as_echo_n "(cached) " >&6
8992else
8993 case $PKG_CONFIG in
8994 [\\/]* | ?:[\\/]*)
8995 ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path.
8996 ;;
8997 *)
8998 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
8999for as_dir in $PATH
9000do
9001 IFS=$as_save_IFS
9002 test -z "$as_dir" && as_dir=.
9003 for ac_exec_ext in '' $ac_executable_extensions; do
9004 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
9005 ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
9006 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9007 break 2
9008 fi
9009done
9010 done
9011IFS=$as_save_IFS
9012
9013 ;;
9014esac
9015fi
9016PKG_CONFIG=$ac_cv_path_PKG_CONFIG
9017if test -n "$PKG_CONFIG"; then
9018 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5
9019$as_echo "$PKG_CONFIG" >&6; }
9020else
9021 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9022$as_echo "no" >&6; }
9023fi
9024
9025
9026fi
9027if test -z "$ac_cv_path_PKG_CONFIG"; then
9028 ac_pt_PKG_CONFIG=$PKG_CONFIG
9029 # Extract the first word of "pkg-config", so it can be a program name with args.
9030set dummy pkg-config; ac_word=$2
9031{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5
9032$as_echo_n "checking for $ac_word... " >&6; }
9033if ${ac_cv_path_ac_pt_PKG_CONFIG+:} false; then :
9034 $as_echo_n "(cached) " >&6
9035else
9036 case $ac_pt_PKG_CONFIG in
9037 [\\/]* | ?:[\\/]*)
9038 ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path.
9039 ;;
9040 *)
9041 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR
9042for as_dir in $PATH
9043do
9044 IFS=$as_save_IFS
9045 test -z "$as_dir" && as_dir=.
9046 for ac_exec_ext in '' $ac_executable_extensions; do
9047 if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then
9048 ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext"
9049 $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5
9050 break 2
9051 fi
9052done
9053 done
9054IFS=$as_save_IFS
9055
9056 ;;
9057esac
9058fi
9059ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG
9060if test -n "$ac_pt_PKG_CONFIG"; then
9061 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5
9062$as_echo "$ac_pt_PKG_CONFIG" >&6; }
9063else
9064 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9065$as_echo "no" >&6; }
9066fi
9067
9068 if test "x$ac_pt_PKG_CONFIG" = x; then
9069 PKG_CONFIG=""
9070 else
9071 case $cross_compiling:$ac_tool_warned in
9072yes:)
9073{ $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5
9074$as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;}
9075ac_tool_warned=yes ;;
9076esac
9077 PKG_CONFIG=$ac_pt_PKG_CONFIG
9078 fi
9079else
9080 PKG_CONFIG="$ac_cv_path_PKG_CONFIG"
9081fi
9082
9083fi
9084if test -n "$PKG_CONFIG"; then
9085 _pkg_min_version=0.9.0
9086 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5
9087$as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; }
9088 if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then
9089 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5
9090$as_echo "yes" >&6; }
9091 else
9092 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
9093$as_echo "no" >&6; }
9094 PKG_CONFIG=""
9095 fi
9096fi
9097
9098pkg_failed=no9179pkg_failed=no
9099{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME_VFS" >&59180{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNOME_VFS" >&5
9100$as_echo_n "checking for GNOME_VFS... " >&6; }9181$as_echo_n "checking for GNOME_VFS... " >&6; }
@@ -12612,7 +12693,7 @@
12612# report actual input values of CONFIG_FILES etc. instead of their12693# report actual input values of CONFIG_FILES etc. instead of their
12613# values after options handling.12694# values after options handling.
12614ac_log="12695ac_log="
12615This file was extended by inkscape $as_me 0.48.3, which was12696This file was extended by inkscape $as_me 0.48.3.1, which was
12616generated by GNU Autoconf 2.68. Invocation command line was12697generated by GNU Autoconf 2.68. Invocation command line was
1261712698
12618 CONFIG_FILES = $CONFIG_FILES12699 CONFIG_FILES = $CONFIG_FILES
@@ -12678,7 +12759,7 @@
12678cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=112759cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1
12679ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"12760ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`"
12680ac_cs_version="\\12761ac_cs_version="\\
12681inkscape config.status 0.48.312762inkscape config.status 0.48.3.1
12682configured by $0, generated by GNU Autoconf 2.68,12763configured by $0, generated by GNU Autoconf 2.68,
12683 with options \\"\$ac_cs_config\\"12764 with options \\"\$ac_cs_config\\"
1268412765
1268512766
=== modified file 'configure.ac'
--- configure.ac 2012-02-16 10:21:27 +0000
+++ configure.ac 2012-03-01 18:39:30 +0000
@@ -7,7 +7,7 @@
7# `dpkg --compare-versions'. (ii) We don't always know what the next7# `dpkg --compare-versions'. (ii) We don't always know what the next
8# version is going to be called until about the time we release it8# version is going to be called until about the time we release it
9# (whereas we always know what the previous version was called).9# (whereas we always know what the previous version was called).
10AC_INIT(inkscape, 0.48.3)10AC_INIT(inkscape, 0.48.3.1)
1111
12AC_CANONICAL_HOST12AC_CANONICAL_HOST
13AC_CONFIG_SRCDIR([src/main.cpp])13AC_CONFIG_SRCDIR([src/main.cpp])
@@ -54,7 +54,11 @@
54 # Enable all default warnings54 # Enable all default warnings
55 CPPFLAGS="-Wall $CPPFLAGS"55 CPPFLAGS="-Wall $CPPFLAGS"
56 # Enforce including only <glib.h> (required since 2.31)56 # Enforce including only <glib.h> (required since 2.31)
57 CPPFLAGS="-DG_DISABLE_SINGLE_INCLUDES $CPPFLAGS"57 PKG_CHECK_MODULES(NEW_GLIBMM, glibmm-2.4 >= 2.28, new_glibmm=yes,
58new_glibmm=no)
59 if test "x$new_glibmm" = "xyes"; then
60 CPPFLAGS="-DG_DISABLE_SINGLE_INCLUDES $CPPFLAGS"
61 fi
5862
59 # Test for -Werror=... (introduced some time post-4.0)63 # Test for -Werror=... (introduced some time post-4.0)
60 # If we hit a format error -- it should be fatal.64 # If we hit a format error -- it should be fatal.
6165
=== modified file 'debian/changelog'
--- debian/changelog 2012-02-16 14:35:51 +0000
+++ debian/changelog 2012-03-01 18:39:30 +0000
@@ -1,3 +1,11 @@
1inkscape (0.48.3.1-0ubuntu1) precise; urgency=low
2
3 * New upstream release (LP: #943984)
4 - Fixes build errors with glibmm < 2.28
5 * Allow building against either lcms1 or lcms2 (LP: #885324)
6
7 -- Alex Valavanis <a.valavanis@leeds.ac.uk> Thu, 01 Mar 2012 15:38:35 +0000
8
1inkscape (0.48.3-0ubuntu1) precise; urgency=low9inkscape (0.48.3-0ubuntu1) precise; urgency=low
210
3 * New upstream release (LP: #933188). Fixes several Ubuntu bugs:11 * New upstream release (LP: #933188). Fixes several Ubuntu bugs:
412
=== modified file 'debian/control'
--- debian/control 2012-02-16 14:35:51 +0000
+++ debian/control 2012-03-01 18:39:30 +0000
@@ -22,7 +22,7 @@
22 libgtkmm-2.4-dev,22 libgtkmm-2.4-dev,
23 libgtkspell-dev,23 libgtkspell-dev,
24 libgsl0-dev,24 libgsl0-dev,
25 liblcms1-dev,25 liblcms2-dev | liblcms1-dev,
26 libmagick++-dev,26 libmagick++-dev,
27 libpango1.0-dev,27 libpango1.0-dev,
28 libpng12-dev,28 libpng12-dev,
2929
=== modified file 'doc/Makefile.in'
--- doc/Makefile.in 2012-02-16 10:21:27 +0000
+++ doc/Makefile.in 2012-03-01 18:39:30 +0000
@@ -148,6 +148,8 @@
148MSGFMT = @MSGFMT@148MSGFMT = @MSGFMT@
149MSGFMT_OPTS = @MSGFMT_OPTS@149MSGFMT_OPTS = @MSGFMT_OPTS@
150MSGMERGE = @MSGMERGE@150MSGMERGE = @MSGMERGE@
151NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
152NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
151OBJEXT = @OBJEXT@153OBJEXT = @OBJEXT@
152PACKAGE = @PACKAGE@154PACKAGE = @PACKAGE@
153PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@155PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -268,9 +270,9 @@
268 exit 1;; \270 exit 1;; \
269 esac; \271 esac; \
270 done; \272 done; \
271 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \273 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
272 $(am__cd) $(top_srcdir) && \274 $(am__cd) $(top_srcdir) && \
273 $(AUTOMAKE) --foreign doc/Makefile275 $(AUTOMAKE) --gnu doc/Makefile
274.PRECIOUS: Makefile276.PRECIOUS: Makefile
275Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status277Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
276 @case '$?' in \278 @case '$?' in \
277279
=== modified file 'inkscape.spec'
--- inkscape.spec 2012-02-16 10:21:27 +0000
+++ inkscape.spec 2012-03-01 18:39:30 +0000
@@ -7,7 +7,7 @@
77
8Name: inkscape8Name: inkscape
9Summary: A Vector Drawing Application9Summary: A Vector Drawing Application
10Version: 0.48.310Version: 0.48.3.1
11# Use release "0" so that distro-released versions will override ours.11# Use release "0" so that distro-released versions will override ours.
12Release: 012Release: 0
13License: GPL13License: GPL
1414
=== modified file 'share/Makefile.in'
--- share/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/Makefile.in 2012-03-01 18:39:30 +0000
@@ -188,6 +188,8 @@
188MSGFMT = @MSGFMT@188MSGFMT = @MSGFMT@
189MSGFMT_OPTS = @MSGFMT_OPTS@189MSGFMT_OPTS = @MSGFMT_OPTS@
190MSGMERGE = @MSGMERGE@190MSGMERGE = @MSGMERGE@
191NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
192NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
191OBJEXT = @OBJEXT@193OBJEXT = @OBJEXT@
192PACKAGE = @PACKAGE@194PACKAGE = @PACKAGE@
193PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@195PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -307,9 +309,9 @@
307 exit 1;; \309 exit 1;; \
308 esac; \310 esac; \
309 done; \311 done; \
310 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/Makefile'; \312 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/Makefile'; \
311 $(am__cd) $(top_srcdir) && \313 $(am__cd) $(top_srcdir) && \
312 $(AUTOMAKE) --foreign share/Makefile314 $(AUTOMAKE) --gnu share/Makefile
313.PRECIOUS: Makefile315.PRECIOUS: Makefile
314Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status316Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
315 @case '$?' in \317 @case '$?' in \
316318
=== modified file 'share/clipart/Makefile.in'
--- share/clipart/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/clipart/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -291,9 +293,9 @@
291 exit 1;; \293 exit 1;; \
292 esac; \294 esac; \
293 done; \295 done; \
294 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/clipart/Makefile'; \296 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/clipart/Makefile'; \
295 $(am__cd) $(top_srcdir) && \297 $(am__cd) $(top_srcdir) && \
296 $(AUTOMAKE) --foreign share/clipart/Makefile298 $(AUTOMAKE) --gnu share/clipart/Makefile
297.PRECIOUS: Makefile299.PRECIOUS: Makefile
298Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status300Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
299 @case '$?' in \301 @case '$?' in \
300302
=== modified file 'share/examples/Makefile.in'
--- share/examples/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/examples/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -316,9 +318,9 @@
316 exit 1;; \318 exit 1;; \
317 esac; \319 esac; \
318 done; \320 done; \
319 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/examples/Makefile'; \321 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/examples/Makefile'; \
320 $(am__cd) $(top_srcdir) && \322 $(am__cd) $(top_srcdir) && \
321 $(AUTOMAKE) --foreign share/examples/Makefile323 $(AUTOMAKE) --gnu share/examples/Makefile
322.PRECIOUS: Makefile324.PRECIOUS: Makefile
323Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status325Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
324 @case '$?' in \326 @case '$?' in \
325327
=== modified file 'share/extensions/Barcode/Makefile.in'
--- share/extensions/Barcode/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/extensions/Barcode/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -299,9 +301,9 @@
299 exit 1;; \301 exit 1;; \
300 esac; \302 esac; \
301 done; \303 done; \
302 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/extensions/Barcode/Makefile'; \304 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/extensions/Barcode/Makefile'; \
303 $(am__cd) $(top_srcdir) && \305 $(am__cd) $(top_srcdir) && \
304 $(AUTOMAKE) --foreign share/extensions/Barcode/Makefile306 $(AUTOMAKE) --gnu share/extensions/Barcode/Makefile
305.PRECIOUS: Makefile307.PRECIOUS: Makefile
306Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status308Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
307 @case '$?' in \309 @case '$?' in \
308310
=== modified file 'share/extensions/Makefile.in'
--- share/extensions/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/extensions/Makefile.in 2012-03-01 18:39:30 +0000
@@ -221,6 +221,8 @@
221MSGFMT = @MSGFMT@221MSGFMT = @MSGFMT@
222MSGFMT_OPTS = @MSGFMT_OPTS@222MSGFMT_OPTS = @MSGFMT_OPTS@
223MSGMERGE = @MSGMERGE@223MSGMERGE = @MSGMERGE@
224NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
225NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
224OBJEXT = @OBJEXT@226OBJEXT = @OBJEXT@
225PACKAGE = @PACKAGE@227PACKAGE = @PACKAGE@
226PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@228PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -637,9 +639,9 @@
637 exit 1;; \639 exit 1;; \
638 esac; \640 esac; \
639 done; \641 done; \
640 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/extensions/Makefile'; \642 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/extensions/Makefile'; \
641 $(am__cd) $(top_srcdir) && \643 $(am__cd) $(top_srcdir) && \
642 $(AUTOMAKE) --foreign share/extensions/Makefile644 $(AUTOMAKE) --gnu share/extensions/Makefile
643.PRECIOUS: Makefile645.PRECIOUS: Makefile
644Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status646Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
645 @case '$?' in \647 @case '$?' in \
646648
=== modified file 'share/extensions/Poly3DObjects/Makefile.in'
--- share/extensions/Poly3DObjects/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/extensions/Poly3DObjects/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -312,9 +314,9 @@
312 exit 1;; \314 exit 1;; \
313 esac; \315 esac; \
314 done; \316 done; \
315 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/extensions/Poly3DObjects/Makefile'; \317 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/extensions/Poly3DObjects/Makefile'; \
316 $(am__cd) $(top_srcdir) && \318 $(am__cd) $(top_srcdir) && \
317 $(AUTOMAKE) --foreign share/extensions/Poly3DObjects/Makefile319 $(AUTOMAKE) --gnu share/extensions/Poly3DObjects/Makefile
318.PRECIOUS: Makefile320.PRECIOUS: Makefile
319Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status321Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
320 @case '$?' in \322 @case '$?' in \
321323
=== modified file 'share/extensions/alphabet_soup/Makefile.in'
--- share/extensions/alphabet_soup/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/extensions/alphabet_soup/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -357,9 +359,9 @@
357 exit 1;; \359 exit 1;; \
358 esac; \360 esac; \
359 done; \361 done; \
360 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/extensions/alphabet_soup/Makefile'; \362 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/extensions/alphabet_soup/Makefile'; \
361 $(am__cd) $(top_srcdir) && \363 $(am__cd) $(top_srcdir) && \
362 $(AUTOMAKE) --foreign share/extensions/alphabet_soup/Makefile364 $(AUTOMAKE) --gnu share/extensions/alphabet_soup/Makefile
363.PRECIOUS: Makefile365.PRECIOUS: Makefile
364Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status366Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
365 @case '$?' in \367 @case '$?' in \
366368
=== modified file 'share/extensions/test/Makefile.in'
--- share/extensions/test/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/extensions/test/Makefile.in 2012-03-01 18:39:30 +0000
@@ -152,6 +152,8 @@
152MSGFMT = @MSGFMT@152MSGFMT = @MSGFMT@
153MSGFMT_OPTS = @MSGFMT_OPTS@153MSGFMT_OPTS = @MSGFMT_OPTS@
154MSGMERGE = @MSGMERGE@154MSGMERGE = @MSGMERGE@
155NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
156NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
155OBJEXT = @OBJEXT@157OBJEXT = @OBJEXT@
156PACKAGE = @PACKAGE@158PACKAGE = @PACKAGE@
157PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@159PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -310,9 +312,9 @@
310 exit 1;; \312 exit 1;; \
311 esac; \313 esac; \
312 done; \314 done; \
313 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/extensions/test/Makefile'; \315 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/extensions/test/Makefile'; \
314 $(am__cd) $(top_srcdir) && \316 $(am__cd) $(top_srcdir) && \
315 $(AUTOMAKE) --foreign share/extensions/test/Makefile317 $(AUTOMAKE) --gnu share/extensions/test/Makefile
316.PRECIOUS: Makefile318.PRECIOUS: Makefile
317Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status319Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
318 @case '$?' in \320 @case '$?' in \
319321
=== modified file 'share/extensions/xaml2svg/Makefile.in'
--- share/extensions/xaml2svg/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/extensions/xaml2svg/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -298,9 +300,9 @@
298 exit 1;; \300 exit 1;; \
299 esac; \301 esac; \
300 done; \302 done; \
301 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/extensions/xaml2svg/Makefile'; \303 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/extensions/xaml2svg/Makefile'; \
302 $(am__cd) $(top_srcdir) && \304 $(am__cd) $(top_srcdir) && \
303 $(AUTOMAKE) --foreign share/extensions/xaml2svg/Makefile305 $(AUTOMAKE) --gnu share/extensions/xaml2svg/Makefile
304.PRECIOUS: Makefile306.PRECIOUS: Makefile
305Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status307Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
306 @case '$?' in \308 @case '$?' in \
307309
=== modified file 'share/filters/Makefile.in'
--- share/filters/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/filters/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -290,9 +292,9 @@
290 exit 1;; \292 exit 1;; \
291 esac; \293 esac; \
292 done; \294 done; \
293 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/filters/Makefile'; \295 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/filters/Makefile'; \
294 $(am__cd) $(top_srcdir) && \296 $(am__cd) $(top_srcdir) && \
295 $(AUTOMAKE) --foreign share/filters/Makefile297 $(AUTOMAKE) --gnu share/filters/Makefile
296.PRECIOUS: Makefile298.PRECIOUS: Makefile
297Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status299Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
298 @case '$?' in \300 @case '$?' in \
299301
=== modified file 'share/fonts/Makefile.in'
--- share/fonts/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/fonts/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -286,9 +288,9 @@
286 exit 1;; \288 exit 1;; \
287 esac; \289 esac; \
288 done; \290 done; \
289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/fonts/Makefile'; \291 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/fonts/Makefile'; \
290 $(am__cd) $(top_srcdir) && \292 $(am__cd) $(top_srcdir) && \
291 $(AUTOMAKE) --foreign share/fonts/Makefile293 $(AUTOMAKE) --gnu share/fonts/Makefile
292.PRECIOUS: Makefile294.PRECIOUS: Makefile
293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status295Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
294 @case '$?' in \296 @case '$?' in \
295297
=== modified file 'share/gradients/Makefile.in'
--- share/gradients/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/gradients/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -286,9 +288,9 @@
286 exit 1;; \288 exit 1;; \
287 esac; \289 esac; \
288 done; \290 done; \
289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/gradients/Makefile'; \291 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/gradients/Makefile'; \
290 $(am__cd) $(top_srcdir) && \292 $(am__cd) $(top_srcdir) && \
291 $(AUTOMAKE) --foreign share/gradients/Makefile293 $(AUTOMAKE) --gnu share/gradients/Makefile
292.PRECIOUS: Makefile294.PRECIOUS: Makefile
293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status295Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
294 @case '$?' in \296 @case '$?' in \
295297
=== modified file 'share/icons/Makefile.in'
--- share/icons/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/Makefile.in 2012-03-01 18:39:30 +0000
@@ -218,6 +218,8 @@
218MSGFMT = @MSGFMT@218MSGFMT = @MSGFMT@
219MSGFMT_OPTS = @MSGFMT_OPTS@219MSGFMT_OPTS = @MSGFMT_OPTS@
220MSGMERGE = @MSGMERGE@220MSGMERGE = @MSGMERGE@
221NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
222NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
221OBJEXT = @OBJEXT@223OBJEXT = @OBJEXT@
222PACKAGE = @PACKAGE@224PACKAGE = @PACKAGE@
223PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@225PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -376,9 +378,9 @@
376 exit 1;; \378 exit 1;; \
377 esac; \379 esac; \
378 done; \380 done; \
379 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/Makefile'; \381 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/Makefile'; \
380 $(am__cd) $(top_srcdir) && \382 $(am__cd) $(top_srcdir) && \
381 $(AUTOMAKE) --foreign share/icons/Makefile383 $(AUTOMAKE) --gnu share/icons/Makefile
382.PRECIOUS: Makefile384.PRECIOUS: Makefile
383Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status385Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
384 @case '$?' in \386 @case '$?' in \
385387
=== modified file 'share/icons/application/16x16/Makefile.in'
--- share/icons/application/16x16/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/application/16x16/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -284,9 +286,9 @@
284 exit 1;; \286 exit 1;; \
285 esac; \287 esac; \
286 done; \288 done; \
287 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/application/16x16/Makefile'; \289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/application/16x16/Makefile'; \
288 $(am__cd) $(top_srcdir) && \290 $(am__cd) $(top_srcdir) && \
289 $(AUTOMAKE) --foreign share/icons/application/16x16/Makefile291 $(AUTOMAKE) --gnu share/icons/application/16x16/Makefile
290.PRECIOUS: Makefile292.PRECIOUS: Makefile
291Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
292 @case '$?' in \294 @case '$?' in \
293295
=== modified file 'share/icons/application/22x22/Makefile.in'
--- share/icons/application/22x22/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/application/22x22/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -284,9 +286,9 @@
284 exit 1;; \286 exit 1;; \
285 esac; \287 esac; \
286 done; \288 done; \
287 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/application/22x22/Makefile'; \289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/application/22x22/Makefile'; \
288 $(am__cd) $(top_srcdir) && \290 $(am__cd) $(top_srcdir) && \
289 $(AUTOMAKE) --foreign share/icons/application/22x22/Makefile291 $(AUTOMAKE) --gnu share/icons/application/22x22/Makefile
290.PRECIOUS: Makefile292.PRECIOUS: Makefile
291Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
292 @case '$?' in \294 @case '$?' in \
293295
=== modified file 'share/icons/application/24x24/Makefile.in'
--- share/icons/application/24x24/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/application/24x24/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -284,9 +286,9 @@
284 exit 1;; \286 exit 1;; \
285 esac; \287 esac; \
286 done; \288 done; \
287 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/application/24x24/Makefile'; \289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/application/24x24/Makefile'; \
288 $(am__cd) $(top_srcdir) && \290 $(am__cd) $(top_srcdir) && \
289 $(AUTOMAKE) --foreign share/icons/application/24x24/Makefile291 $(AUTOMAKE) --gnu share/icons/application/24x24/Makefile
290.PRECIOUS: Makefile292.PRECIOUS: Makefile
291Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
292 @case '$?' in \294 @case '$?' in \
293295
=== modified file 'share/icons/application/256x256/Makefile.in'
--- share/icons/application/256x256/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/application/256x256/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -284,9 +286,9 @@
284 exit 1;; \286 exit 1;; \
285 esac; \287 esac; \
286 done; \288 done; \
287 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/application/256x256/Makefile'; \289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/application/256x256/Makefile'; \
288 $(am__cd) $(top_srcdir) && \290 $(am__cd) $(top_srcdir) && \
289 $(AUTOMAKE) --foreign share/icons/application/256x256/Makefile291 $(AUTOMAKE) --gnu share/icons/application/256x256/Makefile
290.PRECIOUS: Makefile292.PRECIOUS: Makefile
291Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
292 @case '$?' in \294 @case '$?' in \
293295
=== modified file 'share/icons/application/32x32/Makefile.in'
--- share/icons/application/32x32/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/application/32x32/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -284,9 +286,9 @@
284 exit 1;; \286 exit 1;; \
285 esac; \287 esac; \
286 done; \288 done; \
287 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/application/32x32/Makefile'; \289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/application/32x32/Makefile'; \
288 $(am__cd) $(top_srcdir) && \290 $(am__cd) $(top_srcdir) && \
289 $(AUTOMAKE) --foreign share/icons/application/32x32/Makefile291 $(AUTOMAKE) --gnu share/icons/application/32x32/Makefile
290.PRECIOUS: Makefile292.PRECIOUS: Makefile
291Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
292 @case '$?' in \294 @case '$?' in \
293295
=== modified file 'share/icons/application/48x48/Makefile.in'
--- share/icons/application/48x48/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/application/48x48/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -284,9 +286,9 @@
284 exit 1;; \286 exit 1;; \
285 esac; \287 esac; \
286 done; \288 done; \
287 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/application/48x48/Makefile'; \289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/application/48x48/Makefile'; \
288 $(am__cd) $(top_srcdir) && \290 $(am__cd) $(top_srcdir) && \
289 $(AUTOMAKE) --foreign share/icons/application/48x48/Makefile291 $(AUTOMAKE) --gnu share/icons/application/48x48/Makefile
290.PRECIOUS: Makefile292.PRECIOUS: Makefile
291Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
292 @case '$?' in \294 @case '$?' in \
293295
=== modified file 'share/icons/application/Makefile.in'
--- share/icons/application/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/icons/application/Makefile.in 2012-03-01 18:39:30 +0000
@@ -188,6 +188,8 @@
188MSGFMT = @MSGFMT@188MSGFMT = @MSGFMT@
189MSGFMT_OPTS = @MSGFMT_OPTS@189MSGFMT_OPTS = @MSGFMT_OPTS@
190MSGMERGE = @MSGMERGE@190MSGMERGE = @MSGMERGE@
191NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
192NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
191OBJEXT = @OBJEXT@193OBJEXT = @OBJEXT@
192PACKAGE = @PACKAGE@194PACKAGE = @PACKAGE@
193PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@195PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -293,9 +295,9 @@
293 exit 1;; \295 exit 1;; \
294 esac; \296 esac; \
295 done; \297 done; \
296 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/icons/application/Makefile'; \298 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/icons/application/Makefile'; \
297 $(am__cd) $(top_srcdir) && \299 $(am__cd) $(top_srcdir) && \
298 $(AUTOMAKE) --foreign share/icons/application/Makefile300 $(AUTOMAKE) --gnu share/icons/application/Makefile
299.PRECIOUS: Makefile301.PRECIOUS: Makefile
300Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status302Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
301 @case '$?' in \303 @case '$?' in \
302304
=== modified file 'share/keys/Makefile.in'
--- share/keys/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/keys/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -294,9 +296,9 @@
294 exit 1;; \296 exit 1;; \
295 esac; \297 esac; \
296 done; \298 done; \
297 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/keys/Makefile'; \299 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/keys/Makefile'; \
298 $(am__cd) $(top_srcdir) && \300 $(am__cd) $(top_srcdir) && \
299 $(AUTOMAKE) --foreign share/keys/Makefile301 $(AUTOMAKE) --gnu share/keys/Makefile
300.PRECIOUS: Makefile302.PRECIOUS: Makefile
301Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status303Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
302 @case '$?' in \304 @case '$?' in \
303305
=== modified file 'share/markers/Makefile.in'
--- share/markers/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/markers/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -286,9 +288,9 @@
286 exit 1;; \288 exit 1;; \
287 esac; \289 esac; \
288 done; \290 done; \
289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/markers/Makefile'; \291 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/markers/Makefile'; \
290 $(am__cd) $(top_srcdir) && \292 $(am__cd) $(top_srcdir) && \
291 $(AUTOMAKE) --foreign share/markers/Makefile293 $(AUTOMAKE) --gnu share/markers/Makefile
292.PRECIOUS: Makefile294.PRECIOUS: Makefile
293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status295Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
294 @case '$?' in \296 @case '$?' in \
295297
=== modified file 'share/palettes/Makefile.in'
--- share/palettes/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/palettes/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -305,9 +307,9 @@
305 exit 1;; \307 exit 1;; \
306 esac; \308 esac; \
307 done; \309 done; \
308 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/palettes/Makefile'; \310 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/palettes/Makefile'; \
309 $(am__cd) $(top_srcdir) && \311 $(am__cd) $(top_srcdir) && \
310 $(AUTOMAKE) --foreign share/palettes/Makefile312 $(AUTOMAKE) --gnu share/palettes/Makefile
311.PRECIOUS: Makefile313.PRECIOUS: Makefile
312Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status314Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
313 @case '$?' in \315 @case '$?' in \
314316
=== modified file 'share/patterns/Makefile.in'
--- share/patterns/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/patterns/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -288,9 +290,9 @@
288 exit 1;; \290 exit 1;; \
289 esac; \291 esac; \
290 done; \292 done; \
291 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/patterns/Makefile'; \293 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/patterns/Makefile'; \
292 $(am__cd) $(top_srcdir) && \294 $(am__cd) $(top_srcdir) && \
293 $(AUTOMAKE) --foreign share/patterns/Makefile295 $(AUTOMAKE) --gnu share/patterns/Makefile
294.PRECIOUS: Makefile296.PRECIOUS: Makefile
295Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status297Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
296 @case '$?' in \298 @case '$?' in \
297299
=== modified file 'share/screens/Makefile.in'
--- share/screens/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/screens/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -286,9 +288,9 @@
286 exit 1;; \288 exit 1;; \
287 esac; \289 esac; \
288 done; \290 done; \
289 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/screens/Makefile'; \291 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/screens/Makefile'; \
290 $(am__cd) $(top_srcdir) && \292 $(am__cd) $(top_srcdir) && \
291 $(AUTOMAKE) --foreign share/screens/Makefile293 $(AUTOMAKE) --gnu share/screens/Makefile
292.PRECIOUS: Makefile294.PRECIOUS: Makefile
293Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status295Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
294 @case '$?' in \296 @case '$?' in \
295297
=== modified file 'share/templates/Makefile.in'
--- share/templates/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/templates/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -336,9 +338,9 @@
336 exit 1;; \338 exit 1;; \
337 esac; \339 esac; \
338 done; \340 done; \
339 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/templates/Makefile'; \341 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/templates/Makefile'; \
340 $(am__cd) $(top_srcdir) && \342 $(am__cd) $(top_srcdir) && \
341 $(AUTOMAKE) --foreign share/templates/Makefile343 $(AUTOMAKE) --gnu share/templates/Makefile
342.PRECIOUS: Makefile344.PRECIOUS: Makefile
343Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status345Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
344 @case '$?' in \346 @case '$?' in \
345347
=== modified file 'share/tutorials/Makefile.in'
--- share/tutorials/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/tutorials/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -471,9 +473,9 @@
471 exit 1;; \473 exit 1;; \
472 esac; \474 esac; \
473 done; \475 done; \
474 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/tutorials/Makefile'; \476 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/tutorials/Makefile'; \
475 $(am__cd) $(top_srcdir) && \477 $(am__cd) $(top_srcdir) && \
476 $(AUTOMAKE) --foreign share/tutorials/Makefile478 $(AUTOMAKE) --gnu share/tutorials/Makefile
477.PRECIOUS: Makefile479.PRECIOUS: Makefile
478Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status480Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
479 @case '$?' in \481 @case '$?' in \
480482
=== modified file 'share/ui/Makefile.in'
--- share/ui/Makefile.in 2012-02-16 10:21:27 +0000
+++ share/ui/Makefile.in 2012-03-01 18:39:30 +0000
@@ -178,6 +178,8 @@
178MSGFMT = @MSGFMT@178MSGFMT = @MSGFMT@
179MSGFMT_OPTS = @MSGFMT_OPTS@179MSGFMT_OPTS = @MSGFMT_OPTS@
180MSGMERGE = @MSGMERGE@180MSGMERGE = @MSGMERGE@
181NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
182NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
181OBJEXT = @OBJEXT@183OBJEXT = @OBJEXT@
182PACKAGE = @PACKAGE@184PACKAGE = @PACKAGE@
183PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@185PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -290,9 +292,9 @@
290 exit 1;; \292 exit 1;; \
291 esac; \293 esac; \
292 done; \294 done; \
293 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign share/ui/Makefile'; \295 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu share/ui/Makefile'; \
294 $(am__cd) $(top_srcdir) && \296 $(am__cd) $(top_srcdir) && \
295 $(AUTOMAKE) --foreign share/ui/Makefile297 $(AUTOMAKE) --gnu share/ui/Makefile
296.PRECIOUS: Makefile298.PRECIOUS: Makefile
297Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status299Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
298 @case '$?' in \300 @case '$?' in \
299301
=== modified file 'src/Makefile.in'
--- src/Makefile.in 2012-02-16 10:21:27 +0000
+++ src/Makefile.in 2012-03-01 18:39:30 +0000
@@ -1654,6 +1654,8 @@
1654MSGFMT = @MSGFMT@1654MSGFMT = @MSGFMT@
1655MSGFMT_OPTS = @MSGFMT_OPTS@1655MSGFMT_OPTS = @MSGFMT_OPTS@
1656MSGMERGE = @MSGMERGE@1656MSGMERGE = @MSGMERGE@
1657NEW_GLIBMM_CFLAGS = @NEW_GLIBMM_CFLAGS@
1658NEW_GLIBMM_LIBS = @NEW_GLIBMM_LIBS@
1657OBJEXT = @OBJEXT@1659OBJEXT = @OBJEXT@
1658PACKAGE = @PACKAGE@1660PACKAGE = @PACKAGE@
1659PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@1661PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
@@ -3021,9 +3023,9 @@
3021 exit 1;; \3023 exit 1;; \
3022 esac; \3024 esac; \
3023 done; \3025 done; \
3024 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \3026 echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
3025 $(am__cd) $(top_srcdir) && \3027 $(am__cd) $(top_srcdir) && \
3026 $(AUTOMAKE) --foreign src/Makefile3028 $(AUTOMAKE) --gnu src/Makefile
3027.PRECIOUS: Makefile3029.PRECIOUS: Makefile
3028Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status3030Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
3029 @case '$?' in \3031 @case '$?' in \
30303032
=== modified file 'src/color-profile.cpp'
--- src/color-profile.cpp 2012-02-16 10:21:27 +0000
+++ src/color-profile.cpp 2012-03-01 18:39:30 +0000
@@ -821,7 +821,7 @@
821#ifdef WIN32821#ifdef WIN32
822 wchar_t pathBuf[MAX_PATH + 1];822 wchar_t pathBuf[MAX_PATH + 1];
823 pathBuf[0] = 0;823 pathBuf[0] = 0;
824 cmsUInt32Number pathSize = sizeof(pathBuf);824 DWORD pathSize = sizeof(pathBuf);
825 g_assert(sizeof(wchar_t) == sizeof(gunichar2));825 g_assert(sizeof(wchar_t) == sizeof(gunichar2));
826 if ( GetColorDirectoryW( NULL, pathBuf, &pathSize ) ) {826 if ( GetColorDirectoryW( NULL, pathBuf, &pathSize ) ) {
827 gchar * utf8Path = g_utf16_to_utf8( (gunichar2*)(&pathBuf[0]), -1, NULL, NULL, NULL );827 gchar * utf8Path = g_utf16_to_utf8( (gunichar2*)(&pathBuf[0]), -1, NULL, NULL, NULL );
828828
=== modified file 'src/display/nr-filter-flood.cpp'
--- src/display/nr-filter-flood.cpp 2010-09-12 19:44:58 +0000
+++ src/display/nr-filter-flood.cpp 2012-03-01 18:39:30 +0000
@@ -58,10 +58,11 @@
58 b = CLAMP_D_TO_U8((color >> 8) % 256);58 b = CLAMP_D_TO_U8((color >> 8) % 256);
59 a = CLAMP_D_TO_U8(opacity*255);59 a = CLAMP_D_TO_U8(opacity*255);
6060
61#if ENABLE_LCMS61#if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2)
62 if (icc) {
62 icc_color_to_sRGB(icc, &r, &g, &b);63 icc_color_to_sRGB(icc, &r, &g, &b);
63//g_message("result: r:%d g:%d b:%d", r, g, b);64 }
64#endif //ENABLE_LCMS65#endif
6566
66 for(i=0; i < 4*in_h*in_w; i+=4){67 for(i=0; i < 4*in_h*in_w; i+=4){
67 out_data[i]=r;68 out_data[i]=r;
6869
=== modified file 'src/inkscape-version.cpp'
--- src/inkscape-version.cpp 2012-02-16 10:21:27 +0000
+++ src/inkscape-version.cpp 2012-03-01 18:39:30 +0000
@@ -1,1 +1,1 @@
1namespace Inkscape { char const *version_string = "0.48.3 r9882"; }1namespace Inkscape { char const *version_string = "0.48.3.1 r9886"; }

Subscribers

People subscribed via source and target branches