diff options
author | pav <pav@FreeBSD.org> | 2006-05-27 01:38:15 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-05-27 01:38:15 +0800 |
commit | 28d552a4f55d6c75ceb48e76aaa627fe061acdb9 (patch) | |
tree | 6eb17ebb90f7809007869c20adedc919adaa3725 /www/quickie/files | |
parent | 41755bc0d59bef48854abd741228a1f3c364f524 (diff) | |
download | freebsd-ports-gnome-28d552a4f55d6c75ceb48e76aaa627fe061acdb9.tar.gz freebsd-ports-gnome-28d552a4f55d6c75ceb48e76aaa627fe061acdb9.tar.zst freebsd-ports-gnome-28d552a4f55d6c75ceb48e76aaa627fe061acdb9.zip |
- Update to 1.1
- Fix build on FreeBSD 4.X
PR: ports/97935
Submitted by: Shaun Amott <shaun@inerd.com> (maintainer)
Diffstat (limited to 'www/quickie/files')
-rw-r--r-- | www/quickie/files/patch-lib_arglex.cc | 14 | ||||
-rw-r--r-- | www/quickie/files/patch-lib_quit.cc | 14 | ||||
-rw-r--r-- | www/quickie/files/patch-quickie-config_main.cc | 17 |
3 files changed, 45 insertions, 0 deletions
diff --git a/www/quickie/files/patch-lib_arglex.cc b/www/quickie/files/patch-lib_arglex.cc new file mode 100644 index 000000000000..5f7e54bf8798 --- /dev/null +++ b/www/quickie/files/patch-lib_arglex.cc @@ -0,0 +1,14 @@ +--- lib/arglex.cc.orig Sat May 20 23:56:52 2006 ++++ lib/arglex.cc Thu May 25 12:36:38 2006 +@@ -21,6 +21,11 @@ + + #include <cctype> + ++#ifdef __FreeBSD__ ++#include <unistd.h> ++#include <stdio.h> ++#endif ++ + #include <arglex.h> + #include <progname.h> + #include <quit.h> diff --git a/www/quickie/files/patch-lib_quit.cc b/www/quickie/files/patch-lib_quit.cc new file mode 100644 index 000000000000..4d7b30e3a3fa --- /dev/null +++ b/www/quickie/files/patch-lib_quit.cc @@ -0,0 +1,14 @@ +--- lib/quit.cc.orig Sat May 20 23:56:52 2006 ++++ lib/quit.cc Thu May 25 12:40:10 2006 +@@ -21,6 +21,11 @@ + + #pragma implementation "quit" + ++#ifdef __FreeBSD__ ++#include <sys/types.h> ++#include <sys/stat.h> ++#endif ++ + #include <cerrno> + #include <cstdarg> + #include <cstdio> diff --git a/www/quickie/files/patch-quickie-config_main.cc b/www/quickie/files/patch-quickie-config_main.cc new file mode 100644 index 000000000000..f836c01ba79d --- /dev/null +++ b/www/quickie/files/patch-quickie-config_main.cc @@ -0,0 +1,17 @@ +--- quickie-config/main.cc.orig Sat May 20 23:56:52 2006 ++++ quickie-config/main.cc Thu May 25 12:57:25 2006 +@@ -24,7 +24,13 @@ + #include <cstdio> + #include <cstdlib> + #include <unistd.h> +-#include <getopt.h> ++ ++#ifdef __FreeBSD__ ++//# include <osreldate.h> ++//# if __FreeBSD_version < 500041 ++# include <getopt.h> ++//# endif ++#endif + + #include <configuration.h> + #include <progname.h> |