forked from SoftFever/Orca-deps-wxWidgets
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
workaround for which is probably a compiler-bug on OpenVMS-AXP
- Loading branch information
Showing
2 changed files
with
15 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# * | ||
# Make file for VMS * | ||
# Author : J.Jansen ([email protected]) * | ||
# Date : 3 February 2016 * | ||
# Date : 6 January 2021 * | ||
# * | ||
#***************************************************************************** | ||
.first | ||
|
@@ -157,7 +157,10 @@ gtk : [.include.wx]setup.h | |
set default [-.widgets] | ||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1) | ||
set default [--.tests] | ||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)/ignore=warning | ||
if (f$getsyi("ARCH_NAME") .eqs. "IA64" ) then\ | ||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1,ITANIUM=1)/ignore=warning | ||
if (f$getsyi("ARCH_NAME") .eqs. "Alpha" ) then\ | ||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1,ALPHA=1)/ignore=warning | ||
set default [-] | ||
|
||
gtk2 : [.include.wx]setup.h | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
# * | ||
# Make file for VMS * | ||
# Author : J.Jansen ([email protected]) * | ||
# Date : 30 November 2017 * | ||
# Date : 6 January 2021 * | ||
# * | ||
#***************************************************************************** | ||
.first | ||
|
@@ -280,7 +280,16 @@ test_datetimetest.obj : [.datetime]datetimetest.cpp | |
[.datetime]datetimetest.cpp | ||
|
||
test_evthandler.obj : [.events]evthandler.cpp | ||
.ifdef ALPHA | ||
pipe gsed\ | ||
-e "s/handler.Connect(wxEVT_THREAD, wxThreadEventHandler(MyHandler::OnOverloadedHandler));//"\ | ||
-e "s/handler.Connect(wxEVT_IDLE, wxIdleEventHandler(MyHandler::OnOverloadedHandler));//" \ | ||
< [.events]evthandler.cpp > [.events]evthandler.cpp_ | ||
$(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]evthandler.cpp_ | ||
delete [.events]evthandler.cpp_;* | ||
.else | ||
$(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]evthandler.cpp | ||
.endif | ||
|
||
test_evtsource.obj : [.events]evtsource.cpp | ||
$(CXXC) /object=[]$@ $(TEST_CXXFLAGS) [.events]evtsource.cpp | ||
|