diff options
author | krion <krion@FreeBSD.org> | 2004-08-22 08:51:49 +0800 |
---|---|---|
committer | krion <krion@FreeBSD.org> | 2004-08-22 08:51:49 +0800 |
commit | 09783f363131524408e459330a1bc385504c33fe (patch) | |
tree | ef8f9b77866854e1a13e9f647e6ec665b8ab988e | |
parent | 481d242d52d1a7131521d78c4e2ecc03e16e839a (diff) | |
download | freebsd-ports-gnome-09783f363131524408e459330a1bc385504c33fe.tar.gz freebsd-ports-gnome-09783f363131524408e459330a1bc385504c33fe.tar.zst freebsd-ports-gnome-09783f363131524408e459330a1bc385504c33fe.zip |
Fix build with gcc-3.4
PR: ports/70780
Submitted by: Ports Fury
-rw-r--r-- | archivers/rvm/Makefile | 8 | ||||
-rw-r--r-- | archivers/rvm/files/patch-rconfig.h | 11 |
2 files changed, 12 insertions, 7 deletions
diff --git a/archivers/rvm/Makefile b/archivers/rvm/Makefile index d09b2a0b2484..a2fbf91b715b 100644 --- a/archivers/rvm/Makefile +++ b/archivers/rvm/Makefile @@ -28,10 +28,4 @@ CONFIGURE_ARGS= --with-default-config-file=${PREFIX}/etc/rvm.conf MAN1= rvm.1 PLIST_FILES= bin/rvm -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 502126 -BROKEN= "Does not compile with gcc 3.4.2" -.endif - -.include <bsd.port.post.mk> +.include <bsd.port.mk> diff --git a/archivers/rvm/files/patch-rconfig.h b/archivers/rvm/files/patch-rconfig.h new file mode 100644 index 000000000000..9a8070dbd1e6 --- /dev/null +++ b/archivers/rvm/files/patch-rconfig.h @@ -0,0 +1,11 @@ +--- rconfig.h.orig Sun May 9 07:57:35 2004 ++++ rconfig.h Sat Aug 21 01:55:46 2004 +@@ -259,7 +259,7 @@ + action_type m_action; + bool m_default; + class timestamp m_timestamp; +- class cfgfiles_type m_cfgfiles; ++ cfgfiles_type m_cfgfiles; + std::string m_link_catalog_dir; + std::string m_log_dir; + std::string m_rsync_local_path; |