summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'sci-visualization/labplot/files/getversion.patch')
-rw-r--r--sci-visualization/labplot/files/getversion.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/sci-visualization/labplot/files/getversion.patch b/sci-visualization/labplot/files/getversion.patch
deleted file mode 100644
index 5e96534ea373..000000000000
--- a/sci-visualization/labplot/files/getversion.patch
+++ /dev/null
@@ -1,41 +0,0 @@
---- src/LabPlotDialog.cc 2004-10-28 23:18:53.000000000 +0200
-+++ ../LabPlot-1.4.0-new/src/LabPlotDialog.cc 2005-01-05 14:04:35.017794811 +0100
-@@ -21,7 +21,7 @@
- #endif
-
- #ifdef HAVE_FFTW
--#include <fftw-config.h>
-+#include <fftw.h>
- #endif
-
- #ifdef HAVE_MAGICK
-@@ -33,10 +33,6 @@
- #include <qsaglobal.h>
- #endif
-
--#ifdef HAVE_CDF
--#include <cdfrev.h>
--#endif
--
- LabPlotDialog::LabPlotDialog(const char *name)
- : Dialog(0, name)
- {
-@@ -82,7 +78,7 @@
- #ifdef HAVE_FFTW3
- s="not used";
- #elif HAVE_FFTW
-- s=FFTW_VERSION;
-+ s=fftw_version;
- #endif
- tmp = new QLabel(s,hb);
- tmp->setAlignment(Qt::AlignRight);
-@@ -132,8 +128,7 @@
- new QLabel(i18n("Common Data Form library (CDF) : "),hb);
- s = "no";
- #ifdef HAVE_CDF
-- s = QString::number(CDF_LIBRARY_VERSION)+'.'+QString::number(CDF_LIBRARY_RELEASE)+'.'+
-- QString::number(CDF_LIBRARY_INCREMENT);
-+ s = CDF_VERSION;
- #endif
- tmp = new QLabel(s,hb);
- tmp->setAlignment(Qt::AlignRight);