> ConnSvr.c:(.text+0xba9): undefined reference to « XauDisposeAuth » > ConnSvr.c:(.text+0xd1b): undefined reference to « XauGetBestAuthByAddr » > collect2: ld returned 1 exit status > dmake: Error code 1, while making > '../unxlngi6.pro/lib/libvclplug_gen680li.so'
Two errors there. The second one is related to using modular Xorg, and this fixes it: --- OOB680_m5-orig/vcl/util/makefile.mk 2005-12-19 11:21:56.000000000 -0600 +++ OOB680_m5/vcl/util/makefile.mk 2006-03-26 22:28:25.000000000 -0600 @@ -318,7 +318,7 @@ SHL2STDLIBS+=$(LIBSN_LIBS) .ENDIF -SHL2STDLIBS += -lXext -lSM -lICE -lX11 +SHL2STDLIBS += -lXext -lSM -lICE -lX11 -lXau .IF "$(OS)"!="MACOSX" && "$(OS)"!="FREEBSD" # needed by salprnpsp.cxx SHL2STDLIBS+= -ldl As far as the Xinerama, you should be able to hack around it in the same file. It's wrapped in an ifdef roughly about 40 or 50 lines above this one. HTH -- DJ Lucas -- http://linuxfromscratch.org/mailman/listinfo/blfs-support FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
