Re: Running GIMP under Cygwin (not Win32!)??

2003-03-03 Thread David Huang
Hi!
I'v uploaded the binary package and patches to 
sf.net(http://sourceforge.net/projects/cygnome).
You can download it from
http://sourceforge.net/project/showfiles.php?group_id=67909&release_id=143989
Have fun!

David Huang wrote:
Oops! sorry, i forget the patches:(

Good luck;)

Chris Olive wrote:

I posted this question to the cygwin mailing list last week, and 
someone on that list referred me here and said he cross-posted for 
me.  I didn't hear anything from his "cross-post," so I'm trying 
again...

It would seem it's at least possible to run The GIMP under 
Cygwin/XFree.  Try as I might, I can't get it to work.  Specifically, 
I can't get some of the necessary pre-requeistes to configure and 
make properly (glib, GTK+, etc.)  Has ANYONE gotten GIMP to work 
under Cygwin, and if so, specifically what steps did you take to get 
it to work?  I've done a lot of research on this before asking the 
question, and there is bare mention of this on the web -- I see NO 
WHERE where anyone claims that this works.  Essentially, there is no 
SOLID information ANYWHERE on getting this to work.

I am interested only in running GIMP under Cygwin/XFree -- I am NOT 
interested the Win32 version of GIMP!  Any help would be GREATLY 
appreciated.

Thanks,
Chris
-
Chris Olive
chris[at]technologEase[dot]com
Hi!
I have compiled GIMP on cygwin successfully, using X-Window system, 
and it works fine.
Of cource, it's easy to get, since native Win32 port works fine.
If you like, please try my little patch, hope helpful.
First you need glib, gtk+, you can build them yourself from sources 
with patches from
http://homepage.ntlworld.com/steven.obrien2/ (contributed and 
maintained by Steven O'Brian).
Or, download glib, gtk+ binary packages directly from the Cygwin GNOME 
project
( http://sourceforge.net/projects/cygnome ), you can find more 
interesting GNOME
binary packages in cygnome-libs-1.4 (include glib, gtk+).

The build steps i have wrote into a file cygbuild.sh, like:

$ ./configure --prefix=/opt/gnome --enable-shared=yes 
--enable-static=no --disable-perl
Please disable perl plugin, with little patched you can compile 
successfully, but running
GIMP hangs when try to load perl plugin script, in my test.

$ mv libtool libtool.old
$ cp /usr/autotool/devel/bin/libtool .
Update libtool to build DLL libs, i use the latest libtool.
$ make
$ make install
if you are luck, you'll get gimp run.
I have to say in my test it's OK, but i can't say it's really OK.
BTW: Please patch lib/glib/include/glibconfig.h,






Re: Running GIMP under Cygwin (not Win32!)??

2003-03-03 Thread David Huang
Oops! sorry, i forget the patches:(

Good luck;)

Chris Olive wrote:
I posted this question to the cygwin mailing list last week, and someone on that list referred me here and said he cross-posted for me.  I didn't hear anything from his "cross-post," so I'm trying again...

It would seem it's at least possible to run The GIMP under Cygwin/XFree.  Try as I might, I can't get it to work.  Specifically, I can't get some of the necessary pre-requeistes to configure and make properly (glib, GTK+, etc.)  Has ANYONE gotten GIMP to work under Cygwin, and if so, specifically what steps did you take to get it to work?  I've done a lot of research on this before asking the question, and there is bare mention of this on the web -- I see NO WHERE where anyone claims that this works.  Essentially, there is no SOLID information ANYWHERE on getting this to work.

I am interested only in running GIMP under Cygwin/XFree -- I am NOT interested the Win32 version of GIMP!  Any help would be GREATLY appreciated.

Thanks,
Chris
-
Chris Olive
chris[at]technologEase[dot]com
Hi!
I have compiled GIMP on cygwin successfully, using X-Window system, and it works fine.
Of cource, it's easy to get, since native Win32 port works fine.
If you like, please try my little patch, hope helpful.
First you need glib, gtk+, you can build them yourself from sources with patches from
http://homepage.ntlworld.com/steven.obrien2/ (contributed and maintained by Steven 
O'Brian).
Or, download glib, gtk+ binary packages directly from the Cygwin GNOME project
( http://sourceforge.net/projects/cygnome ), you can find more interesting GNOME
binary packages in cygnome-libs-1.4 (include glib, gtk+).
The build steps i have wrote into a file cygbuild.sh, like:

$ ./configure --prefix=/opt/gnome --enable-shared=yes --enable-static=no --disable-perl
Please disable perl plugin, with little patched you can compile successfully, but 
running
GIMP hangs when try to load perl plugin script, in my test.
$ mv libtool libtool.old
$ cp /usr/autotool/devel/bin/libtool .
Update libtool to build DLL libs, i use the latest libtool.
$ make
$ make install
if you are luck, you'll get gimp run.
I have to say in my test it's OK, but i can't say it's really OK.
BTW: Please patch lib/glib/include/glibconfig.h,


diff -urN gimp-1.2.3-orig/app/Makefile.in gimp-1.2.3/app/Makefile.in
--- gimp-1.2.3-orig/app/Makefile.in 2002-02-12 05:46:18.0 +0800
+++ gimp-1.2.3/app/Makefile.in  2003-02-27 16:21:52.0 +0800
@@ -394,6 +394,7 @@
 
 clean-binPROGRAMS:
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
+   @rm -f gimp.def gimp.base gimp.exp libgimpapp.a
 
 distclean-binPROGRAMS:
 
@@ -416,8 +417,28 @@
done
 
 gimp-1.2: $(gimp_1_2_OBJECTS) $(gimp_1_2_DEPENDENCIES)
-   @rm -f gimp-1.2
-   $(LINK) $(gimp_1_2_LDFLAGS) $(gimp_1_2_OBJECTS) $(gimp_1_2_LDADD) $(LIBS)
+   @rm -f gimp-1.2$(EXEEXT)
+   @rm -f gimp.def gimp.base gimp.exp libgimpapp.a
+# cygwin build
+   $(LINK) -shared $(gimp_1_2_LDFLAGS) -Wl,--out-implib=libgimpapp.a 
-Wl,--export-all-symbols $(gimp_1_2_OBJECTS) -Wl,--no-whole-archive $(gimp_1_2_LDADD) 
$(LIBS)
+   $(DLLTOOL) --output-def gimp.def --dllname gimp-1.2$(EXEEXT) 
--export-all-symbols $(gimp_1_2_OBJECTS)
+   @rm -f gimp-1.2$(EXEEXT)
+   $(LINK) $(gimp_1_2_LDFLAGS) -Wl,--base-file,gimp.base $(gimp_1_2_OBJECTS) 
$(gimp_1_2_LDADD) $(LIBS)
+   $(DLLTOOL) --base-file gimp.base --input-def gimp.def --output-exp gimp.exp
+   $(LINK) $(gimp_1_2_LDFLAGS) -Wl,gimp.exp $(gimp_1_2_OBJECTS) $(gimp_1_2_LDADD) 
$(LIBS)
+   cp libgimpapp.a .libs/libgimpapp.a
+# or
+#  echo EXPORTS >gimp.def
+#  cat gimp.sym >>gimp.def
+#  $(LINK) $(gimp_1_2_LDFLAGS) -Wl,--base-file,gimp.base $(gimp_1_2_OBJECTS) 
$(gimp_1_2_LDADD) $(LIBS)
+#  $(DLLTOOL) --base-file gimp.base --input-def gimp.def --output-exp gimp.exp
+#  $(LINK) $(gimp_1_2_LDFLAGS) -Wl,--base-file,gimp.base,gimp.exp 
$(gimp_1_2_OBJECTS) $(gimp_1_2_LDADD) $(LIBS)
+#  $(DLLTOOL) --base-file gimp.base --input-def gimp.def --output-exp gimp.exp
+#  $(LINK) $(gimp_1_2_LDFLAGS) -Wl,gimp.exp $(gimp_1_2_OBJECTS) $(gimp_1_2_LDADD) 
$(LIBS)
+#  $(DLLTOOL) --dllname gimp-1.2$(EXEEXT) --def gimp.def --output-lib 
libgimpapp.a $(gimp_OBJECTS)
+# orig
+#  @rm -f gimp-1.2
+#  $(LINK) $(gimp_1_2_LDFLAGS) $(gimp_1_2_OBJECTS) $(gimp_1_2_LDADD) $(LIBS)
 
 tags: TAGS
 
diff -urN gimp-1.2.3-orig/app/plug_in.c gimp-1.2.3/app/plug_in.c
--- gimp-1.2.3-orig/app/plug_in.c   2001-01-16 05:44:02.0 +0800
+++ gimp-1.2.3/app/plug_in.c2002-11-28 18:20:04.0 +0800
@@ -57,6 +57,7 @@
 #define _O_TEXT0x0100  /* text file */
 #define O_BINARY   0x0200  /* binary file */
 #define _O_BINARY  0x0200  /* binary file */
+#define xspawnv spawnv
 #endif
 
 #endif
diff -urN gimp-1.2.3-orig/cygbuild.sh gimp-1.2.3/cygbuild.sh
--- gimp-1.2.3-orig/cygbuild.sh 1970-01-01 08:00:00.0 +0800
+++ gimp-1.2.3/cygbui

Re: Running GIMP under Cygwin (not Win32!)??

2003-03-03 Thread David Huang
Chris Olive wrote:
I posted this question to the cygwin mailing list last week, and someone on that list referred me here and said he cross-posted for me.  I didn't hear anything from his "cross-post," so I'm trying again...

It would seem it's at least possible to run The GIMP under Cygwin/XFree.  Try as I might, I can't get it to work.  Specifically, I can't get some of the necessary pre-requeistes to configure and make properly (glib, GTK+, etc.)  Has ANYONE gotten GIMP to work under Cygwin, and if so, specifically what steps did you take to get it to work?  I've done a lot of research on this before asking the question, and there is bare mention of this on the web -- I see NO WHERE where anyone claims that this works.  Essentially, there is no SOLID information ANYWHERE on getting this to work.

I am interested only in running GIMP under Cygwin/XFree -- I am NOT interested the Win32 version of GIMP!  Any help would be GREATLY appreciated.

Thanks,
Chris
-
Chris Olive
chris[at]technologEase[dot]com
Hi!
I have compiled GIMP on cygwin successfully, using X-Window system, and it works fine.
Of cource, it's easy to get, since native Win32 port works fine.
If you like, please try my little patch, hope helpful.
First you need glib, gtk+, you can build them yourself from sources with patches from
http://homepage.ntlworld.com/steven.obrien2/ (contributed and maintained by Steven 
O'Brian).
Or, download glib, gtk+ binary packages directly from the Cygwin GNOME project
( http://sourceforge.net/projects/cygnome ), you can find more interesting GNOME
binary packages in cygnome-libs-1.4 (include glib, gtk+).
The build steps i have wrote into a file cygbuild.sh, like:

$ ./configure --prefix=/opt/gnome --enable-shared=yes --enable-static=no --disable-perl
Please disable perl plugin, with little patched you can compile successfully, but 
running
GIMP hangs when try to load perl plugin script, in my test.
$ mv libtool libtool.old
$ cp /usr/autotool/devel/bin/libtool .
Update libtool to build DLL libs, i use the latest libtool.
$ make
$ make install
if you are luck, you'll get gimp run.
I have to say in my test it's OK, but i can't say it's really OK.
BTW: Please patch lib/glib/include/glibconfig.h,




Re: Error building glib-2.2.1 from source 8-(

2003-03-03 Thread Charles Wilson
You have to re-libtoolize using the latest libtool.  I posted a patch 
(for 2.2.0) to the main cygwin list on Jan 03, 2003.

--Chuck

Chris Olive wrote:
I'm trying to build glib from source (from www.gtk.org FTP mirror), and I end up with the following error during make:


make[2]: Entering directory `/cygdrive/c/xfer/glib-2.2.1/gobject'
/bin/sh ../libtool --mode=link gcc  -g -O2 -Wall  -o libgobject-2.0.la -rpath /usr/local/lib -version-info 200:1:200 -export-dynamic -no-undefined gboxed.lo gclosure.lo genums.lo gobject.lo gparam.lo gparamspecs.lo gsignal.lo gsourceclosure.lo gtype.lo gtypemodule.lo gtypeplugin.lo gvalue.lo gvaluearray.lo gvaluetransform.lo gvaluetypes.lo ../glib/libglib-2.0.la -lintl  

*** Warning: This system can not link to static lib archive ../glib/libglib-2.0.la.
*** I have the capability to make that library automatically link in when
*** you link to this library.  But I can only do this if you have a
*** shared version of the library, which you do not appear to have.
libtool: link: warning: `/lib/libintl.la' seems to be moved

I've tried ./configure --enable-shared=yes (it's 'yes' by default anyway), but this seems to have no effect.  As to the libtool warning after the error, "'/lib/libintl.la' seems to be moved", this seems to be bogus since the file IS there.

My guess is that somehow libtool is not resolving libraries properly, but I'm not really at all familiar with how this all works under Cygwin (I know there are .a and .DLL mapping things going on, but that's about it.)  My version of libtool is 1.4.3.

Any help getting over this hump would be appreciated.  I loathe bothering people on lists unless I'm just out of options, which I feel I a (again after much research).  I don't see any other options under ./configure for building glib-2.2.1 that present any other possibilities.

Even if there is no known solution, if someone could just help me decipher the above errors -- what it probably means -- I can go from there most likely.





Re: dummy rootless question...

2003-03-03 Thread -
that's right..but don't touch Xwin...just replace
whatever default window manager there with 'wmaker &'
whatever name is your window manager...i believe 'twm
&' is still the default for the new release...once you
change this...simply type 'startx' in bash...
..or you can simply comment out the 'twm &' line with
a hash sign and have 'wmaker &' like this..
--0-
# twm &
wmaker &
--0-

another cool but not suggested way if you want to test
out any window manager...is..
'xinit <-/' in bash then type 'wmaker &' in the xterm
window...you can kill off window managers in the xterm
window to try out others with the 'kill' command...but
this is not a practical method but may help speeds
things in testing...

..not too sure what you mean as 'rootless' never tried
that before...

hope this helps..

jagg

 --- Pierre CHATEL <[EMAIL PROTECTED]> wrote: > i
can't figure out wich config file to edit in order
> to get X11 with
> Window Maker running in rootless mode (i already use
> wmaker).
> I saw that -rootless was an option to XWin but how
> to pass it to XWin at
> wmaker startup. In .xinitrc ??
> 
> Thanks
> -- 
> Pierre CHATEL <[EMAIL PROTECTED]>
>  

__ 
Post your free ad now! http://personals.yahoo.ca


Re: Error building glib-2.2.1 from source 8-(

2003-03-03 Thread Alexander Gottwald
Chris Olive wrote:

> I'm trying to build glib from source (from www.gtk.org FTP mirror)

What versions of GTK+ and glib does gimp require? The version I compiled
used the older 1.2 glib and gtk+.

bye
ago

NP: Oomph! - Goldenes Herz
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723



Re: XWin hangs when accessing font server

2003-03-03 Thread Alexander Gottwald
Martin Buck wrote:

> xset fp+ tcp/fonts:7100
> 
> As soon as the xset commands runs, XWin locks up and consumes 100% CPU
> time. The same happens if I don't use XDMCP and only start XWin and a
> single xterm in which I type the xset command.

This was already reported by other users. But until now, no one had the
time to solve this problem. Maybe you can step in here.

bye
ago
NP: Oomph! - Always
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723



Re: compiling gv

2003-03-03 Thread Alexander Gottwald
Ramaprabhu Janakiraman wrote:
> Could someone help me find a way to fix this without having
> to compile cygwin/Xfree86 myself? 

Use the static libraries.

> Did the proposed
> code (to redefine _XtInherit to a constant) not make
> it into the release yet?

No. We had no new official release since I posted that patch. And 
we also decided to postpone the pseudorelocation patches until the
new gcc, binutils and cygwin are more common.

bye
ago

NP: Oomph! - Mein Traum
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723



Re: compiling gv

2003-03-03 Thread Alexander Gottwald
Yadin Y. Goldschmidt wrote:

> I also tried to compile this code with --enabe-runtime-pseudo reloc. It
> compiles, but when invoking the exe I get instead
> Warning: translation table syntax error: Unknown event type :   EnterWindow
> Warning: ... found while parsing ':highlight()
> '
> Warning: String to TranslationTable conversion encountered errors
> Warning: translation table syntax error: Unknown event type :   EnterWindow
> Warning: ... found while parsing ':highlight()'
> Warning: String to TranslationTable conversion encountered errors
> Warning: translation table syntax error: Unknown modifier name:   Any
> Warning: ... found while parsing 'Any:set()PopupMenu()'
> Warning: String to TranslationTable conversion encountered errors
> Error: attempt to add non-widget child "fileButton" to parent "control"
> which supports only widgets
> and it dies.
> any clues?

I found some problems with shared libXt and libXaw where two pointers were
compared from different shared libraries. This is no problem in linux but 
will fail with cygwin. Maybe this is the problem here too. But to confirm
this you will have to debug the compiled gv. 

bye
ago

NP: Oomph! - Nothing Is Real
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723



Re: dummy rootless question...

2003-03-03 Thread Harold L Hunt II
That all depends on how you start Cygwin/XFree86.  If you follow the 
instructions in the User's Guide and start with either startxwin.bat or 
startxwin.sh, then you need to edit one of those files.  Otherwise you 
are on your own or you can look for more general X references.

Harold

Pierre CHATEL wrote:
i can't figure out wich config file to edit in order to get X11 with
Window Maker running in rootless mode (i already use wmaker).
I saw that -rootless was an option to XWin but how to pass it to XWin at
wmaker startup. In .xinitrc ??
Thanks



Re: Error building glib-2.2.1 from source 8-(

2003-03-03 Thread Harold L Hunt II
Chris,

You are building glib 2.2.1... I would be curious to find out why it is 
trying to link to glib 2.0.1a???  Doesn't that seem a little strange 
(and unnecessary) to you?

Harold

Chris Olive wrote:
I'm trying to build glib from source (from www.gtk.org FTP mirror), and I end up with the following error during make:


make[2]: Entering directory `/cygdrive/c/xfer/glib-2.2.1/gobject'
/bin/sh ../libtool --mode=link gcc  -g -O2 -Wall  -o libgobject-2.0.la -rpath /usr/local/lib -version-info 200:1:200 -export-dynamic -no-undefined gboxed.lo gclosure.lo genums.lo gobject.lo gparam.lo gparamspecs.lo gsignal.lo gsourceclosure.lo gtype.lo gtypemodule.lo gtypeplugin.lo gvalue.lo gvaluearray.lo gvaluetransform.lo gvaluetypes.lo ../glib/libglib-2.0.la -lintl  

*** Warning: This system can not link to static lib archive ../glib/libglib-2.0.la.
*** I have the capability to make that library automatically link in when
*** you link to this library.  But I can only do this if you have a
*** shared version of the library, which you do not appear to have.
libtool: link: warning: `/lib/libintl.la' seems to be moved

I've tried ./configure --enable-shared=yes (it's 'yes' by default anyway), but this seems to have no effect.  As to the libtool warning after the error, "'/lib/libintl.la' seems to be moved", this seems to be bogus since the file IS there.

My guess is that somehow libtool is not resolving libraries properly, but I'm not really at all familiar with how this all works under Cygwin (I know there are .a and .DLL mapping things going on, but that's about it.)  My version of libtool is 1.4.3.

Any help getting over this hump would be appreciated.  I loathe bothering people on lists unless I'm just out of options, which I feel I a (again after much research).  I don't see any other options under ./configure for building glib-2.2.1 that present any other possibilities.

Even if there is no known solution, if someone could just help me decipher the above errors -- what it probably means -- I can go from there most likely.

Thanks,
Chris
-
Chris Olive
[EMAIL PROTECTED]



Eterm/imlib2 on Cygwin/XFree86, lt_dlopenext() fails.

2003-03-03 Thread Simon Dong

Has anyone successfully build a fully functional Eterm on Cygwin/XFree86? I
spent most of the weekend trying to build it. I did get quite a bit help
from searching the archive, but I didn't see one single success report.

Anyway here's where I stand:

I installed cygipc, built all the prerequesite for imlib2 and imlib2, and
successfully built Eterm. The problem I have now is that I cannot set any
background bitmap because imlib2 cannot load the loader of the images.

I placed some debugging messages inside imlib2 and rebuilt it, and here's
what I found to be the root cause: it tries to load the loaders dynamically
with lt_dlopenext(), but cannot get a handle. I have all the image loaders
with .a and .la extension under the /usr/local/lib/loaders/image/ directory.
The parameter being passed into lt_dlopenext() is the file name with the
extension being stripped on purpose (e.g.
/usr/local/lib/loaders/image/jpeg), since from the comments lt_dlopenext()
should be able to figure out the right thing to do. But the lt_dlopenext()
returns a NULL.

Attached is my cygcheck output. I also applied the KDE patch to
Cygwin/XFree86 for the shared memory support. The imlib2 adn Eterm versions
are:

imlib2-1.0.6
Eterm-0.9.2

I cross posted to the cygwin group since I thought it could be be related to
libtool. Any help would be greatly appreciated.

-Simon


cygcheck.out
Description: Binary data


dummy rootless question...

2003-03-03 Thread Pierre CHATEL
i can't figure out wich config file to edit in order to get X11 with
Window Maker running in rootless mode (i already use wmaker).
I saw that -rootless was an option to XWin but how to pass it to XWin at
wmaker startup. In .xinitrc ??

Thanks
-- 
Pierre CHATEL <[EMAIL PROTECTED]>



Error building glib-2.2.1 from source 8-(

2003-03-03 Thread Chris Olive
I'm trying to build glib from source (from www.gtk.org FTP mirror), and I end up with 
the following error during make:


make[2]: Entering directory `/cygdrive/c/xfer/glib-2.2.1/gobject'
/bin/sh ../libtool --mode=link gcc  -g -O2 -Wall  -o libgobject-2.0.la -rpath 
/usr/local/lib -version-info 200:1:200 -export-dynamic -no-undefined gboxed.lo 
gclosure.lo genums.lo gobject.lo gparam.lo gparamspecs.lo gsignal.lo gsourceclosure.lo 
gtype.lo gtypemodule.lo gtypeplugin.lo gvalue.lo gvaluearray.lo gvaluetransform.lo 
gvaluetypes.lo ../glib/libglib-2.0.la -lintl  

*** Warning: This system can not link to static lib archive ../glib/libglib-2.0.la.
*** I have the capability to make that library automatically link in when
*** you link to this library.  But I can only do this if you have a
*** shared version of the library, which you do not appear to have.
libtool: link: warning: `/lib/libintl.la' seems to be moved


I've tried ./configure --enable-shared=yes (it's 'yes' by default anyway), but this 
seems to have no effect.  As to the libtool warning after the error, 
"'/lib/libintl.la' seems to be moved", this seems to be bogus since the file IS there.

My guess is that somehow libtool is not resolving libraries properly, but I'm not 
really at all familiar with how this all works under Cygwin (I know there are .a and 
.DLL mapping things going on, but that's about it.)  My version of libtool is 1.4.3.

Any help getting over this hump would be appreciated.  I loathe bothering people on 
lists unless I'm just out of options, which I feel I a (again after much research).  I 
don't see any other options under ./configure for building glib-2.2.1 that present any 
other possibilities.

Even if there is no known solution, if someone could just help me decipher the above 
errors -- what it probably means -- I can go from there most likely.

Thanks,
Chris
-
Chris Olive
[EMAIL PROTECTED]


Re: Running GIMP under Cygwin (not Win32!)??

2003-03-03 Thread Alexander Gottwald
On Mon, 3 Mar 2003, Chris Olive wrote:

> It would seem it's at least possible to run The GIMP under Cygwin/XFree.  
> Try as I might, I can't get it to work.  Specifically, I can't get some of 
> the necessary pre-requeistes to configure and make properly (glib, GTK+, 
> etc.)  Has ANYONE gotten GIMP to work under Cygwin, and if so, specifically 
> what steps did you take to get it to work?  I've done a lot of research on 
> this before asking the question, and there is bare mention of this on the web 
> -- I see NO WHERE where anyone claims that this works.  Essentially, there is 
> no SOLID information ANYWHERE on getting this to work.

I've done it, but don't remember all the steps to take.
- compile glib
- compile gtk 
- compile gimp

glib and gtk should compile without (or only with minor) problems.
Gimp is more complicated. Watch the configure log! If some libraries
are listed there as missing get them or try to disable the references.
The plugin code used a #ifdef WIN32 statement which changed a referenced
variable to a function call. This change must be disabled for cygwin.
Otherwise the plugins fail with a segfault.  
 
I don't have the sources or patches anymore and I have no ambition to 
compile gimp again. So donÄt ask me if I can help you with patches.

> I am interested only in running GIMP under Cygwin/XFree -- I am NOT 
> interested the Win32 version of GIMP!  Any help would be GREATLY appreciated.

If you are an experienced programmer or you know the gimp architecture well
then you can compile gimp for cygwin. If not, you should better stay with the
win32 version.

bye
ago
-- 
 [EMAIL PROTECTED] 
 http://www.gotti.org   ICQ: 126018723



Re: Running GIMP under Cygwin (not Win32!)??

2003-03-03 Thread Harold L Hunt II
Chris,

I can't say that I have compiled the GIMP.  Some have compiled gtk and 
glib, but there are various compromises that must be made in doing so. 
(Last I checked, these libraries could only be built for static 
linking... but that may have changed with the 2.x series).  Do a search 
of the mailing list archives (link at xfree86.cygwin.com), or Google for 
how to compile Gnome for Cygwin.  You should find information from Steve 
Obrien (If I recall his name correctly) that will be of use to you.

Good luck,

Harold

Chris Olive wrote:
I posted this question to the cygwin mailing list last week, and someone on that list referred me here and said he cross-posted for me.  I didn't hear anything from his "cross-post," so I'm trying again...

It would seem it's at least possible to run The GIMP under Cygwin/XFree.  Try as I might, I can't get it to work.  Specifically, I can't get some of the necessary pre-requeistes to configure and make properly (glib, GTK+, etc.)  Has ANYONE gotten GIMP to work under Cygwin, and if so, specifically what steps did you take to get it to work?  I've done a lot of research on this before asking the question, and there is bare mention of this on the web -- I see NO WHERE where anyone claims that this works.  Essentially, there is no SOLID information ANYWHERE on getting this to work.

I am interested only in running GIMP under Cygwin/XFree -- I am NOT interested the Win32 version of GIMP!  Any help would be GREATLY appreciated.

Thanks,
Chris
-
Chris Olive
chris[at]technologEase[dot]com



Re: xmesa header file

2003-03-03 Thread Harold L Hunt II
You need to get the XFree86-prog package, if you don't already have it.

Harold

Gerald Pekmezi wrote:
I have been trying to compile a program with gcc. The compile fails because
the program looks for xmesa.h. As far as I could tell there was no such file
anywhere in the cygwin directory. Would appreciate any input.





Re: Control the cygwin terminal with escape sequences

2003-03-03 Thread Igor Pechtchanski
Redirecting to the correct list.  Please remove  from replies.

On Mon, 3 Mar 2003, Philippe Verdret wrote:

> Hi,
>
> i want to control the cygwin terminal with escape sequences generated
> by a Perl program.
>
> I can clear the screen with the echo command:
> % echo -e "\033[H\033[J"
>
> but if i write a small inline perl program, i can't:
>
> % perl -e 'print "\033[H\033[J"'
>
> This doesn't work even if i put the screen in 'raw mode' without echo
> (with system('stty -echo raw') in the perl program).
>
> Can you help me?
>
> Philippe

And answering:

Philippe,

Works for me (using cygwin-1.3.20, bash-2.05b-8 and perl-5.6.1)...  You
might want to report your problem properly, as described in
.  Also, check that your perl one-liner
outputs exactly the right sequence (by piping it to "od -c", for example).
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Oh, boy, virtual memory! Now I'm gonna make myself a really *big* RAMdisk!
  -- /usr/games/fortune



Running GIMP under Cygwin (not Win32!)??

2003-03-03 Thread Chris Olive
I posted this question to the cygwin mailing list last week, and someone on that list 
referred me here and said he cross-posted for me.  I didn't hear anything from his 
"cross-post," so I'm trying again...

It would seem it's at least possible to run The GIMP under Cygwin/XFree.  Try as I 
might, I can't get it to work.  Specifically, I can't get some of the necessary 
pre-requeistes to configure and make properly (glib, GTK+, etc.)  Has ANYONE gotten 
GIMP to work under Cygwin, and if so, specifically what steps did you take to get it 
to work?  I've done a lot of research on this before asking the question, and there is 
bare mention of this on the web -- I see NO WHERE where anyone claims that this works. 
 Essentially, there is no SOLID information ANYWHERE on getting this to work.

I am interested only in running GIMP under Cygwin/XFree -- I am NOT interested the 
Win32 version of GIMP!  Any help would be GREATLY appreciated.

Thanks,
Chris
-
Chris Olive
chris[at]technologEase[dot]com


Re: obtaining Cygwin on CD

2003-03-03 Thread Igor Pechtchanski
Redirecting to the correct list.  Please remove  from replies.

On Mon, 3 Mar 2003, Robert E A Harvey wrote:

> Even thought I have a 128K connection, I cannot download Cygwin as there is
> a 2-hour disconnect on my service provider.
>
> I would also like to support the operation a bit.
>
> Does the organisation sell CDs of the downloadable image?
> Bob Harvey

And answering:

Bob,

If you are asking whether RedHat is offering a Cygwin CD, the answer is
"No":  and
.

However, Cygwin is not a monolithic entity.  I doubt any individual Cygwin
package will take more than 2 hours to download at 128k...  I suggest you
use the "Download from Internet" option of setup.exe to download packages
incrementally, and then use "Install from Local Directory" to install
them.  Or you could search the Cygwin mailing list archives (at
) for "clean_setup" to see the alternative
methods of package management.  There have also been posts from time to
time with instructions on creating your own distribution CD.
Igor
-- 
http://cs.nyu.edu/~pechtcha/
  |\  _,,,---,,_[EMAIL PROTECTED]
ZZZzz /,`.-'`'-.  ;-;;,_[EMAIL PROTECTED]
 |,4-  ) )-,_. ,\ (  `'-'   Igor Pechtchanski
'---''(_/--'  `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

Oh, boy, virtual memory! Now I'm gonna make myself a really *big* RAMdisk!
  -- /usr/games/fortune



xmesa header file

2003-03-03 Thread Gerald Pekmezi
I have been trying to compile a program with gcc. The compile fails because
the program looks for xmesa.h. As far as I could tell there was no such file
anywhere in the cygwin directory. Would appreciate any input.





RE: Swedish kb please help

2003-03-03 Thread Alexander Gottwald
On Mon, 3 Mar 2003, Gunnar Boström wrote:

> Xwinrl.log (if thats the log file you mean)
> (==) Using preset keyboard for "Swedish (Sweden)" (041D), type "4"
> (**) Using keyboard "Keyboard1" as primary keyboard
> (**) Option "XkbRules" "xfree86"
> (**) XKB: rules: "xfree86"
> (**) Option "XkbModel" "pc105"
> (**) XKB: model: "pc105"
> (**) Option "XkbLayout" "se"
> (**) XKB: layout: "se"
> Rules = "xfree86" Model = "pc105" Layout = "se" Variant = "(null)" Options = "(null)"
> 
> :-)

Is the layout now correct? If not then it must be a problem with the keymaps or the
layout "se" is not the one you want. I've seen some other "se_XX" layouts in the 
/etc/X11/xkb/symbols directory. Maybe one of these is the correct one.

bye
ago



Control the cygwin terminal with escape sequences

2003-03-03 Thread Philippe Verdret
Hi, 

i want to control the cygwin terminal with escape sequences generated 
by a Perl program.

I can clear the screen with the echo command:
% echo -e "\033[H\033[J"

but if i write a small inline perl program, i can't:

% perl -e 'print "\033[H\033[J"'

This doesn't work even if i put the screen in 'raw mode' without echo
(with system('stty -echo raw') in the perl program).

Can you help me?

Philippe


Re: XFree86: Removing dummy root window on Rootless/Multiwindow mode

2003-03-03 Thread John Buttery
* Daniel Daboul <[EMAIL PROTECTED]> [2003-02-26 15:31:50 +0200]:
> In case somebody ever takes steps to remove the root window, I want to
> suggest to keep it as an option. I like to de-iconify it to quickly
> hide all windows not on that display, including all window manager
> decorations. This is potentially useful to get a kind of "presentation
> mode" for applications that don't have a "full-screen" mode built
> in. One can even use xsetroot.

  I believe (and I could be wrong) that the idea is that the root window
would not be removed completely, just changed from a taskbar tab to a
system tray icon.  Again, I could be totally off base there, and I don't
want to put words in any of the devs' mouths.  :)

> In the current version the root window also covers Windows' task
> bar. Does that make the task manager the only common tool to get it
> back to the iconified state? -- Daniel

  Alt-tab or Ctrl-Esc should also work (to make some of Windows' GUI
components resurface).  Also, hitting Alt-Space, then n, will minimize
most windows.

-- 
John# 
Buttery # Why do CS majors always confuse Christmas and Halloween?
www.io.c# Because DEC(25)=OCT(31).
om/~john# 


pgp0.pgp
Description: PGP signature


obtaining Cygwin on CD

2003-03-03 Thread Robert E A Harvey
Even thought I have a 128K connection, I cannot download Cygwin as there is
a 2-hour disconnect on my service provider.

I would also like to support the operation a bit.

Does the organisation sell CDs of the downloadable image?

Regards
Bob Harvey
[EMAIL PROTECTED]