diff options
author | dinoex <dinoex@FreeBSD.org> | 2002-12-25 11:37:37 +0000 |
---|---|---|
committer | dinoex <dinoex@FreeBSD.org> | 2002-12-25 11:37:37 +0000 |
commit | 6b52af5c34691cbb979890da5121f2d596407d57 (patch) | |
tree | a29a0fec46c13f9c1516891c12ddb9e6a437dc9c /mail/kiltdown/files | |
parent | f55f92475ddde9c9f1148baf907442c78536baf1 (diff) | |
download | FreeBSD-ports-6b52af5c34691cbb979890da5121f2d596407d57.zip FreeBSD-ports-6b52af5c34691cbb979890da5121f2d596407d57.tar.gz |
- Fix build under CURRENT
Diffstat (limited to 'mail/kiltdown/files')
-rw-r--r-- | mail/kiltdown/files/patch-folderview.h | 11 | ||||
-rw-r--r-- | mail/kiltdown/files/patch-hoverbutton.cc | 20 | ||||
-rw-r--r-- | mail/kiltdown/files/patch-tools-Makefile.in | 11 | ||||
-rw-r--r-- | mail/kiltdown/files/patch-tools-dlgstrip.cc | 10 |
4 files changed, 52 insertions, 0 deletions
diff --git a/mail/kiltdown/files/patch-folderview.h b/mail/kiltdown/files/patch-folderview.h new file mode 100644 index 0000000..d953235 --- /dev/null +++ b/mail/kiltdown/files/patch-folderview.h @@ -0,0 +1,11 @@ +--- kiltdown/folderview.h.orig Mon May 14 05:25:23 2001 ++++ kiltdown/folderview.h Wed Dec 25 11:40:29 2002 +@@ -118,7 +118,7 @@ + * All objects using Qt extensions such as slots and signals need this. + */ + Q_OBJECT +- friend AccountManager; ++ friend class AccountManager; + + public: + FolderView(QWidget *); diff --git a/mail/kiltdown/files/patch-hoverbutton.cc b/mail/kiltdown/files/patch-hoverbutton.cc new file mode 100644 index 0000000..90c0495 --- /dev/null +++ b/mail/kiltdown/files/patch-hoverbutton.cc @@ -0,0 +1,20 @@ +--- kiltdown/hoverbutton.cc.orig Mon May 14 05:25:23 2001 ++++ kiltdown/hoverbutton.cc Wed Dec 25 12:29:01 2002 +@@ -28,7 +28,7 @@ + ( + const QString & text, + QWidget * parent, +- const char * name=0 ++ const char * name + ) : QPushButton(text, parent, name) + { + this->setFlat(true); +@@ -47,7 +47,7 @@ + const QIconSet & icon, + const QString & text, + QWidget * parent, +- const char * name=0 ++ const char * name + ) : QPushButton(icon, text, parent, name) + { + this->setFlat(true); diff --git a/mail/kiltdown/files/patch-tools-Makefile.in b/mail/kiltdown/files/patch-tools-Makefile.in new file mode 100644 index 0000000..d2fb6496 --- /dev/null +++ b/mail/kiltdown/files/patch-tools-Makefile.in @@ -0,0 +1,11 @@ +--- tools/Makefile.in.orig Mon May 14 05:25:23 2001 ++++ tools/Makefile.in Wed Dec 25 11:31:57 2002 +@@ -10,7 +10,7 @@ + $(CC) -o rescomp rescomp.c + + dlgstrip: dlgstrip.cc +- $(CC) -o dlgstrip dlgstrip.cc ++ $(CXX) -o dlgstrip dlgstrip.cc + + clean: + $(RM) -f rescomp core dlgstrip diff --git a/mail/kiltdown/files/patch-tools-dlgstrip.cc b/mail/kiltdown/files/patch-tools-dlgstrip.cc new file mode 100644 index 0000000..11444a4 --- /dev/null +++ b/mail/kiltdown/files/patch-tools-dlgstrip.cc @@ -0,0 +1,10 @@ +--- tools/dlgstrip.cc.orig Mon May 14 05:25:23 2001 ++++ tools/dlgstrip.cc Wed Dec 25 11:21:16 2002 +@@ -13,6 +13,7 @@ + #include <stdio.h> + #include <string.h> + #include <unistd.h> ++#include <stdlib.h> + + /** + * DANGER!!! DANGER!!! DANGER!!! DANGER!!! DANGER!!! DANGER!!! DANGER!!! |