]> git.saurik.com Git - wxWidgets.git/commitdiff
wxOS2 with Open Watcom: correct PCH usage, missing headers, warning fixes, source...
authorWłodzimierz Skiba <abx@abx.art.pl>
Thu, 21 Jul 2005 17:30:41 +0000 (17:30 +0000)
committerWłodzimierz Skiba <abx@abx.art.pl>
Thu, 21 Jul 2005 17:30:41 +0000 (17:30 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@34904 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

build/bakefiles/config.bkl
build/bakefiles/expat.bkl
build/bakefiles/files.bkl
build/bakefiles/tiff.bkl
build/bakefiles/wx.bkl
src/tiff/tiffcomp.h

index c5ef4cd8e9e8c8b9cdddd6bf5d90ad02f0272545..1c2cbfad9ac7bde2a70464ffb0b6b7e2d256e761 100644 (file)
@@ -53,7 +53,7 @@
             Type of compiled binaries
         </description>
     </option>
-   
+
     <!-- FIXME: restore this once bakefile is fixed to not use
                 /Gm /GZ (incompatible with /O2) w/ debug-info -->
     <set var="DEBUG_INFO_DEFAULT">
@@ -279,7 +279,7 @@ to run the tests, include CppUnit library here.
 
 
     <!-- ================================================================== -->
-    <!--                         windows compilers                          -->
+    <!--                     windows/dos/os2 compilers                      -->
     <!-- ================================================================== -->
 
     <if cond="FORMAT!='autoconf'">
@@ -296,8 +296,10 @@ it if SHARED=1 unless you know what you are doing.
         <set var="WXTOPDIR"/> <!-- to be overriden on bakefile cmd line -->
 
         <set var="TOOLKIT" overwrite="0">
-            <if cond="FORMAT!='msevc4prj'">MSW</if>
             <if cond="FORMAT=='msevc4prj'">WINCE</if>
+            <if cond="FORMAT!='msevc4prj' and PLATFORM_WIN32=='1'">MSW</if>
+            <if cond="PLATFORM_MSDOS=='1'">DOS</if>
+            <if cond="PLATFORM_OS2=='1'">PM</if>
         </set>
         <set var="TOOLKIT_LOWERCASE">$(TOOLKIT.lower())</set>
         <set var="TOOLKIT_VERSION"/>
@@ -401,7 +403,7 @@ Set the version of your Mingw installation here.
     <if cond="FORMAT=='msevc4prj'">
         <set var="WXUNIV">0</set>
         <set var="UNICODE">1</set>
-       <!-- Uploading debug reports from PDAs seems impractical -->
+        <!-- Uploading debug reports from PDAs seems impractical -->
         <set var="USE_QA">0</set>
         <set var="MONOLITHIC">1</set> <!-- sic! -->
     </if>
index 93af60d9107148891e295073c5d0dc0298d751c6..cd783e312edc2ba09b284937eab8669ecb46ee88 100644 (file)
@@ -29,6 +29,9 @@
         <define cond="FORMAT!='autoconf' and PLATFORM_WIN32=='1'">
             COMPILED_FROM_DSP
         </define>
+        <define cond="FORMAT=='watcom' and PLATFORM_OS2=='1'">
+            OS2_32
+        </define>
         <cflags-borland>-w-8004 -w-8008 -w-8012 -w-8057 -w-8066</cflags-borland>
         <sources>
             src/expat/lib/xmlparse.c
index 719b89fc4597dd800bfe5c8a2a140deb70d6ca93..0a935ca153dd2dadcc520d08c9cb0d351ca5dee0 100644 (file)
@@ -1626,6 +1626,7 @@ IMPORTANT: please read docs/tech/tn0016.txt before modifying this file!
     src/os2/ownerdrw.cpp
     src/os2/palette.cpp
     src/os2/pen.cpp
+    src/os2/popupwin.cpp
     src/os2/print.cpp
     src/os2/radiobox.cpp
     src/os2/radiobut.cpp
index b24ea90a7da0adad4d72646154c208a9c2f07996..bf322798cd9d6e2c6ee2719edc5cedec3a87d44c 100644 (file)
@@ -28,7 +28,8 @@
     <set var="TIFF_PLATFORM_SRC">
         <if cond="PLATFORM_UNIX=='1'">src/tiff/tif_unix.c</if>
         <if cond="PLATFORM_MACOSX=='1'">src/tiff/tif_unix.c</if>
-        <if cond="PLATFORM_OS2=='1'">src/tiff/tif_unix.c</if>
+        <if cond="PLATFORM_OS2=='1' and FORMAT!='watcom'">src/tiff/tif_unix.c</if>
+        <if cond="PLATFORM_OS2=='1' and FORMAT=='watcom'">src/tiff/tif_os2.c</if>
         <if cond="PLATFORM_WIN32=='1'">src/tiff/tif_win32.c</if>
         <if cond="PLATFORM_MACOS=='1'">src/tiff/tif_apple.c</if>
         <if cond="PLATFORM_MSDOS=='1'">src/tiff/tif_msdos.c</if>
         <include>$(INC_JPEG)</include>
         <cflags-borland>-w-8004 -w-8012 -w-8057 -w-8060 -w-8066</cflags-borland>
         <cflags-dmars>-w2</cflags-dmars>
+        <define cond="PLATFORM_OS2=='1' and FORMAT=='watcom'">OS2_32</define>
         <sources>
             $(TIFF_PLATFORM_SRC)
-                   src/tiff/tif_aux.c
-                   src/tiff/tif_close.c
-                   src/tiff/tif_codec.c
-                   src/tiff/tif_color.c
-                   src/tiff/tif_compress.c
-                   src/tiff/tif_dir.c
-                   src/tiff/tif_dirinfo.c
-                   src/tiff/tif_dirread.c
-                   src/tiff/tif_dirwrite.c
-                   src/tiff/tif_dumpmode.c
-                   src/tiff/tif_error.c
-                   src/tiff/tif_extension.c
-                   src/tiff/tif_fax3.c
-                   src/tiff/tif_fax3sm.c
-                   src/tiff/tif_getimage.c
-                   src/tiff/tif_jpeg.c
-                   src/tiff/tif_flush.c
-                   src/tiff/tif_lzw.c
-                   src/tiff/tif_luv.c
-                   src/tiff/tif_next.c
-                   src/tiff/tif_open.c
-                   src/tiff/tif_packbits.c
-                   src/tiff/tif_pixarlog.c
-                   src/tiff/tif_predict.c
-                   src/tiff/tif_print.c
-                   src/tiff/tif_read.c
-                   src/tiff/tif_swab.c
-                   src/tiff/tif_strip.c
-                   src/tiff/tif_thunder.c
-                   src/tiff/tif_tile.c
-                   src/tiff/tif_version.c
-                   src/tiff/tif_warning.c
-                   src/tiff/tif_write.c
-                   src/tiff/tif_zip.c
+            src/tiff/tif_aux.c
+            src/tiff/tif_close.c
+            src/tiff/tif_codec.c
+            src/tiff/tif_color.c
+            src/tiff/tif_compress.c
+            src/tiff/tif_dir.c
+            src/tiff/tif_dirinfo.c
+            src/tiff/tif_dirread.c
+            src/tiff/tif_dirwrite.c
+            src/tiff/tif_dumpmode.c
+            src/tiff/tif_error.c
+            src/tiff/tif_extension.c
+            src/tiff/tif_fax3.c
+            src/tiff/tif_fax3sm.c
+            src/tiff/tif_getimage.c
+            src/tiff/tif_jpeg.c
+            src/tiff/tif_flush.c
+            src/tiff/tif_lzw.c
+            src/tiff/tif_luv.c
+            src/tiff/tif_next.c
+            src/tiff/tif_open.c
+            src/tiff/tif_packbits.c
+            src/tiff/tif_pixarlog.c
+            src/tiff/tif_predict.c
+            src/tiff/tif_print.c
+            src/tiff/tif_read.c
+            src/tiff/tif_swab.c
+            src/tiff/tif_strip.c
+            src/tiff/tif_thunder.c
+            src/tiff/tif_tile.c
+            src/tiff/tif_version.c
+            src/tiff/tif_warning.c
+            src/tiff/tif_write.c
+            src/tiff/tif_zip.c
         </sources>
     </lib>
 
index 940c96cb20c6e0e6c31d007891f91e1845a3e928..ffd449f90b5d1b128c4e2427cd76e5b823474d6a 100644 (file)
     </phony>
 
     <set var="BUILDING_LIB">1</set>
-    
+
     <!-- common rules, names etc. for wx: -->
     <include file="common.bkl"/>
-    
+
     <!-- list of files sorted into categories: -->
     <include file="files.bkl"/>
-    
+
     <!-- wxWidgets variant where everything is in one library: -->
     <include file="monolithic.bkl"/>
     <!-- ...and when there are multiple libraries: -->
             <if cond="MONOLITHIC=='1'">$(MSVC6PRJ_MERGED_TARGETS_MONOLIB)</if>
         </set>
     </if>
-    
+
     <!-- OpenGL canvas is built as separate library in both cases: -->
     <include file="opengl.bkl"/>
     <!-- Dynamically loadable plugins: -->
     <include file="plugins.bkl"/>
+
     <!-- Samples target (not dependency of 'all'): -->
     <subproject id="samples">
         <installable>no</installable>
         <dir cond="FORMAT=='autoconf'">samples</dir>
-        <dir cond="FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL']">../../samples</dir>
+        <dir cond="FORMAT!='autoconf' and TOOLKIT in ['PM','MSW','MGL']">../../samples</dir>
     </subproject>
-    
+
     <if cond="FORMAT=='autoconf'">
-    
+
         <!-- WXRC compiler is built by default: -->
         <!-- FIXME: this is dirty hack, better bakefile support for
              conditional and optional subprojects is needed -->
@@ -59,7 +59,7 @@
             <depends>baselib</depends>
             <depends>xmldll</depends>
             <depends>xmllib</depends>
-            
+
             <command>
                 (test -d utils/wxrc &amp;&amp; cd utils/wxrc &amp;&amp; $(DOLLAR)(MAKE) all) || true
             </command>
@@ -77,7 +77,7 @@
                 (test -d utils/wxrc &amp;&amp; cd utils/wxrc &amp;&amp; $(DOLLAR)(MAKE) install) || true
             </command>
         </action>
-    
+
         <!-- "make install": -->
 
         <data-files>
     </if>
 
 
-    <!-- copy setup.h on DOS/Windows: -->    
-    <if cond="FORMAT!='autoconf' and TOOLKIT in ['MSW','MGL']">
+    <!-- copy setup.h on DOS/OS2/Windows: -->
+    <if cond="FORMAT!='autoconf' and TOOLKIT in ['PM','MSW','MGL']">
         <mkdir id="libdir">
             <dir>$(LIBDIRNAME)</dir>
         </mkdir>
         <mkdir id="libdir_setup">
             <depends>libdir</depends>
-            <dir>$(SETUPHDIR)</dir>            
+            <dir>$(SETUPHDIR)</dir>
         </mkdir>
         <mkdir id="libdir_setup_wx">
             <depends>libdir_setup</depends>
             <dependency-of>setup_h</dependency-of>
-            <dir>$(SETUPHDIR)/wx</dir>            
+            <dir>$(SETUPHDIR)/wx</dir>
         </mkdir>
 
         <set var="SETUP_H_SUBDIR">
             <if cond="WXUNIV=='1'">univ</if>
-            <if cond="WXUNIV=='0'">$(TOOLKIT_LOWERCASE)</if>
+            <if cond="WXUNIV=='0' and TOOLKIT!='PM'">$(TOOLKIT_LOWERCASE)</if>
+            <if cond="WXUNIV=='0' and TOOLKIT=='PM'">os2</if>
         </set>
-        
+
         <copy-file-to-file-if-not-exist id="master_setup.h">
             <src>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup0.h</src>
             <dst>$(SRCDIR)/include/wx/$(SETUP_H_SUBDIR)/setup.h</dst>
         <fragment format="autoconf" file="make_dist.mk"/>
 
     </if>
-        
+
     <include file="build_cfg.bkl"/>
 
 </makefile>
index c421273e73634e52e7e247059833eb5d6abb77c5..0b1aa4c6c5c3e9b693fe1ebd4a2550a605d55273 100644 (file)
@@ -4,28 +4,28 @@
  * Copyright (c) 1990-1997 Sam Leffler
  * Copyright (c) 1991-1997 Silicon Graphics, Inc.
  *
- * Permission to use, copy, modify, distribute, and sell this software and 
+ * Permission to use, copy, modify, distribute, and sell this software and
  * its documentation for any purpose is hereby granted without fee, provided
  * that (i) the above copyright notices and this permission notice appear in
  * all copies of the software and related documentation, and (ii) the names of
  * Sam Leffler and Silicon Graphics may not be used in any advertising or
  * publicity relating to the software without the specific, prior written
  * permission of Sam Leffler and Silicon Graphics.
- * 
- * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
- * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
- * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
- * 
+ *
+ * THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND,
+ * EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY
+ * WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
+ *
  * IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  * ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  * OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
- * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
- * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
+ * WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF
+ * LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  * OF THIS SOFTWARE.
  */
 
 #ifndef _COMPAT_
-#define        _COMPAT_
+#define _COMPAT_
 /*
  * This file contains a hodgepodge of definitions and
  * declarations that are needed to provide compatibility
@@ -218,5 +218,8 @@ extern int creat(const char *path, int mode);
 #define HOST_BIGENDIAN 0
 #endif
 
+#ifndef LINKAGEMODE
+    #define LINKAGEMODE
+#endif
 
 #endif /* _COMPAT_ */