From 130d96dcf64bcade6fb6b9da49ee9983ed9872ef Mon Sep 17 00:00:00 2001 From: Jouk Jansen Date: Wed, 27 Mar 2002 14:46:33 +0000 Subject: [PATCH] Committing in . OpenVMS complie support Modified Files: wxWindows/src/common/descrip.mms wxWindows/src/unix/descrip.mms wxWindows/src/unix/utilsx11.cpp ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14814 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/common/descrip.mms | 3 +++ src/unix/descrip.mms | 7 +++++-- src/unix/utilsx11.cpp | 6 ++++++ 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/src/common/descrip.mms b/src/common/descrip.mms index f462285d37..6e017756ee 100644 --- a/src/common/descrip.mms +++ b/src/common/descrip.mms @@ -95,6 +95,7 @@ OBJECTS1=fs_inet.obj,\ hashmap.obj,\ helpbase.obj,\ http.obj,\ + iconbndl.obj,\ imagall.obj,\ imagbmp.obj,\ image.obj,\ @@ -213,6 +214,7 @@ SOURCES = \ hashmap.cpp,\ helpbase.cpp,\ http.cpp,\ + iconbndl.cpp,\ imagall.cpp,\ imagbmp.cpp,\ image.cpp,\ @@ -369,6 +371,7 @@ hash.obj : hash.cpp hashmap.obj : hashmap.cpp helpbase.obj : helpbase.cpp http.obj : http.cpp +iconbndl.obj : iconbndl.cpp imagall.obj : imagall.cpp imagbmp.obj : imagbmp.cpp image.obj : image.cpp diff --git a/src/unix/descrip.mms b/src/unix/descrip.mms index ffc126bfe1..2b3d08c452 100644 --- a/src/unix/descrip.mms +++ b/src/unix/descrip.mms @@ -45,7 +45,8 @@ OBJECTS = \ gsocket.obj,\ mimetype.obj,\ threadpsx.obj,\ - utilsunx.obj + utilsunx.obj,\ + utilsx11.obj SOURCES = \ dialup.cpp,\ @@ -55,7 +56,8 @@ SOURCES = \ gsocket.c,\ mimetype.cpp,\ threadpsx.cpp,\ - utilsunx.cpp + utilsunx.cpp,\ + utilsx11.cpp all : $(SOURCES) $(MMS)$(MMSQUALIFIERS) $(OBJECTS) @@ -79,3 +81,4 @@ gsocket.obj : gsocket.c mimetype.obj : mimetype.cpp threadpsx.obj : threadpsx.cpp utilsunx.obj : utilsunx.cpp +utilsx11.obj : utilsx11.cpp diff --git a/src/unix/utilsx11.cpp b/src/unix/utilsx11.cpp index 44dcaeebe7..778447cea1 100644 --- a/src/unix/utilsx11.cpp +++ b/src/unix/utilsx11.cpp @@ -16,8 +16,14 @@ #include "wx/image.h" #include "wx/icon.h" +#ifdef __VMS +#pragma message disable nosimpint +#endif #include #include +#ifdef __VMS +#pragma message enable nosimpint +#endif void wxSetIconsX11( WXDisplay* display, WXWindow window, const wxIconBundle& ib ) -- 2.45.2