With this patch, CDE (autotools) builds and runs on fbsd 12 now. fbsd11 should work too, but not yet tested. You must use gmake - ie: ./configure MAKE=gmake gmake Seems all of the BSD's will need to use gmake for now.
24 lines
427 B
Makefile
24 lines
427 B
Makefile
MAINTAINERCLEANFILES = Makefile.in
|
|
|
|
include ../../tooltalk.inc
|
|
|
|
bin_PROGRAMS = ttsession
|
|
|
|
ttsession_CXXFLAGS = -I../../slib -I../../lib $(TT_VERSION_DEFINE)
|
|
|
|
ttsession_LDADD = @LIBTT@ $(X_LIBS) ../../slib/libstt.a
|
|
|
|
if LINUX
|
|
ttsession_LDADD += $(TIRPCLIB) $(XTOOLLIB)
|
|
endif
|
|
|
|
if SOLARIS
|
|
ttsession_LDADD += $(XTOOLLIB) -ldl -lintl -lsocket -lnsl
|
|
endif
|
|
|
|
if BSD
|
|
ttsession_LDADD += $(XTOOLLIB)
|
|
endif
|
|
|
|
ttsession_SOURCES = mp_server.C
|