freebsd-ports/editors/fxite/files/patch-jef_compat.h
Jason E. Hale 60f61d1988 Fix build with clang 6 (C++11 requires a space between literal and identifier)
Mark FOX17 option broken (Not related to clang 6 in particular, the FOX-1.7
API is ever changing due to being a development version. This project
appears to be dead, so I'm not sure it is worth fixing.)
recorder.cpp:104:9: error: no matching member function for call to 'prepend'
        NewMessage();
        ^~~~~~~~~~~~
recorder.cpp:51:6: note: expanded from macro 'NewMessage'
list.prepend((FXObject*)mm);
~~~~~^~~~~~~
/usr/local/include/fox-1.7/FXObjectList.h:256:10: note: candidate function not viable: no known conversion from 'FX::FXObject *' to 'MacroMessage *' for 1st argument
  FXbool prepend(TYPE* object){ return FXObjectList::prepend(object); }
         ^
/usr/local/include/fox-1.7/FXObjectList.h:265:10: note: candidate function not viable: no known conversion from 'FX::FXObject *' to 'const FXObjectListOf<MacroMessage>' for 1st argument
  FXbool prepend(const FXObjectListOf<TYPE>& objects){ return FXObjectList::prepend(objects); }
         ^
/usr/local/include/fox-1.7/FXObjectList.h:259:10: note: candidate function not viable: requires 2 arguments, but 1 was provided
  FXbool prepend(TYPE* object,FXival n){ return FXObjectList::prepend(object,n); }
         ^
/usr/local/include/fox-1.7/FXObjectList.h:262:10: note: candidate function not viable: requires 2 arguments, but 1 was provided
  FXbool prepend(TYPE** objects,FXival n){ return FXObjectList::prepend(objects,n); }
         ^

Rename/remake patches
2018-02-16 08:12:16 +00:00

89 lines
2.9 KiB
C

--- jef/compat.h.orig 2013-10-03 09:22:51 UTC
+++ jef/compat.h
@@ -1,3 +1,25 @@
+/*
+ FXiTe - The Free eXtensIble Text Editor
+ Copyright (c) 2009-2014 Jeffrey Pohlmeyer <yetanothergeek@gmail.com>
+
+ This program is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License version 3 as
+ published by the Free Software Foundation.
+
+ This software is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+*/
+
+#if (FOX_MAJOR==1) && (FOX_MINOR==6) && !defined(FOX_1_6)
+# define FOX_1_6
+#endif
+
#ifdef FOX_1_6
# define ONE_SECOND ((FXuint)1000)
# define PathMatch(pattern,file,flags) FXPath::match(pattern,file,flags)
@@ -20,8 +42,16 @@ FXbool LocaleIsUTF8();
# define FILEMATCH_NOESCAPE FXPath::NoEscape
# define FILEMATCH_FILE_NAME FXPath::PathName
# define FILEMATCH_CASEFOLD FXPath::CaseFold
-# define REX_FORWARD FXRex::Forward
-# define REX_BACKWARD FXRex::Backward
+# if (FOX_MAJOR>1) || (FOX_MINOR>7) || (FOX_LEVEL>49)
+# define FOX_1_7_50_OR_NEWER
+# endif
+# ifdef FOX_1_7_50_OR_NEWER
+# define REX_FORWARD 0
+# define REX_BACKWARD 0
+# else
+# define REX_FORWARD FXRex::Forward
+# define REX_BACKWARD FXRex::Backward
+# endif
# define REX_CAPTURE FXRex::Capture
# define REX_NEWLINE FXRex::Newline
# define REX_NORMAL FXRex::Normal
@@ -35,6 +65,9 @@ FXbool LocaleIsUTF8();
# if (FOX_MAJOR>1)||(FOX_MINOR>7)||(FOX_LEVEL>26)
# define fxgetpid() (FXProcess::current())
# endif
+# if (FOX_MAJOR>1) || (FOX_MINOR>7) || (FOX_LEVEL>44)
+# define FOX_1_7_45_OR_NEWER
+# endif
#endif
@@ -69,8 +102,31 @@ bool IsDesktopCurrent(FXMainWindow*tw);
# endif
#endif
+#ifdef FOX_1_7_45_OR_NEWER
+# define Dictionary FXDictionary
+# define DictKeyName(d,n) ((d).key(n).text())
+# define TotalSlotsInDict(d) ((d)->no())
+# define UsedSlotsInDict(d) ((d)->used())
+# define ReplaceInDict(d,k,v) ((d)->at(k)=(v))
+# define LookupInDict(d,k) ((d)->at(k))
+#else
+# define Dictionary FXDict
+# define DictKeyName(d,n) ((d).key(n))
+# define TotalSlotsInDict(d) ((d)->size())
+# define UsedSlotsInDict(d) ((d)->no())
+# define ReplaceInDict(d,k,v) ((d)->replace((k),(v)))
+# define LookupInDict(d,k) ((d)->find(k))
+#endif
FXID GetNetActiveWindow();
void WaitForWindowFocus(FXTopWindow*w, FXuint msecs=1000);
+
+// #define SetPadLRTB(o,l,r,t,b) \
+// (o)->setPadLeft(l); \
+// (o)->setPadRight(r); \
+// (o)->setPadTop(t); \
+// (o)->setPadBottom(b);
+//
+// #define SetPad(o,p) SetPadLRTB(o,p,p,p,p)