diff options
author | xtraeme <xtraeme> | 2005-09-02 14:41:37 +0000 |
---|---|---|
committer | xtraeme <xtraeme> | 2005-09-02 14:41:37 +0000 |
commit | 984ca58bd4b2740d59c53286ce6c0d6dd3595a90 (patch) | |
tree | c77569482e7ea4528857cb4dee254baf058d8eda /x11/efltk/patches | |
parent | 90127a891e323520d4260670a80577a5baac8257 (diff) | |
download | pkgsrc-984ca58bd4b2740d59c53286ce6c0d6dd3595a90.tar.gz |
Initial import of efltk-2.0.5.
EFltk is a LGPL'd C++ graphical user interface toolkit for X, OpenGL
and Microsoft Windows. It is based on FLTK2 and is currently developed
by the Equinox Desktop Environment Team.
Diffstat (limited to 'x11/efltk/patches')
-rw-r--r-- | x11/efltk/patches/patch-aa | 14 | ||||
-rw-r--r-- | x11/efltk/patches/patch-ab | 13 |
2 files changed, 27 insertions, 0 deletions
diff --git a/x11/efltk/patches/patch-aa b/x11/efltk/patches/patch-aa new file mode 100644 index 00000000000..54762e3cb9d --- /dev/null +++ b/x11/efltk/patches/patch-aa @@ -0,0 +1,14 @@ +$NetBSD: patch-aa,v 1.1.1.1 2005/09/02 14:41:37 xtraeme Exp $ + +--- src/net/Fl_FTP_Connect.cpp.orig 2005-09-02 01:42:56.000000000 +0200 ++++ src/net/Fl_FTP_Connect.cpp 2005-09-02 01:43:22.000000000 +0200 +@@ -1,6 +1,8 @@ + #include <efltk/net/Fl_FTP_Connect.h> + #include <stdio.h> +-#ifdef __linux__ ++#include <sys/param.h> ++ ++#if defined(__linux__) || defined(BSD) + # include <netinet/in.h> + #endif + diff --git a/x11/efltk/patches/patch-ab b/x11/efltk/patches/patch-ab new file mode 100644 index 00000000000..3ce8c934187 --- /dev/null +++ b/x11/efltk/patches/patch-ab @@ -0,0 +1,13 @@ +$NetBSD: patch-ab,v 1.1.1.1 2005/09/02 14:41:37 xtraeme Exp $ + +--- Makefile.orig 2005-09-02 02:05:03.000000000 +0200 ++++ Makefile 2005-09-02 02:05:13.000000000 +0200 +@@ -25,7 +25,7 @@ + SHELL=/bin/sh + OS_NAME := $(shell uname -s | sed "s/\//-/" | sed "s/_/-/" | sed "s/-.*//g") + +-DIRS = src tools themes efltk locale test ++DIRS = src themes efltk locale + + GENERATED = makeinclude efltk-config + |