Hi there, has anyone built bbconf on freebsd? I'm no expert on the GNU build tools, but it looks to me like the bbconf_LDADD lines in bbconf-1.2/bbconf/(Makefile.am|Makefile.in) are hosed: hardcoding those libs in beats the purpose of configure. FreeBSD has dlopen() in libc, and qt-2.3.1 installed libqt2.so, not libqt.so. This together lead to breakage with "cannot find -ldl", although configure correctly found that -ldl is not needed for dlopen() to work. Anyone knows how to fix this correctly?
./bbconf/Makefile.am:bbconf_LDADD = -ldl -lqt -lXext -lX11 $(LIBSOCKET) ./bbconf/Makefile.in:bbconf_LDADD = -ldl -lqt -lXext -lX11 $(LIBSOCKET) -- FreeBSD 4.4-STABLE 1:09PM up 26 days, 23:52, 9 users, load averages: 0.05, 0.05, 0.05