Committing in .
Modified Files: wxWindows/descrip.mms wxWindows/setup.h_vms wxWindows/distrib/msw/makefile.rsp wxWindows/src/common/descrip.mms Added Files: wxWindows/samples/richedit/descrip.mms Updated OpenVMS compile support ---------------------------------------------------------------------- git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12025 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -60,6 +60,8 @@ gtk : [.include.wx]setup.h
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.resource]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [-.richedit]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [--.utils.dialoged.src]
|
||||
$(MMS)$(MMSQUALIFIERS)/macro=(__WXGTK__=1)
|
||||
set default [--]
|
||||
|
@@ -131,17 +131,24 @@ lib/vms.opt
|
||||
lib/vms_gtk.opt
|
||||
contrib/samples/mmedia/descrip.mms
|
||||
demos/bombs/descrip.mms
|
||||
samples/calendar/descrip.mms
|
||||
samples/caret/descrip.mms
|
||||
samples/checklst/descrip.mms
|
||||
samples/config/descrip.mms
|
||||
samples/controls/descrip.mms
|
||||
samples/dialogs/descrip.mms
|
||||
samples/dnd/descrip.mms
|
||||
samples/drawing/descrip.mms
|
||||
samples/image/descrip.mms
|
||||
samples/mdi/descrip.mms
|
||||
samples/menu/descrip.mms
|
||||
samples/minimal/descrip.mms
|
||||
samples/resource/descrip.mms
|
||||
samples/richedit/descrip.mms
|
||||
src/common/descrip.mms
|
||||
src/generic/descrip.mms
|
||||
src/gtk/descrip.mms
|
||||
src/html/descrip.mms
|
||||
src/motif/descrip.mms
|
||||
src/png/scripts/descrip.mms
|
||||
src/unix/descrip.mms
|
||||
|
55
samples/richedit/descrip.mms
Normal file
55
samples/richedit/descrip.mms
Normal file
@@ -0,0 +1,55 @@
|
||||
#*****************************************************************************
|
||||
# *
|
||||
# Make file for VMS *
|
||||
# Author : J.Jansen (joukj@hrem.stm.tudelft.nl) *
|
||||
# Date : 15 October 2001 *
|
||||
# *
|
||||
#*****************************************************************************
|
||||
.first
|
||||
define wx [--.include.wx]
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
CXX_DEFINE = /define=(__WXMOTIF__=1)/name=(as_is,short)\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
CXX_DEFINE = /define=(__WXGTK__=1)/float=ieee/name=(as_is,short)/ieee=denorm\
|
||||
/assume=(nostdnew,noglobal_array_new)
|
||||
.else
|
||||
CXX_DEFINE =
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.suffixes : .cpp
|
||||
|
||||
.cpp.obj :
|
||||
cxx $(CXXFLAGS)$(CXX_DEFINE) $(MMS$TARGET_NAME).cpp
|
||||
|
||||
all :
|
||||
.ifdef __WXMOTIF__
|
||||
$(MMS)$(MMSQUALIFIERS) wxlayout.exe
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
$(MMS)$(MMSQUALIFIERS) wxlayout_gtk.exe
|
||||
.endif
|
||||
.endif
|
||||
|
||||
.ifdef __WXMOTIF__
|
||||
wxlayout.exe : wxlayout.obj,kbList.obj,wxllist.obj,wxlparser.obj,wxlwindow.obj
|
||||
|
||||
cxxlink wxlayout,kbList.obj,wxllist.obj,wxlparser.obj,wxlwindow.obj,\
|
||||
[--.lib]vms/opt
|
||||
.else
|
||||
.ifdef __WXGTK__
|
||||
wxlayout_gtk.exe : wxlayout.obj,kbList.obj,wxllist.obj,wxlparser.obj,\
|
||||
wxlwindow.obj
|
||||
cxxlink/exec=wxlayout_gtk.exe wxlayout,kbList.obj,wxllist.obj,\
|
||||
wxlparser.obj,wxlwindow.obj,[--.lib]vms_gtk/opt
|
||||
.endif
|
||||
.endif
|
||||
|
||||
wxlayout.obj : wxlayout.cpp
|
||||
kbList.obj : kblist.cpp
|
||||
wxllist.obj : wxllist.cpp
|
||||
wxlparser.obj : wxlparser.cpp
|
||||
wxlwindow.obj : wxlwindow.cpp
|
@@ -85,6 +85,7 @@
|
||||
#undef __SOLARIS__
|
||||
#undef __SUNOS__
|
||||
#define __ALPHA__
|
||||
#undef __IA64__
|
||||
#undef __OSF__
|
||||
#undef __DARWIN__
|
||||
#undef __NETBSD__
|
||||
@@ -111,8 +112,9 @@
|
||||
#undef WINVER
|
||||
|
||||
/* enable native status bar under Win32 */
|
||||
#ifdef __WIN95__
|
||||
#if defined(__WIN95__) && !defined(__WXUNIVERSAL__)
|
||||
#define wxUSE_NATIVE_STATUSBAR 1
|
||||
#define wxUSE_OWNER_DRAWN 1
|
||||
#endif
|
||||
|
||||
/* enable rich edit under Win32 */
|
||||
@@ -451,7 +453,6 @@
|
||||
#define wxUSE_TOOLBAR_SIMPLE 1
|
||||
|
||||
#if defined(__WXWINE__) || defined(__GNUWIN32__) || defined(__WXPM__)
|
||||
#define wxUSE_OWNER_DRAWN 1
|
||||
#if wxUSE_TOOLBAR
|
||||
#define wxUSE_BUTTONBAR 1
|
||||
#endif
|
||||
|
@@ -120,6 +120,7 @@ OBJECTS1=framecmn.obj,\
|
||||
serbase.obj,\
|
||||
sizer.obj,\
|
||||
socket.obj,\
|
||||
statbar.obj,\
|
||||
strconv.obj,\
|
||||
stream.obj,\
|
||||
string.obj,\
|
||||
@@ -230,6 +231,7 @@ SOURCES = \
|
||||
serbase.cpp,\
|
||||
sizer.cpp,\
|
||||
socket.cpp,\
|
||||
statbar.cpp,\
|
||||
strconv.cpp,\
|
||||
stream.cpp,\
|
||||
sysopt.cpp,\
|
||||
@@ -372,6 +374,7 @@ sckstrm.obj : sckstrm.cpp
|
||||
serbase.obj : serbase.cpp
|
||||
sizer.obj : sizer.cpp
|
||||
socket.obj : socket.cpp
|
||||
statbar.obj : statbar.cpp
|
||||
strconv.obj : strconv.cpp
|
||||
stream.obj : stream.cpp
|
||||
sysopt.obj : sysopt.cpp
|
||||
|
Reference in New Issue
Block a user