mirror of
git://git.code.sf.net/p/cdesktopenv/code
synced 2025-02-13 19:52:20 +00:00
tt: fix link order for tt_type_comp and dbck
These caused link errors on Gentoo, maybe other systems. Patch by Peter G.
This commit is contained in:
parent
137bbf383e
commit
316ab9c9db
2 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@ include ../../tooltalk.inc
|
|||
|
||||
bin_PROGRAMS = ttdbck
|
||||
|
||||
ttdbck_LDADD = @LIBTT@ ../../slib/libstt.a ../../mini_isam/libisam.a \
|
||||
ttdbck_LDADD = ../../slib/libstt.a ../../mini_isam/libisam.a @LIBTT@ \
|
||||
$(XTOOLLIB)
|
||||
|
||||
ttdbck_CXXFLAGS = -I../../slib -I../../lib -I../../mini_isam \
|
||||
|
|
|
@ -17,7 +17,7 @@ tt_type_comp_CXXFLAGS = -I../../lib -I../../slib \
|
|||
tt_type_comp_SOURCES = mp_type_comp.C mp_types_table.C \
|
||||
frozen.mp_types_lex.C frozen.mp_types_gram.C
|
||||
|
||||
tt_type_comp_LDADD = $(LIBTT) ../../slib/libstt.a $(XTOOLLIB)
|
||||
tt_type_comp_LDADD = ../../slib/libstt.a $(LIBTT) $(XTOOLLIB)
|
||||
|
||||
if SOLARIS
|
||||
tt_type_comp_LDADD += $(XTOOLLIB) -ldl -lintl -lsocket -lnsl
|
||||
|
|
Loading…
Reference in a new issue