Tim,
Here are a bunch of patches I don't think have been merged into Trinity.
http://humanreadable.nfshost.com/trinity/patches/
I checked them against svn (my head hurts!). I might have missed a few because of the changes to run through tqtinterface, but not many if I did.
Some of them will need to be converted to using TQT.
I found these patches while building KDE 3.5.10 on Slackware 13.1. There were many more patches, but those I did not post have been merged into Trinity.
There are quite a few patches against qt3. Several apps include patches for libpng 1.4.
Darrell
Hi Hello! everyone.
in this fashion API changes these days, I found that debian and winbuntu old lasted revisions, has old libpng 1.2, especialy lenny with 1.2.22, which means that the patchs for libpng 1.4 support on qt3 for trinity can make impossible compile into Debian squeeze, testing inlcusive, as win-buntu 9.XX, it should be modified to use a macro -LIB_PNG_14 or something similar .. I do not remember how to work with this but if I can do for the weekend..
If some body can do that , please change the patch for use optionaly both library versions...
If i can resolve all issues, i do a qt3 3.3.c tar gzipped release alternate for ready download in public, for easy acces to novice developers
On Fri, Apr 1, 2011 at 4:40 PM, Darrell Anderson humanreadable@yahoo.com wrote:
Tim,
Here are a bunch of patches I don't think have been merged into Trinity.
http://humanreadable.nfshost.com/trinity/patches/
I checked them against svn (my head hurts!). I might have missed a few because of the changes to run through tqtinterface, but not many if I did.
Some of them will need to be converted to using TQT.
I found these patches while building KDE 3.5.10 on Slackware 13.1. There were many more patches, but those I did not post have been merged into Trinity.
There are quite a few patches against qt3. Several apps include patches for libpng 1.4.
Darrell
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
Hi Hello! everyone.
in this fashion API changes these days, I found that debian and winbuntu old lasted revisions, has old libpng 1.2, especialy lenny with 1.2.22, which means that the patchs for libpng 1.4 support on qt3 for trinity can make impossible compile into Debian squeeze, testing inlcusive, as win-buntu 9.XX, it should be modified to use a macro -LIB_PNG_14 or something similar .. I do not remember how to work with this but if I can do for the weekend..
If some body can do that , please change the patch for use optionaly both library versions...
If i can resolve all issues, i do a qt3 3.3.c tar gzipped release alternate for ready download in public, for easy acces to novice developers
On Fri, Apr 1, 2011 at 4:40 PM, Darrell Anderson humanreadable@yahoo.com wrote:
Tim,
Here are a bunch of patches I don't think have been merged into Trinity.
http://humanreadable.nfshost.com/trinity/patches/
I checked them against svn (my head hurts!). I might have missed a few because of the changes to run through tqtinterface, but not many if I did.
Some of them will need to be converted to using TQT.
I found these patches while building KDE 3.5.10 on Slackware 13.1. There were many more patches, but those I did not post have been merged into Trinity.
There are quite a few patches against qt3. Several apps include patches for libpng 1.4.
Darrell
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
I don't want to do wholesale patching of the Trinity source until I can build at least the base modules (including kdegraphics/kdenetwork/etc.) in a batch, which means that CMake has to progress a bit more before I can really deal with them.
This is because it is very easy to introduce compilation and functionality errors when applying patches, and without an immediate rebuild test and functionality check it can be very hard to narrow down exactly what went wrong where at some future date.
Thanks for bringing them to my attention though!
Tim
On 04/28/2011 12:49 PM, PICCORO McKAY Lenz wrote:
Hi Hello! everyone.
in this fashion API changes these days, I found that debian and winbuntu old lasted revisions, has old libpng 1.2, especialy lenny with 1.2.22, which means that the patchs for libpng 1.4 support on qt3 for trinity can make impossible compile into Debian squeeze, testing inlcusive, as win-buntu 9.XX, it should be modified to use a macro -LIB_PNG_14 or something similar .. I do not remember how to work with this but if I can do for the weekend..
If some body can do that , please change the patch for use optionaly both library versions...
If i can resolve all issues, i do a qt3 3.3.c tar gzipped release alternate for ready download in public, for easy acces to novice developers
I have libpng 1.4.5-1 installed and this patch for qt3 works for me
--- src/kernel/qpngio.cpp.orig 2010-01-16 22:02:41.000000000 +0100 +++ src/kernel/qpngio.cpp 2010-01-16 22:03:56.000000000 +0100 @@ -159,7 +159,7 @@ image.setColor( i, qRgba(c,c,c,0xff) ); } if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) { - const int g = info_ptr->trans_values.gray; + const int g = info_ptr->trans_color.gray; if (g < ncols) { image.setAlphaBuffer(TRUE); image.setColor(g, image.color(g) & RGB_MASK); @@ -187,7 +187,7 @@ info_ptr->palette[i].red, info_ptr->palette[i].green, info_ptr->palette[i].blue, - info_ptr->trans[i] + info_ptr->trans_alpha[i] ) ); i++; @@ -321,9 +321,9 @@ png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) if (image.depth()==32 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { QRgb trans = 0xFF000000 | qRgb( - (info_ptr->trans_values.red << 8 >> bit_depth)&0xff, - (info_ptr->trans_values.green << 8 >> bit_depth)&0xff, - (info_ptr->trans_values.blue << 8 >> bit_depth)&0xff); + (info_ptr->trans_color.red << 8 >> bit_depth)&0xff, + (info_ptr->trans_color.green << 8 >> bit_depth)&0xff, + (info_ptr->trans_color.blue << 8 >> bit_depth)&0xff); for (uint y=0; y<height; y++) { for (uint x=0; x<info_ptr->width; x++) { if (((uint**)jt)[y][x] == trans) {
please i send before a issue about merge patches.. libpng 1.4 its only in few linux dist, only the win-alike dist..
debian, slack, funtoo, win-buntu, debian-derivatives and some small dont use yet libpng 1.4 , the amount of users that use tde 3.5.1X dont are win-hat, win-suse or lasted slackware, its commonly debian or win-.buntu users..
libpng patches must use a -D macro definet to use nwer or older version alternate!
or this patch must be inplemented outside normal release of qt3. by example in every specific distribution as Arch do in the kde3 alternate proyect.
On Thu, Apr 28, 2011 at 4:35 PM, Baho Utot baho-utot@columbus.rr.comwrote:
On 04/28/2011 12:49 PM, PICCORO McKAY Lenz wrote:
Hi Hello! everyone.
in this fashion API changes these days, I found that debian and winbuntu old lasted revisions, has old libpng 1.2, especialy lenny with 1.2.22, which means that the patchs for libpng 1.4 support on qt3 for trinity can make impossible compile into Debian squeeze, testing inlcusive, as win-buntu 9.XX, it should be modified to use a macro -LIB_PNG_14 or something similar .. I do not remember how to work with this but if I can do for the weekend..
If some body can do that , please change the patch for use optionaly both library versions...
If i can resolve all issues, i do a qt3 3.3.c tar gzipped release alternate for ready download in public, for easy acces to novice developers
I have libpng 1.4.5-1 installed and this patch for qt3 works for me
--- src/kernel/qpngio.cpp.orig 2010-01-16 22:02:41.000000000 +0100 +++ src/kernel/qpngio.cpp 2010-01-16 22:03:56.000000000 +0100 @@ -159,7 +159,7 @@ image.setColor( i, qRgba(c,c,c,0xff) ); } if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) {
const int g = info_ptr->trans_values.gray;
const int g = info_ptr->trans_color.gray; if (g < ncols) { image.setAlphaBuffer(TRUE); image.setColor(g, image.color(g) & RGB_MASK);
@@ -187,7 +187,7 @@ info_ptr->palette[i].red, info_ptr->palette[i].green, info_ptr->palette[i].blue,
info_ptr->trans[i]
info_ptr->trans_alpha[i] ) ); i++;
@@ -321,9 +321,9 @@ png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) if (image.depth()==32 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { QRgb trans = 0xFF000000 | qRgb(
(info_ptr->trans_values.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_values.green << 8 >> bit_depth)&0xff,
(info_ptr->trans_values.blue << 8 >> bit_depth)&0xff);
(info_ptr->trans_color.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_color.green << 8 >> bit_depth)&0xff,
for (uint y=0; y<height; y++) { for (uint x=0; x<info_ptr->width; x++) { if (((uint**)jt)[y][x] == trans) {(info_ptr->trans_color.blue << 8 >> bit_depth)&0xff);
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
Le Fri, 29 Apr 2011 10:42:58 -0430, PICCORO McKAY Lenz mckaygerhard@gmail.com a écrit :
please i send before a issue about merge patches.. libpng 1.4 its only in few linux dist, only the win-alike dist..
debian, slack, funtoo, win-buntu, debian-derivatives and some small dont use yet libpng 1.4 , the amount of users that use tde 3.5.1X dont are win-hat, win-suse or lasted slackware, its commonly debian or win-.buntu users..
-Slackware <= 13.0 uses libpng 1.2 -Slackware 13.1 uses libpng 1.2 and 1.4 -Slackware >=13.37 uses libpng 1.4 so windists are not the only dists using libpng 1.4 exclusively (or is Slackware a windist ? :D)
libpng patches must use a -D macro definet to use nwer or older version alternate!
or this patch must be inplemented outside normal release of qt3. by example in every specific distribution as Arch do in the kde3 alternate proyect.
On Thu, Apr 28, 2011 at 4:35 PM, Baho Utot baho-utot@columbus.rr.comwrote:
On 04/28/2011 12:49 PM, PICCORO McKAY Lenz wrote:
Hi Hello! everyone.
in this fashion API changes these days, I found that debian and winbuntu old lasted revisions, has old libpng 1.2, especialy lenny with 1.2.22, which means that the patchs for libpng 1.4 support on qt3 for trinity can make impossible compile into Debian squeeze, testing inlcusive, as win-buntu 9.XX, it should be modified to use a macro -LIB_PNG_14 or something similar .. I do not remember how to work with this but if I can do for the weekend..
If some body can do that , please change the patch for use optionaly both library versions...
If i can resolve all issues, i do a qt3 3.3.c tar gzipped release alternate for ready download in public, for easy acces to novice developers
I have libpng 1.4.5-1 installed and this patch for qt3 works for me
--- src/kernel/qpngio.cpp.orig 2010-01-16 22:02:41.000000000 +0100 +++ src/kernel/qpngio.cpp 2010-01-16 22:03:56.000000000 +0100 @@ -159,7 +159,7 @@ image.setColor( i, qRgba(c,c,c,0xff) ); } if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) {
const int g = info_ptr->trans_values.gray;
const int g = info_ptr->trans_color.gray; if (g < ncols) { image.setAlphaBuffer(TRUE); image.setColor(g, image.color(g) & RGB_MASK);
@@ -187,7 +187,7 @@ info_ptr->palette[i].red, info_ptr->palette[i].green, info_ptr->palette[i].blue,
info_ptr->trans[i]
info_ptr->trans_alpha[i] ) ); i++;
@@ -321,9 +321,9 @@ png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) if (image.depth()==32 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { QRgb trans = 0xFF000000 | qRgb(
(info_ptr->trans_values.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_values.green << 8 >> bit_depth)&0xff,
(info_ptr->trans_values.blue << 8 >> bit_depth)&0xff);
(info_ptr->trans_color.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_color.green << 8 >> bit_depth)&0xff,
for (uint y=0; y<height; y++) { for (uint x=0; x<info_ptr->width; x++) { if (((uint**)jt)[y][x] == trans) {(info_ptr->trans_color.blue << 8 >> bit_depth)&0xff);
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
O.o slak a real linux distro use libpng 1.4 in lasted release, sorry !!! win distro NEVER! slack its the longer old distro in word! and the most close to linux folosophy
On Fri, Apr 29, 2011 at 11:29 AM, /dev/ammo42 mickeytintincolle@yahoo.frwrote:
Le Fri, 29 Apr 2011 10:42:58 -0430, PICCORO McKAY Lenz mckaygerhard@gmail.com a écrit :
please i send before a issue about merge patches.. libpng 1.4 its only in few linux dist, only the win-alike dist..
debian, slack, funtoo, win-buntu, debian-derivatives and some small dont use yet libpng 1.4 , the amount of users that use tde 3.5.1X dont are win-hat, win-suse or lasted slackware, its commonly debian or win-.buntu users..
-Slackware <= 13.0 uses libpng 1.2 -Slackware 13.1 uses libpng 1.2 and 1.4 -Slackware >=13.37 uses libpng 1.4 so windists are not the only dists using libpng 1.4 exclusively (or is Slackware a windist ? :D)
libpng patches must use a -D macro definet to use nwer or older version alternate!
or this patch must be inplemented outside normal release of qt3. by example in every specific distribution as Arch do in the kde3 alternate proyect.
On Thu, Apr 28, 2011 at 4:35 PM, Baho Utot baho-utot@columbus.rr.comwrote:
On 04/28/2011 12:49 PM, PICCORO McKAY Lenz wrote:
Hi Hello! everyone.
in this fashion API changes these days, I found that debian and winbuntu old lasted revisions, has old libpng 1.2, especialy lenny with 1.2.22, which means that the patchs for libpng 1.4 support on qt3 for trinity can make impossible compile into Debian squeeze, testing inlcusive, as win-buntu 9.XX, it should be modified to use a macro -LIB_PNG_14 or something similar .. I do not remember how to work with this but if I can do for the weekend..
If some body can do that , please change the patch for use optionaly both library versions...
If i can resolve all issues, i do a qt3 3.3.c tar gzipped release alternate for ready download in public, for easy acces to novice developers
I have libpng 1.4.5-1 installed and this patch for qt3 works for me
--- src/kernel/qpngio.cpp.orig 2010-01-16 22:02:41.000000000 +0100 +++ src/kernel/qpngio.cpp 2010-01-16 22:03:56.000000000 +0100 @@ -159,7 +159,7 @@ image.setColor( i, qRgba(c,c,c,0xff) ); } if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) {
const int g = info_ptr->trans_values.gray;
const int g = info_ptr->trans_color.gray; if (g < ncols) { image.setAlphaBuffer(TRUE); image.setColor(g, image.color(g) & RGB_MASK);
@@ -187,7 +187,7 @@ info_ptr->palette[i].red, info_ptr->palette[i].green, info_ptr->palette[i].blue,
info_ptr->trans[i]
info_ptr->trans_alpha[i] ) ); i++;
@@ -321,9 +321,9 @@ png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) if (image.depth()==32 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { QRgb trans = 0xFF000000 | qRgb(
(info_ptr->trans_values.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_values.green << 8 >> bit_depth)&0xff,
(info_ptr->trans_values.blue << 8 >> bit_depth)&0xff);
(info_ptr->trans_color.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_color.green << 8 >> bit_depth)&0xff,
for (uint y=0; y<height; y++) { for (uint x=0; x<info_ptr->width; x++) { if (((uint**)jt)[y][x] == trans) {(info_ptr->trans_color.blue << 8 >> bit_depth)&0xff);
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
Le Fri, 29 Apr 2011 12:54:01 -0430, PICCORO McKAY Lenz mckaygerhard@gmail.com a écrit :
O.o slak a real linux distro use libpng 1.4 in lasted release, sorry !!! win distro NEVER! slack its the longer old distro in word! and the most close to linux folosophy
Slackware being a windistro was indeed a joke ;)
On Fri, Apr 29, 2011 at 11:29 AM, /dev/ammo42 mickeytintincolle@yahoo.frwrote:
Le Fri, 29 Apr 2011 10:42:58 -0430, PICCORO McKAY Lenz mckaygerhard@gmail.com a écrit :
please i send before a issue about merge patches.. libpng 1.4 its only in few linux dist, only the win-alike dist..
debian, slack, funtoo, win-buntu, debian-derivatives and some small dont use yet libpng 1.4 , the amount of users that use tde 3.5.1X dont are win-hat, win-suse or lasted slackware, its commonly debian or win-.buntu users..
-Slackware <= 13.0 uses libpng 1.2 -Slackware 13.1 uses libpng 1.2 and 1.4 -Slackware >=13.37 uses libpng 1.4 so windists are not the only dists using libpng 1.4 exclusively (or is Slackware a windist ? :D)
libpng patches must use a -D macro definet to use nwer or older version alternate!
or this patch must be inplemented outside normal release of qt3. by example in every specific distribution as Arch do in the kde3 alternate proyect.
On Thu, Apr 28, 2011 at 4:35 PM, Baho Utot baho-utot@columbus.rr.comwrote:
On 04/28/2011 12:49 PM, PICCORO McKAY Lenz wrote:
Hi Hello! everyone.
in this fashion API changes these days, I found that debian and winbuntu old lasted revisions, has old libpng 1.2, especialy lenny with 1.2.22, which means that the patchs for libpng 1.4 support on qt3 for trinity can make impossible compile into Debian squeeze, testing inlcusive, as win-buntu 9.XX, it should be modified to use a macro -LIB_PNG_14 or something similar .. I do not remember how to work with this but if I can do for the weekend..
If some body can do that , please change the patch for use optionaly both library versions...
If i can resolve all issues, i do a qt3 3.3.c tar gzipped release alternate for ready download in public, for easy acces to novice developers
I have libpng 1.4.5-1 installed and this patch for qt3 works for me
--- src/kernel/qpngio.cpp.orig 2010-01-16 22:02:41.000000000 +0100 +++ src/kernel/qpngio.cpp 2010-01-16 22:03:56.000000000 +0100 @@ -159,7 +159,7 @@ image.setColor( i, qRgba(c,c,c,0xff) ); } if ( png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) ) {
const int g = info_ptr->trans_values.gray;
const int g = info_ptr->trans_color.gray; if (g < ncols) { image.setAlphaBuffer(TRUE); image.setColor(g, image.color(g) & RGB_MASK);
@@ -187,7 +187,7 @@ info_ptr->palette[i].red, info_ptr->palette[i].green, info_ptr->palette[i].blue,
info_ptr->trans[i]
info_ptr->trans_alpha[i] ) ); i++;
@@ -321,9 +321,9 @@ png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS) if (image.depth()==32 && png_get_valid(png_ptr, info_ptr, PNG_INFO_tRNS)) { QRgb trans = 0xFF000000 | qRgb(
(info_ptr->trans_values.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_values.green << 8 >>
bit_depth)&0xff,
(info_ptr->trans_values.blue << 8 >>
bit_depth)&0xff);
(info_ptr->trans_color.red << 8 >> bit_depth)&0xff,
(info_ptr->trans_color.green << 8 >> bit_depth)&0xff,
for (uint y=0; y<height; y++) { for (uint x=0; x<info_ptr->width; x++) { if (((uint**)jt)[y][x] == trans) {(info_ptr->trans_color.blue << 8 >> bit_depth)&0xff);
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
To unsubscribe, e-mail: trinity-devel-unsubscribe@lists.pearsoncomputing.net For additional commands, e-mail: trinity-devel-help@lists.pearsoncomputing.net Read list messsages on the Web archive: http://trinity-devel.pearsoncomputing.net/ Please remember not to top-post: http://trinity.pearsoncomputing.net/mailing_lists/#top-posting
On 04/29/2011 01:43 PM, /dev/ammo42 wrote:
Le Fri, 29 Apr 2011 12:54:01 -0430, PICCORO McKAY Lenzmckaygerhard@gmail.com a écrit :
O.o slak a real linux distro use libpng 1.4 in lasted release, sorry !!! win distro NEVER! slack its the longer old distro in word! and the most close to linux folosophy
Slackware being a windistro was indeed a joke ;)
Not really microsoft funded it
On 04/29/2011 11:12 AM, PICCORO McKAY Lenz wrote:
please i send before a issue about merge patches.. libpng 1.4 its only in few linux dist, only the win-alike dist..
I use Arch it is bleeding edge and it has libpng 1.4
debian, slack, funtoo, win-buntu, debian-derivatives and some small dont use yet libpng 1.4 , the amount of users that use tde 3.5.1X dont are win-hat, win-suse or lasted slackware, its commonly debian or win-.buntu users..
? Can't grok the above
libpng patches must use a -D macro definet to use nwer or older version alternate!
or this patch must be inplemented outside normal release of qt3. by example in every specific distribution as Arch do in the kde3 alternate proyect.
???
Any way on Arch I use the stock qt3 tarball and the following:
ftp://ftp.trolltech.com/qt/source/qt-x11-free-3.3.8b.tar.gz qt-patches.tar.bz2 qt3-png14.patch eastern_asian_languagues.diff qt-odbc.patch qt3_3.3.8c.diff
works for me
On Fri, Apr 29, 2011 at 8:49 PM, Baho Utot baho-utot@columbus.rr.comwrote:
On 04/29/2011 11:12 AM, PICCORO McKAY Lenz wrote:
please i send before a issue about merge patches.. libpng 1.4 its only in few linux dist, only the win-alike dist..
I use Arch it is bleeding edge and it has libpng 1.4
yes, no problem, but its only related as i explaint, others linux not yet implement libpng 1.4 , mayor example winbuntu woldwide used!
debian, slack, funtoo, win-buntu, debian-derivatives and some small dont
use yet libpng 1.4 , the amount of users that use tde 3.5.1X dont are win-hat, win-suse or lasted slackware, its commonly debian or win-.buntu users..
? Can't grok the above
umm, its true, geento=linux as arch= wingeento
libpng patches must use a -D macro definet to use nwer or older version
alternate!
sorry, i can explaint, my english its very worse.. i will explain later..
i hope i relase qt3 3.3.8c with libpng option compile settings!
???
Any way on Arch I use... ftp://ftp.trolltech.com/qt/source/qt-x1...ftp://ftp.trolltech.com/qt/source/qt-x11-free-3.3.8b.tar.gz works for me
AND WORKS WELL , great job at arch ! and take carefully, the ftp of trolltech and accesss to will not exist forever! Nokia is a company and as suchget sell down double croos anyone for money, as example look, now uses Windows on their mobiles!
Le Mon, 2 May 2011 11:51:14 -0430, PICCORO McKAY Lenz mckaygerhard@gmail.com a écrit :
On Fri, Apr 29, 2011 at 8:49 PM, Baho Utot baho-utot@columbus.rr.comwrote:
On 04/29/2011 11:12 AM, PICCORO McKAY Lenz wrote:
please i send before a issue about merge patches.. libpng 1.4 its only in few linux dist, only the win-alike dist..
I use Arch it is bleeding edge and it has libpng 1.4
yes, no problem, but its only related as i explaint, others linux not yet implement libpng 1.4 , mayor example winbuntu woldwide used!
debian, slack, funtoo, win-buntu, debian-derivatives and some small dont
use yet libpng 1.4 , the amount of users that use tde 3.5.1X dont are win-hat, win-suse or lasted slackware, its commonly debian or win-.buntu users..
? Can't grok the above
umm, its true, geento=linux as arch= wingeento
libpng patches must use a -D macro definet to use nwer or older version
alternate!
sorry, i can explaint, my english its very worse.. i will explain later..
i hope i relase qt3 3.3.8c with libpng option compile settings!
???
Any way on Arch I use... ftp://ftp.trolltech.com/qt/source/qt-x1...ftp://ftp.trolltech.com/qt/source/qt-x11-free-3.3.8b.tar.gz works for me
AND WORKS WELL , great job at arch ! and take carefully, the ftp of trolltech and accesss to will not exist forever! Nokia is a company and as suchget sell down double croos anyone for money, as example look, now uses Windows on their mobiles!
Should the ftp.trolltech.com site go down, the Qt-3.3.8b sources can still be get for exemple at Slackware mirrors mirrorring Slackware 12.2 : http://slackware.osuosl.org/slackware-12.2/source/l/qt/
On Mon, May 2, 2011 at 12:21, PICCORO McKAY Lenz mckaygerhard@gmail.com wrote:
yes, no problem, but its only related as i explaint, others linux not yet implement libpng 1.4 , mayor example winbuntu woldwide used!
what do you mean? libpng 1.4 is already in many distributions.
sorry, i can explaint, my english its very worse.. i will explain later.. i hope i relase qt3 3.3.8c with libpng option compile settings!
Most people are fine with current implementations.
trolltech and accesss to will not exist forever! Nokia is a company and as suchget sell down double croos anyone for money, as example look, now uses Windows on their mobiles!
please, no stereotypes. it's not really the best etiquette.
From SUSE to Fedora now r' using libpng updated, and obviously geentobased-copy (arch and Funtoo by example) always use the most up to date, since it is compiled on use time!. But they are the most widely used. Based on popularity its not the case! the project is for everyone,
... and precisely the project is about something that kde.org assumed "old software"! vs kde4 for something new and, in fact the situation is quite ironic! so libpng 1.2.X must be suported too in primary opction even libpng 1.4 , and same for other cases like libexiv2 that differs in winbuntu releases
not in fact:
what do you mean? libpng 1.4 is already in many distributions
lest se the most based: (mother of all metadistro) http://packages.debian.org/search?suite=all&arch=any&searchon=source... only 1.2 was! and libexiv differs on oldstable to experimental
lest see the most popular and most used woldwide (note i hate winbuntu) http://packages.ubuntu.com/search?searchon=sourcenames&keywords=libpng only 1.2.X was! and libexiv2 differs to natty from maverick to oneric http://packages.ubuntu.com/search?searchon=sourcenames&keywords=exiv2
Let's talk seriously. I understand that everyone here is up to last software and hav all for (both powerful machines as well as time to browse the Internet) but we must take into account two variables: debian is more liveCD distro that are built and are on the network, and winBuntu is the most widely used system today, and so more satirical is based on debian!.
This is not about preference but thinking that although the older software represent extra work, we all know that when something is older is better known and tested, and in some cases more prefered (like kde3 ironic!!!) this philosophy is carried by debian stability. Ubuntu combines this philosophy and tries to keep up. This filosophy take this project to named trinity, so..