I downloaded a new copy of uni.zip
and (after saving the old installation)
configured and reinstalled unicon.
This time I did a 
        make -X-Configure name=openbsd #worked
then I did
        make unicon #worked
but still no uni, so I went to uni/ide and found
no Make file but new files not in the last download
- hello.icn
- howdy.icn
I copied into Makefile the following sent me by Cliff yesterday:
====================
 # this was supposed to get copied in during configuration, I'll look into it

EXE=
CFLAGS=-c -u
#
#
#
CFLAGS=-c -u
SRC= ui.icn msg_dlg.icn
OBJ= ui.u

ui$(EXE): $(OBJ) msg_dlg.u
        unicon -o ui$(EXE) $(OBJ)

ui.u: ui.icn msg_dlg.u
        unicon $(CFLAGS) ui

msg_dlg.u: msg_dlg.icn
        unicon $(CFLAGS) msg_dlg

zip: ui$(EXE)
        zip ui.zip makefile ui$(EXE) $(SRC)

===========================

/usr/src/unicon/uni/ide}make ui
"Makefile", line 13: Need an operator
"Makefile", line 16: Need an operator
"Makefile", line 19: Need an operator
"Makefile", line 21: Need an operator
Fatal errors encountered -- cannot continue
================
I then manually ran
unicon -c -u ui ui.icn msg_dlg.icn and it compiled and linked successfully
so it would seem there is a problem with the makefile.

ui runs and brings up an X window. The only problem is that it turns
the rest of the screen into only black and white! I'm running kde 2
and Konqueror 2.2.


On Thu 23 Jan 03 12:53, Clint Jeffery wrote:
> [Dave Feustel requests a copy ui.icn]
>
> I'll send Dave my copy in a separate message.  A couple of extra comments:
>
> * ui.icn is an Ivib application, so its last line is a gigantic comment
>   that contains an xencode-style set of Ivib GUI object information.
>   This may look like garbage if you aren't expecting it.
>
> * If the compiler "hangs" during a compilation, it is generally never the
> source file's fault!  It is an indicator of a bad compiler binary build,
> or a bad set of class/inheritance database files, or a compiler or VM bug!
>
> Clint


-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com
_______________________________________________
Unicon-group mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/unicon-group

Reply via email to