]> git.saurik.com Git - wxWidgets.git/commitdiff
Updates to tmake for X11. Damn lock in CVS.
authorRobert Roebling <robert@roebling.de>
Sat, 9 Feb 2002 18:43:37 +0000 (18:43 +0000)
committerRobert Roebling <robert@roebling.de>
Sat, 9 Feb 2002 18:43:37 +0000 (18:43 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@14082 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

distrib/msw/tmake/filelist.t
distrib/msw/tmake/filelist.txt
distrib/msw/tmake/gtk.t
distrib/msw/tmake/makeall.sh
distrib/msw/tmake/motif.t

index ee2b8b196e95c76368cfd85c72e56adcdcae9f41..4c1b83f364f66e312d6112bc5c1f09b7ca7c0ac7 100644 (file)
@@ -47,8 +47,6 @@
         $fileflags =~ s/OLE/O/;
         $fileflags =~ s/Socket/S/;
         $fileflags =~ s/NotMSW/U/;
-        $fileflags =~ s/NotGTK/R/;
-        $fileflags =~ s/NotX/X/;
         $fileflags =~ s/NotOS2/P/;
         $fileflags =~ s/LowLevel/L/;
 
index fbb6c2842ec7d7c5ed570368f805abd19d2eb323..bd478ea48257aa5b6d1373d35fdcfeeb42bd9178 100644 (file)
@@ -91,9 +91,9 @@ laywin.cpp    Generic
 listctrl.cpp   Generic NotWin32
 logg.cpp       Generic
 msgdlgg.cpp    Generic Generic
-notebook.cpp   Generic NotWin32,NotGTK,NotOS2,NotMGL,NotMac,NotMicro
+notebook.cpp   Generic NotWin32,NotGTK,NotOS2,NotMGL,NotX11,NotMac,NotMicro
 numdlgg.cpp    Generic
-paletteg.cpp   Generic NotMSW,NotX,NotX11,NotOS2,NotMGL,NotMac,NotMicro
+paletteg.cpp   Generic NotMSW,NotX,NotOS2,NotMGL,NotX11,NotMac,NotMicro
 panelg.cpp     Generic
 printps.cpp    Generic NotMSW,NotX11
 prntdlgg.cpp   Generic NotMSW
@@ -106,9 +106,9 @@ scrlwing.cpp        Generic
 spinctlg.cpp   Generic
 splash.cpp     Generic
 splitter.cpp   Generic
-statline.cpp   Generic NotMSW,NotGTK,NotOS2,NotMGL,NotMac,NotMicro
-statusbr.cpp   Generic NotMGL,NotMicro
-tabg.cpp       Generic NotWin32,NotOS2,NotX11
+statline.cpp   Generic NotMSW,NotGTK,NotOS2,NotMGL,NotX11,NotMac,NotMicro
+statusbr.cpp   Generic NotMGL,NotX11,NotMicro
+tabg.cpp       Generic NotWin32,NotOS2
 tbarsmpl.cpp   Generic
 textdlgg.cpp   Generic
 tipdlg.cpp     Generic
index 45aacb564b63cbbb6d5510152c3e9f52c87113a2..6a1e34079c105533d0ce58f5d92470bf93c2110d 100644 (file)
@@ -16,7 +16,7 @@
     $project{"COMMONOBJS"} .= "parser.o ";
 
     foreach $file (sort keys %wxGeneric) {
-        next if $wxGeneric{$file} =~ /\bR\b/;
+        next if $wxGeneric{$file} =~ /\bNotGTK\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
 
@@ -35,7 +35,7 @@
     }
 
     foreach $file (sort keys %wxCommon) {
-        next if $wxCommon{$file} =~ /\bR\b/;
+        next if $wxCommon{$file} =~ /\bNotGTK\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
 
@@ -70,7 +70,7 @@
 
     #! find all our headers
     foreach $file (sort keys %wxWXINCLUDE) {
-        next if $wxWXINCLUDE{$file} =~ /\bR\b/;
+        next if $wxWXINCLUDE{$file} =~ /\bNotGTK\b/;
 
         $project{"GTK_HEADERS"} .= $file . " "
     }
index 7b12de560ae8e5d05adb5d235514df03a53563f2..39d15ef158f093ddaf762596d9bb378988e4a340 100755 (executable)
@@ -99,6 +99,10 @@ do
            echo "Generating $topdir/src/mgl/files.lst for MGL and Configure..."
            tmake -t mgl wxwin.pro -o $topdir/src/mgl/files.lst;;
 
+       x11.t)
+           echo "Generating $topdir/src/x11/files.lst for X11 and Configure..."
+           tmake -t x11 wxwin.pro -o $topdir/src/x11/files.lst;;
+
        watmgl.t)
            echo "Generating $topdir/src/mgl/makefile.wat for Watcom C++ and MGL+DOS..."
            tmake -t watmgl wxwin.pro -o $topdir/src/mgl/makefile.wat;;
index 146306e88198a0fa53a067630d6746b5ad8b5961..dbca7fc9e51c23aee500c80566a84e4a1c62f8e5 100644 (file)
@@ -17,7 +17,7 @@
     $project{"GUIOBJS"} .= "xmcombo.o ";
 
     foreach $file (sort keys %wxGeneric) {
-        next if $wxGeneric{$file} =~ /\bX\b/;
+        next if $wxGeneric{$file} =~ /\bNotX\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
 
@@ -26,7 +26,7 @@
     }
 
     foreach $file (sort keys %wxCommon) {
-        next if $wxCommon{$file} =~ /\bX\b/;
+        next if $wxCommon{$file} =~ /\bNotX\b/;
 
         ($fileobj = $file) =~ s/cp?p?$/\o/;
 
@@ -56,7 +56,7 @@
     }
     #! find all our headers
     foreach $file (sort keys %wxWXINCLUDE) {
-        next if $wxWXINCLUDE{$file} =~ /\bX\b/;
+        next if $wxWXINCLUDE{$file} =~ /\bNotX\b/;
 
         $project{"MOTIF_HEADERS"} .= $file . " "
     }