delorie.com/archives/browse.cgi   search  
Mail Archives: cygwin/2001/08/30/07:41:15

Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm
List-Subscribe: <mailto:cygwin-subscribe AT sources DOT redhat DOT com>
List-Archive: <http://sources.redhat.com/ml/cygwin/>
List-Post: <mailto:cygwin AT sources DOT redhat DOT com>
List-Help: <mailto:cygwin-help AT sources DOT redhat DOT com>, <http://sources.redhat.com/ml/#faqs>
Sender: cygwin-owner AT sources DOT redhat DOT com
Delivered-To: mailing list cygwin AT sources DOT redhat DOT com
From: "Gerrit P. Haase" <freeweb AT nyckelpiga DOT de>
Organization: convey Information Systems GmbH
To: "Kirschner, Paul E. UTRC" <KirschPE AT utrc DOT utc DOT com>,
"'cygwin'" <cygwin AT sourceware DOT cygnus DOT com>
Date: Thu, 30 Aug 2001 11:46:32 +0200
MIME-Version: 1.0
Subject: Re: compiling Tk800.023
Reply-to: cygwin AT cygwin DOT com
Message-ID: <3B8E2798.812.25E338@localhost>
In-reply-to: <62835D8790DBD111981100805FA7E4C401C47BFD@EXPRESS1>
X-mailer: Pegasus Mail for Win32 (v3.12cDE)

--Message-Boundary-27589
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Content-description: Mail message body

> Kirschner, Paul E.        UTR schrieb am 2001-08-29 15:37:

>Has anyone compiled Tk800.023? Tk800.022 worked OK for me with the two
>patches mentioned in this list from
>http://sources.redhat.com/ml/cygwin/2001-04/msg01087.html
>
>I want to use Tk with win32 natively (without X). I added the 022 patch to
>fix the win32 stuff from
>http://sources.redhat.com/ml/cygwin/2000-08/msg01201.html.

Eric patched the new Tk800.023 already,
is attached.

Gerrit

-- 
=^..^=


--Message-Boundary-27589
Content-type: text/plain; charset=US-ASCII
Content-transfer-encoding: 7BIT
Content-description: Text from file 'Tk.patch'

diff -ur Tk800.023.orig/Makefile.PL Tk800.023/Makefile.PL
--- Tk800.023.orig/Makefile.PL	Sat Dec 30 08:12:38 2000
+++ Tk800.023/Makefile.PL	Sun Jun 10 22:38:44 2001
@@ -154,7 +154,7 @@
 }
 
 sub MY::postamble {
-    '
+ my $str = '
 
 html : subdirs manifypods
 	@cd pod && $(MAKE) html $(PASTHRU)
@@ -184,6 +184,8 @@
 	$(MAKE) manifest
 
 ';
+ $str =~ s/DEFINE=.*// if($^O eq 'cygwin');
+ $str;
 }
 
 
diff -ur Tk800.023.orig/README.cygwin Tk800.023/README.cygwin
--- Tk800.023.orig/README.cygwin	Tue May 15 07:53:38 2001
+++ Tk800.023/README.cygwin	Sun Jun 10 22:38:44 2001
@@ -90,7 +90,7 @@
       (sometimes $^O eq 'MSWin32' is used instead of $Tk::platform
        eq 'MSWin32' assuming they are equivalent and vice versa)
     + #define distinctions
-        _WIN32                defined by gcc, if X11 need to undef
+        _WIN32                win_arch MSWin32
         __WIN32__             win_arch MSWin32, also defined in pTk/Lang.h
         WIN32                 from #include <windows.h>
                               when precedes #include "perl.h" then need
@@ -107,7 +107,7 @@
     README.cygwin MANIFEST
     * documentation
 
-    Makefile.PL Tk/MMutil.pm pTk/Makefile.PL
+    Makefile.PL Tk/MMutil.pm pTk/Makefile.PL myConfig
     * make stuff
 
     pTk/mTk/win/tkWinX.c
