diff options
author | joerg <joerg@pkgsrc.org> | 2006-11-29 13:11:49 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2006-11-29 13:11:49 +0000 |
commit | fe49913a5538fca4547748834fe6a13019e0a416 (patch) | |
tree | cdf430c5ed8e9c410461d8e18f370657e45ff0af /editors/dasher | |
parent | 0bf2d49d6b29567ab90212f8abef1d618262ee6a (diff) | |
download | pkgsrc-fe49913a5538fca4547748834fe6a13019e0a416.tar.gz |
Fix some more missing includes of unistd.h. Fix a long standing
problem with the build on DragonFly:
/usr/libexec/binutils215/elf/ld: : No such file: No such file or directory
is not a very helpful message to trace down to a spurious comma.
I'm not sure how this built at all on other platforms.
Diffstat (limited to 'editors/dasher')
-rw-r--r-- | editors/dasher/distinfo | 5 | ||||
-rw-r--r-- | editors/dasher/patches/patch-aa | 12 | ||||
-rw-r--r-- | editors/dasher/patches/patch-ab | 12 | ||||
-rw-r--r-- | editors/dasher/patches/patch-ac | 13 |
4 files changed, 41 insertions, 1 deletions
diff --git a/editors/dasher/distinfo b/editors/dasher/distinfo index 94ef502179b..05c506995d0 100644 --- a/editors/dasher/distinfo +++ b/editors/dasher/distinfo @@ -1,5 +1,8 @@ -$NetBSD: distinfo,v 1.16 2006/09/15 15:20:56 jmmv Exp $ +$NetBSD: distinfo,v 1.17 2006/11/29 13:11:49 joerg Exp $ SHA1 (dasher-4.2.0.tar.bz2) = 29db12f0e34d200dbc76e11e3dffa8a187487be6 RMD160 (dasher-4.2.0.tar.bz2) = a557b1041ee3fa34627b916e62b4e705469769d2 Size (dasher-4.2.0.tar.bz2) = 5632602 bytes +SHA1 (patch-aa) = db0a200c22bd8ac44178e4b0f9c6e80ee9967a6e +SHA1 (patch-ab) = a5dac2d9f8a59ee4ea4370fa5b75e8e0f008fdbd +SHA1 (patch-ac) = 476ea57fab03159685f3597bc46fb8ee79879c99 diff --git a/editors/dasher/patches/patch-aa b/editors/dasher/patches/patch-aa new file mode 100644 index 00000000000..2e0fb8f6cc3 --- /dev/null +++ b/editors/dasher/patches/patch-aa @@ -0,0 +1,12 @@ +$NetBSD: patch-aa,v 1.5 2006/11/29 13:11:49 joerg Exp $ + +--- Src/DasherCore/SocketInputBase.cpp.orig 2006-11-29 09:23:07.000000000 +0000 ++++ Src/DasherCore/SocketInputBase.cpp +@@ -11,6 +11,7 @@ + #include <string.h> + #include <errno.h> + #include <stdarg.h> ++#include <unistd.h> + #ifdef WIN32 + #include <winsock2.h> + #define DASHER_SOCKET_CLOSE_FUNCTION closesocket diff --git a/editors/dasher/patches/patch-ab b/editors/dasher/patches/patch-ab new file mode 100644 index 00000000000..a7c6a79fa20 --- /dev/null +++ b/editors/dasher/patches/patch-ab @@ -0,0 +1,12 @@ +$NetBSD: patch-ab,v 1.3 2006/11/29 13:11:49 joerg Exp $ + +--- Src/Gtk2/DasherControl.cpp.orig 2006-11-29 09:27:05.000000000 +0000 ++++ Src/Gtk2/DasherControl.cpp +@@ -8,6 +8,7 @@ + #include "../DasherCore/WrapperFactory.h" + + #include <fcntl.h> ++#include <unistd.h> + + #include <gtk/gtk.h> + #include <gdk/gdk.h> diff --git a/editors/dasher/patches/patch-ac b/editors/dasher/patches/patch-ac new file mode 100644 index 00000000000..3da5cdc76b8 --- /dev/null +++ b/editors/dasher/patches/patch-ac @@ -0,0 +1,13 @@ +$NetBSD: patch-ac,v 1.1 2006/11/29 13:11:49 joerg Exp $ + +--- configure.orig 2006-11-29 12:49:02.000000000 +0000 ++++ configure +@@ -23758,7 +23758,7 @@ GTK2BUILD_CFLAGS="$GTK2_CFLAGS $SETTINGS + if [ x"$WITHDARWIN" = xtrue ]; then + GTK2BUILD_LIBS="$X_LIBS $GTK2_LIBS $SETTINGS_LIBS $gthread_LIBS $gnome_speech_LIBS $gnome_a11y_LIBS $glade_LIBS $gnome_LIBS $wnck_LIBS $hildon_LIBS" + else +- GTK2BUILD_LIBS="$X_LIBS $GTK2_LIBS $SETTINGS_LIBS $gthread_LIBS $gnome_speech_LIBS $gnome_a11y_LIBS $glade_LIBS $gnome_LIBS $wnck_LIBS $hildon_LIBS -Wl,--export-dynamic," ++ GTK2BUILD_LIBS="$X_LIBS $GTK2_LIBS $SETTINGS_LIBS $gthread_LIBS $gnome_speech_LIBS $gnome_a11y_LIBS $glade_LIBS $gnome_LIBS $wnck_LIBS $hildon_LIBS -Wl,--export-dynamic" + fi + + |