| 1 |
diff -up acetoneiso_2.0.4/acetoneiso/src/sources/converter.h.BAD acetoneiso_2.0.4/acetoneiso/src/sources/converter.h
|
| 2 |
--- acetoneiso_2.0.4/acetoneiso/sources/converter.h.BAD 2009-04-09 09:50:31.000000000 -0400
|
| 3 |
+++ acetoneiso_2.0.4/acetoneiso/sources/converter.h 2009-04-09 09:51:03.000000000 -0400
|
| 4 |
@@ -125,6 +125,7 @@ else {
|
| 5 |
void acetoneiso::get_poweriso()
|
| 6 |
{
|
| 7 |
QMessageBox msgBox;
|
| 8 |
+#if defined(__i386__) || defined(__x86_64__)
|
| 9 |
msgBox.setText(tr("Do you want to download Poweriso?\nIf you click yes you accept PowerISO's Freeware(proprietary but gratis) License.\nRemember: if you are running a 64-bit OS, you need ia32-libs package installed and maybe others."));
|
| 10 |
msgBox.setStandardButtons(QMessageBox::Yes | QMessageBox::No);
|
| 11 |
switch (msgBox.exec()) {
|
| 12 |
@@ -145,6 +146,10 @@ msgBox.setText(tr("Do you want to downlo
|
| 13 |
// should never be reached
|
| 14 |
break;
|
| 15 |
}
|
| 16 |
+#else
|
| 17 |
+// Not a poweriso capable architecture
|
| 18 |
+QMessageBox::information(this, "AcetoneISO",tr("Poweriso is not available for this architecture."));
|
| 19 |
+#endif
|
| 20 |
}
|
| 21 |
|
| 22 |
|