@@ -149,6 +149,6 @@
     + Fix gcc warnings, mostly in pTk win32 flavor?
     + Test with cygwin-xfree X Server?
 
-Thu Aug 31 12:54:09 BST 2000
+Sun Jun 10 21:34:30 PST 2001
 Eric Fifer
-efifer AT dircon DOT co DOT uk
+egf7 AT columbia DOT edu
diff -ur Tk800.023.orig/Tk/MMutil.pm Tk800.023/Tk/MMutil.pm
--- Tk800.023.orig/Tk/MMutil.pm	Sat Dec 30 08:12:38 2000
+++ Tk800.023/Tk/MMutil.pm	Sun Jun 10 22:38:44 2001
@@ -227,13 +227,10 @@
      push(@def,qw(-D__CYGWIN__));
      if ($win_arch eq 'MSWin32')
       {
-       push(@def,qw(-D__WIN32__)) unless $self->{'DEFINE'} =~ /-D__WIN32__/;
+       push(@def,qw(-D__WIN32__ -D_WIN32))
+			       unless $self->{'DEFINE'} =~ /-D__WIN32__/;
        push(@def,qw(-DWIN32)) if $self->{'NAME'} eq 'Tk::pTk';
       }
-     elsif ($win_arch eq 'x')
-      {
-       push(@def,qw(-U_WIN32));
-      }
     }
    foreach (@inc)
     {
@@ -508,15 +505,11 @@
      push(@opt,'LD' => 'gcc -shared');
      if ($win_arch eq 'MSWin32')
       {
-       my $extra = "-lcomdlg32 -lgdi32";
+       my $extra = "-L/lib/w32api -lcomdlg32 -lgdi32";
        my $libs = $att{'LIBS'}->[0];
        $att{'LIBS'}->[0] = "$extra $libs";
-       $att{'DEFINE'} .= ' -D__WIN32__';
+       $att{'DEFINE'} .= ' -D__WIN32__ -D_WIN32';
        $att{'DEFINE'} .= ' -DWIN32' if($att{'NAME'} eq 'Tk::pTk');
-      }
-     elsif ($win_arch eq 'x')
-      {
-       $att{'DEFINE'} .= ' -U_WIN32';
       }
     }
    if (delete $att{'ptk_include'})
diff -ur Tk800.023.orig/myConfig Tk800.023/myConfig
--- Tk800.023.orig/myConfig	Sat Dec 30 08:12:38 2000
+++ Tk800.023/myConfig	Sun Jun 10 22:38:44 2001
@@ -340,7 +340,7 @@
   $define .= " -D__PM__";
   $inc = "-I../pTk/mTk/xlib -I../../pTk/mTk/xlib -IpTk/mTk/xlib -ImTk/os2_rc";
   $xlib = "";                          # No library is needed
-} elsif ($IsWin32) {
+} elsif ($IsWin32 or $^O eq 'cygwin') {
   $inc = '-I$(TKDIR)/pTk/mTk/xlib';
 }
 
diff -ur Tk800.023.orig/pTk/Xlib.excwin Tk800.023/pTk/Xlib.excwin
--- Tk800.023.orig/pTk/Xlib.excwin	Sat Dec 30 08:12:38 2000
+++ Tk800.023/pTk/Xlib.excwin	Sun Jun 10 23:13:46 2001
@@ -37,4 +37,5 @@
 XReadBitmapFile
 XOpenDisplay
 XLoadQueryFont
-XCreateWindow
\ No newline at end of file
+XCreateWindow
+XRectInRegion



--Message-Boundary-27589
Content-Type: text/plain; charset=us-ascii

--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/
--Message-Boundary-27589--

- Raw text -


  webmaster     delorie software   privacy  
  Copyright © 2019   by DJ Delorie     Updated Jul 2019