diff options
author | Timothy Pearson <[email protected]> | 2012-06-10 01:55:05 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-06-10 01:55:05 -0500 |
commit | b2e0df6cf55f8accd86fb0a726724744857714f4 (patch) | |
tree | 79d585af09ab3e1a22393a8d80bcb23b7a26e9bc /dcopperl/Makefile.PL.in | |
parent | c87286d815eddf298686450f1ef1bf033161db84 (diff) | |
download | tdebindings-b2e0df6cf55f8accd86fb0a726724744857714f4.tar.gz tdebindings-b2e0df6cf55f8accd86fb0a726724744857714f4.zip |
Fix a number of tdebindings build issues
This partially resolves Bug 597
Thanks to Darrell Anderson for the patch!
Diffstat (limited to 'dcopperl/Makefile.PL.in')
-rw-r--r-- | dcopperl/Makefile.PL.in | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/dcopperl/Makefile.PL.in b/dcopperl/Makefile.PL.in index 3c5e0c18..a1b7b3e2 100644 --- a/dcopperl/Makefile.PL.in +++ b/dcopperl/Makefile.PL.in @@ -4,16 +4,16 @@ use Config; # the contents of the Makefile that is written. print "Trying to find some configuration information...\n"; -my $kde_inc = "@kde_includes@"; -my $kde_lib = "@kde_libraries@"; +my $tde_inc = "@tde_includes@"; +my $tde_lib = "@tde_libraries@"; my $qt_inc = "@qt_includes@"; my $qt_lib = "@qt_libraries@"; - + WriteMakefile( NAME => 'DCOP', VERSION_FROM => '@srcdir@/DCOP.pm', - INC => "-I$qt_inc -I$kde_inc", - LIBS => "-L$qt_lib -ltqt-mt -L$kde_lib -ltdecore -lDCOP", + INC => "-I$qt_inc -I$tde_inc -I/usr/include/tqt", + LIBS => "-L$qt_lib -ltqt-mt -L$tde_lib -ltdecore -lDCOP", XS => {'DCOP.xs' => 'DCOP.cpp'}, XSOPT => '-C++', CCFLAGS => '-x c++', |