diff options
Diffstat (limited to 'config/xcygwin')
-rw-r--r-- | config/xcygwin/Makedefs | 23 | ||||
-rw-r--r-- | config/xcygwin/define.h | 16 | ||||
-rw-r--r-- | config/xcygwin/status | 32 |
3 files changed, 71 insertions, 0 deletions
diff --git a/config/xcygwin/Makedefs b/config/xcygwin/Makedefs new file mode 100644 index 0000000..f3df739 --- /dev/null +++ b/config/xcygwin/Makedefs @@ -0,0 +1,23 @@ +# CC C compiler +# CFLAGS flags for building C files +# CFDYN additional flags for dynamic functions +# RLINK flags for linking run-time system +# RLIBS libraries to link with run-time system +# TLIBS libraries to link for POSIX threads +# XLIBS libraries to link for graphics +# XPMDEFS definitions for building XPM library +# GDIR directory of graphics helper library + +CC = gcc +CFLAGS = -O +CFDYN = +# make win32 import library for callbacks +RLINK = -Wl,--export-all-symbols -Wl,--out-implib=iconx.a +RLIBS = -lm +TLIBS = +XLIBS = -L/usr/X11R6/lib -lX11 +XPMDEFS = -DZPIPE +GDIR = xpm + +# EXE extension for executable files +EXE = .exe diff --git a/config/xcygwin/define.h b/config/xcygwin/define.h new file mode 100644 index 0000000..f939ed2 --- /dev/null +++ b/config/xcygwin/define.h @@ -0,0 +1,16 @@ +/* + * Icon configuration file for Cygwin using X Window System graphics + */ +#define MSWIN 1 /* this configuration is for Microsoft Windows */ +#define CYGWIN 1 /* this configuration uses Cygwin API */ +#define XWindows 1 /* this configuration uses X Windows for graphics */ + +#define FAttrib /* enable fattrib() extension */ + +#define LoadFunc 1 /* enable dynamic loading */ + +#define ExecSuffix ".exe" +#define IcodeSuffix ".exe" + +#define BinaryHeader +#define MaxHdr 16384 diff --git a/config/xcygwin/status b/config/xcygwin/status new file mode 100644 index 0000000..55535c2 --- /dev/null +++ b/config/xcygwin/status @@ -0,0 +1,32 @@ +System configuration: + + Cygwin on Windows XP using the X Window System for graphics + +Latest Icon version: + + Version 9.5.0 + +Installer: + + Carl Sturtivant + University of Minnesota + +Missing features: + + None + +Known bugs: + + The "options" test fails due to Unix dependencies. + + Graphics programs can only run within a Cygwin xterm. + +Comments: + + Tested using Cygwin 1.5.25 with GCC 3.4.4 on Windows XP. + + See the special Cygwin page in the documentation directory. + +Date: + + April 3, 2010 |