>Hi,
>
>I have a problem when I am trying to install fvwm-2.0.40 on my PC
>running
>Debian 0.93R6. I modified configure.h to my liking (just the variables
>telling where to install various things) and then I did what is
>said in the INSTALL file to build and install fvwm:
[snip]
>style.o virtual.o windows.o -lXpm -lXExExt -lXext -lX11
>.../libs/libfvwm2.a
>GetFont.o(.text+0x8f): undefined reference to `XLoadQueryFont'
>GetFont.o(.text+0xb3): undefined reference to `XLoadQueryFont'
>make[1]: *** [fvwm2] Error 1
>....
>#
>
>Can somebody help me and tell why `XLoadQueryFont' is undefined and
>what I should do to fix the problem? Please send me email
>directly and I will summarize the answers...
I also ran into this problem while compiling fvwm for OS/2. This is
due to the fact that the X libraries are being linked before the
fvwm.a lib, which contains a reference to the X libs. My solution was
simply to change this line in makefile.h:
LOCAL_LIBRARIES = XPM_LIBRARIES $(ADD_LIB) $(XLIB) \
$(FVWM_SRCDIR)/libs/$(LIB).a
to:
LOCAL_LIBRARIES = XPM_LIBRARIES $(ADD_LIB)
$(FVWM_SRCDIR)/libs/$(LIB).a \ $(XLIB)
Maybe this should be changed permanently in makefile.h?
_____________________________
Sebastien Marineau
Mechanical Engineering
University of Ottawa
marineau_at_genie.uottawa.ca
marineau_at_magi.com
--
To unsubscribe from the list, send "unsubscribe fvwm" in the body of a
message to majordomo_at_hpc.uh.edu.
To report problems, send mail to fvwm-owner_at_hpc.uh.edu.
Received on Sat Feb 10 1996 - 16:22:18 GMT