diff options
author | Steve Price <steve@FreeBSD.org> | 1999-01-26 02:40:32 +0000 |
---|---|---|
committer | Steve Price <steve@FreeBSD.org> | 1999-01-26 02:40:32 +0000 |
commit | 854635b423730d52b01a4a024a7a9f0f9d3454d0 (patch) | |
tree | 6c5942f11906e2bd3b2c9437dcbe764ce553d858 /x11-toolkits/iv/files/patch-ac | |
parent | f8883ea52b3a5126fdd7332474a5206f484b9543 (diff) |
Notes
Diffstat (limited to 'x11-toolkits/iv/files/patch-ac')
-rw-r--r-- | x11-toolkits/iv/files/patch-ac | 49 |
1 files changed, 34 insertions, 15 deletions
diff --git a/x11-toolkits/iv/files/patch-ac b/x11-toolkits/iv/files/patch-ac index e3e6ef75aca2..6a663f5977f4 100644 --- a/x11-toolkits/iv/files/patch-ac +++ b/x11-toolkits/iv/files/patch-ac @@ -1,15 +1,34 @@ -*** src/config/InterViews/iv-freebsd.cf Mon Oct 31 17:31:42 1994 ---- src/config/InterViews/iv-freebsd.cf Mon Oct 31 17:36:04 1994 -*************** -*** 0 **** ---- 1,10 ---- -+ #include <InterViews/xparams.cf> -+ #undef CppCmd -+ #define CppCmd cpp -+ #undef CCDriver -+ #define CCDriver c++ -+ #undef DependCCFlags -+ #define DependCCFlags $(CCDEFINES) $(CCINCLUDES) -I/usr/include/g++ -+ #undef ExtraCCLdLibs -+ #define ExtraCCLdLibs -lg++ -+ #define SharedCCFlags -fpic +--- src/bin/idraw/idcmds.c.orig Sat May 23 03:07:32 1992 ++++ src/bin/idraw/idcmds.c Sun Jan 17 17:48:19 1999 +@@ -26,7 +26,6 @@ + + #include "ided.h" + #include "idclasses.h" +-#include "idcmds.h" + #include "idcomp.h" + #include "iddialogs.h" + #include "idvars.h" +@@ -46,11 +45,9 @@ + #include <Unidraw/Commands/edit.h> + #include <Unidraw/Commands/transforms.h> + +-#undef FileChooser +-#define FileChooser _lib_iv(FileChooser) +- + #include <stream.h> + ++#include "idcmds.h" + /*****************************************************************************/ + + ClassId OpenCmd::GetClassId () { return OPEN_CMD; } +@@ -59,8 +56,8 @@ + return OPEN_CMD == id || ViewCompCmd::IsA(id); + } + +-OpenCmd::OpenCmd (ControlInfo* c, FileChooser* fc) : ViewCompCmd(c, fc) { } +-OpenCmd::OpenCmd (Editor* ed, FileChooser* fc) : ViewCompCmd(ed, fc) { } ++OpenCmd::OpenCmd (ControlInfo* c, FileChooser* fc) : ViewCompCmd(c, fc) { }; ++OpenCmd::OpenCmd (Editor* ed, FileChooser* fc) : ViewCompCmd(ed, fc) { }; + + Command* OpenCmd::Copy () { + Command* copy = new OpenCmd(CopyControlInfo()); |