diff options
author | Michele Calgaro <[email protected]> | 2016-03-16 11:32:41 +0100 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2016-03-16 11:32:41 +0100 |
commit | d8f34393595f0ce73586f89ab63e62aa11199493 (patch) | |
tree | 3f6f686378ab6a9c3e21f0adcc0ad375168bf1bd /src/Makefile.am | |
parent | 5fb3200dbf531059c194b96ec2cea8376ca941df (diff) | |
download | kerberostray-d8f34393595f0ce73586f89ab63e62aa11199493.tar.gz kerberostray-d8f34393595f0ce73586f89ab63e62aa11199493.zip |
Fix krb5 library detection. This resolves FTBFS with heimdal-krb5.
Based on similar patch for libraries/libtdeldap from Slavek Banko.
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/Makefile.am')
-rw-r--r-- | src/Makefile.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 3503e97..6009d77 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -1,11 +1,11 @@ -INCLUDES= $(all_includes) $(KDE_INCLUDES)/tde +INCLUDES= $(all_includes) $(KDE_INCLUDES)/tde $(KRB5_CFLAGS) bin_PROGRAMS = kerberostray kerberostray_SOURCES = main.cpp toplevel.cpp configdlgbase.ui configdlg.cpp kerberostray_METASOURCES = AUTO -kerberostray_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -ltdeldap +kerberostray_LDFLAGS = $(all_libraries) $(KDE_RPATH) $(LIB_QT) -lDCOP $(LIB_TDECORE) $(LIB_TDEUI) -ltdefx $(LIB_TDEIO) -ltdetexteditor -ltdeldap $(KRB5_LIBS) # LIB_TDEIO needed for KNotifyDialog kerberostray_LDADD = $(LIB_TDEUI) $(LIB_TDEIO) |