Michel Briand wrote:
HelloX-full.o: HelloX-full.c
    $(CC) -c -g -I/usr/include/freetype2 -I/usr/X11R6/include $< -o $@

HelloX-full: HelloX-full.o
    $(CC) -g $< -o $@ -L/usr/X11R6/lib -lX11 -lXft

should do the work ...
then you'll probably test this program under e16 ...

OK, did

$ gcc -o HelloX-full -g -I/usr/include/freetype2 -I/usr/X11R6/include
HelloX-full.c -L /usr/X11R6/lib -lXft -lX11
$ ./HelloX-full

- No window, it seems.

Using eesh it is seen that it has positioned itself at (126672, 126672).

If you fix the size hints, you may get a result you like better.

--- HelloX-full-org.c   2003-08-23 00:02:22.000000000 +0200
+++ HelloX-full.c       2003-08-23 00:15:01.000000000 +0200
@@ -142,7 +142,7 @@
        exit(EXIT_FAILURE);
     }

-    size_hints->flags       = PPosition | PSize | PMinSize;
+    size_hints->flags       = PMinSize;
     size_hints->min_width   = 200;
     size_hints->min_height  = 100;

/Kim



-------------------------------------------------------
This SF.net email is sponsored by: VM Ware
With VMware you can run multiple operating systems on a single machine.
WITHOUT REBOOTING! Mix Linux / Windows / Novell virtual machines
at the same time. Free trial click here:http://www.vmware.com/wl/offer/358/0
_______________________________________________
enlightenment-devel mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/enlightenment-devel

Reply via email to