64-bit vs. 32-bit

2014-04-25 Thread Tom Szczesny
result from uname -a CYGWIN_NT-6.1-WOW64 Toshiba 1.7.17(0.262/5/3) 2012-10-19 14:39 i686 Cygwin Sorry that I was not clear. I have an open source app (hosted on github.com) that was developed for Linux. It compiles and works on Windows-64 using my current version of Cygwin, but I suspect that I a

64-bit vs. 32-bit

2014-04-25 Thread Tom Szczesny
I have a 64-bit Windows laptop, and installed Cygwin several years ago. I wish to verify that I did install the 64-bit installation. I get the following results: cygcheck -V cygcheck (cygwin) 1.7.15 uname CYGWIN_NT-6.1-WOW64 If I did install the 64-bit version, when I rebuild my Linux app on Cyg

Re: Xemacs: Adding a Font

2012-08-06 Thread Tom Szczesny
Never mind. I figured it out. The fonts are installed in Windows. On Mon, Aug 6, 2012 at 7:27 PM, Tom Szczesny wrote: > Thanks Mark (for the Cygwin/X suggestions). > > I went the X-route in Cygwin only because that is what I did in Gentoo. > But Xemacs works perfectly well i

Xemacs: Adding a Font

2012-08-06 Thread Tom Szczesny
Thanks Mark (for the Cygwin/X suggestions). I went the X-route in Cygwin only because that is what I did in Gentoo. But Xemacs works perfectly well in Cygwin w/o starting an X-server. So, the X-server appears to be a needless step. However, the fonts displayed by Xemacs (when not using X-server)

Xemacs: Adding a font

2012-08-05 Thread Tom Szczesny
Writing program scripts for A+ with Xemacs requires using a special font. I have added the required fonts to /usr/share/fonts/misc and updated /usr/share/fonts/misc/fonts.alias I have rerun "mkfontdir" successfully When I execute the command xset fp rehash I get the message: xset:

A+ interpreter

2012-08-03 Thread Tom Szczesny
FYI - A port of the A+ interpreter to Cygwin is available at https://github.com/tavmem/aplus -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/

libc.so.6

2012-04-08 Thread Tom Szczesny
In Linux there is a lbrary namedlibc.so.6 What is the equivalent library in cygwin? -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscrib

Re: aplus-fsf (XWarpPointer)

2012-03-21 Thread Tom Szczesny
a snippet from aplus-fsf-4.22/src/main/Makefile: EXEEXT = .exe OBJEXT = o PATH_SEPARATOR = : AMTAR = tar AS = @AS@ AWK = gawk CC = gcc CXX = g++ DEPDIR = .deps DLLTOOL = @DLLTOOL@ ECHO = echo INSTALL_STRIP_PROGRAM = ${SHELL} $(install_sh) -c -s LIBTOOL = $(SHELL) $(top_builddir)/libtool LI

aplus-fsf (XWarpPointer)

2012-03-21 Thread Tom Szczesny
The last (few) commands are: Making all in main make[2]: Entering directory `/usr/local/aplus-fsf-4.22/src/main' echo "Making version.h";\ rm -f version.h;\ cat version.h.template | sed -e s/%RCVAL%/4.22/ \ -e s/%FNVAL%// \ -e s@%IMDIRVAL%@/usr/local/aplus-fsf-4.22@ >version.h; Mak

aplus-fsf (XWarpPointer)

2012-03-21 Thread Tom Szczesny
My current stumbling block: When compiling aplus-fsf-4.22/src/main/aplus_main.c I get many errors related to X11. case in point: undefined reference to '_XWarpPointer' in AGIF.o aplus-fsf-4.22/src/AplusGUI/AGIF.C does use XWarpPointer: static I warpPointer(MSWidgetView *pWidgetView_) { if (pW

Attempt to build aplus-fsf-4.22 (EnumTable)

2012-03-19 Thread Tom Szczesny
Well, of course, you are correct. It did not work. It was like a sinkhole. For each header file that I included in the aplus source, an additional header file was required. You asked what definitions were initially required. They are: FIOCLEX FIONCLEX FIOSETOWN FIOGETOWN TIOCOUTQ TIOCSTI I ass

Attempt to build aplus-fsf-​4.22 (EnumTable​)

2012-03-18 Thread Tom Szczesny
In Gentoo Linux: aplus-fsf-4.22/src/cxsys/eponymous.c contains #include sys/ioctl.h contains #include bits/ioctls.hcontains #include asm/ioctls.h

Attempt to build aplus-fsf-4.22 (EnumTable)

2012-03-18 Thread Tom Szczesny
The current issue that I am facing is with an EnumTable. (see code listing below). It exists in a file named aplus-fsf-4.22/src/cxsys/eponymous.c LEXABUG is not defined in Cygwin. As far as I can tell, it is not defined in Gentoo Linux either. The code builds OK in Gentoo Linux. In Cygwin, with

Re: sys/filio.h

2012-03-16 Thread Tom Szczesny
Thank you's to you both: Marco:           defined(__CYGWIN__) Christopher:     gcc -xc /dev/null -dD -E -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.h

Re: sys/filio.h

2012-03-16 Thread Tom Szczesny
There are several places in the source code that have the following type of construction: #if defined(_AIX) || defined(linux) || defined(__alpha) || defined(__APPLE__)extern "C" {#include }#elseextern "C" {#include }#endif As a temporary measure, I have added a line at the beginning of each co

RE: sys/filio.h

2012-03-16 Thread Tom Szczesny
Thanks for the tip! I was able to get the package working under Gentoo Linux. Seems that I need to do some work on the config step (which appears to have decided that the build is being done under Solaris). The file /usr/include/sys/filio.h does not exist in Gentoo Linux either. -

sys/filio.h

2012-03-16 Thread Tom Szczesny
Hi, I am attempting to "make install" the A+ language in my Cygwin environment. The package aplus-fsf-4.22-4.tar.gzis available at www.aplusdev.org The configure worked fine: CFLAGS=-O2 CXXFLAGS=-O2 ./configure --prefix=/usr/local/aplus-fsf-4.22 The "make install" failed with th

Possible security problem -- in Python module

2012-02-26 Thread Tom Szczesny
Sat 2012-02-25 17:39:23.0618 Begin passive write scan (330 file(s)) Sat 2012-02-25 17:39:26.0660 Begin passive write scan (7 file(s)) Sat 2012-02-25 17:39:27.0425 Infection detected: c:\cygwin\lib\python2.6\distutils\command\wininst-9.0.exe [MD5: 0563061137E462BF38717F90488C4504] [3/0008] [