diff options
author | Francois Andriot <francois.andriot@free.fr> | 2013-08-25 15:48:26 +0200 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2013-08-25 15:48:26 +0200 |
commit | 03f7d427741642bc80d1174c6af6e826d6315e09 (patch) | |
tree | bf62c2d79b8f45e5cc2e3e6ec71ac17eb8ae6471 | |
parent | 3d89f5e5c4efb3a3e8fe05540ef4f7cf104d371f (diff) | |
download | tdebindings-03f7d427741642bc80d1174c6af6e826d6315e09.tar.gz tdebindings-03f7d427741642bc80d1174c6af6e826d6315e09.zip |
Add missing LDFLAGS causing FTBFS
-rw-r--r-- | dcopperl/Makefile.PL.in | 4 | ||||
-rw-r--r-- | smoke/tde/Makefile.am | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/dcopperl/Makefile.PL.in b/dcopperl/Makefile.PL.in index a1b7b3e2..c3ebc1e3 100644 --- a/dcopperl/Makefile.PL.in +++ b/dcopperl/Makefile.PL.in @@ -4,8 +4,8 @@ use Config; # the contents of the Makefile that is written. print "Trying to find some configuration information...\n"; -my $tde_inc = "@tde_includes@"; -my $tde_lib = "@tde_libraries@"; +my $tde_inc = "@kde_includes@"; +my $tde_lib = "@kde_libraries@"; my $qt_inc = "@qt_includes@"; my $qt_lib = "@qt_libraries@"; diff --git a/smoke/tde/Makefile.am b/smoke/tde/Makefile.am index 9c85ccc1..8038e9ff 100644 --- a/smoke/tde/Makefile.am +++ b/smoke/tde/Makefile.am @@ -9,7 +9,7 @@ EXTRA_DIST=generate.pl.in qtguess.pl.in qt_smoke.h Makefile.am libsmoketde_la_LDFLAGS = -version-info 3:2:2 -no-undefined $(all_libraries) $(GLINC) $(KDE_RPATH) # the libraries to link against. -libsmoketde_la_LIBADD = $(LIB_TDEHTML) -lkjs -lfontconfig $(LIB_KMDI) $(LIB_KNS) $(LIB_KSPELL) $(LIB_KUTILS) $(LIB_TDEPRINT) $(GLLIB) $(LIB_QT) $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_KIO) $(LIB_KPARTS) -lDCOP -ltdefx +libsmoketde_la_LIBADD = $(LIB_TDEHTML) -lkjs -lfontconfig $(LIB_KMDI) $(LIB_KNS) $(LIB_KSPELL) $(LIB_KUTILS) $(LIB_TDEPRINT) $(GLLIB) $(LIB_QT) $(LIB_TDEUI) $(LIB_TDECORE) $(LIB_KIO) $(LIB_KPARTS) -lDCOP -ltdefx -lknewstuff -ltdemdi x_sources = x_1.cpp x_2.cpp x_3.cpp x_4.cpp x_5.cpp x_6.cpp x_7.cpp \ x_8.cpp x_9.cpp x_10.cpp x_11.cpp x_12.cpp x_13.cpp x_14.cpp x_15.cpp \ |