diff options
author | Timothy Pearson <[email protected]> | 2012-06-01 12:55:26 -0500 |
---|---|---|
committer | Timothy Pearson <[email protected]> | 2012-06-01 12:55:26 -0500 |
commit | 732baa0f27c3ee4bc641491d602f849fda2d687c (patch) | |
tree | ebca48ef9499c977675c1c033a43a9c823212b4b | |
parent | fe3bd0c6c71a3b8151611dacfe09e18e89d0eb6d (diff) | |
download | libtdeldap-732baa0f27c3ee4bc641491d602f849fda2d687c.tar.gz libtdeldap-732baa0f27c3ee4bc641491d602f849fda2d687c.zip |
Install header files
-rw-r--r-- | src/Makefile.am | 2 | ||||
-rw-r--r-- | src/ldappasswddlg.cpp | 1 | ||||
-rw-r--r-- | src/ldappasswddlg.h | 2 |
3 files changed, 4 insertions, 1 deletions
diff --git a/src/Makefile.am b/src/Makefile.am index 75816dd..9b3a2d5 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -4,6 +4,8 @@ METASOURCES = AUTO # Create a shared library file lib_LTLIBRARIES = libtdeldap.la +include_HEADERS = libtdeldap.h ldappasswddlg.h + libtdeldap_la_SOURCES = libtdeldap.cpp ldaplogindlgbase.ui ldaplogindlg.cpp ldappasswddlg.cpp libtdeldap_la_LIBADD = -lkio $(LIB_TDEUI) -lldap libtdeldap_la_LDFLAGS = -avoid-version -module -no-undefined \ diff --git a/src/ldappasswddlg.cpp b/src/ldappasswddlg.cpp index 054f9dc..8246d18 100644 --- a/src/ldappasswddlg.cpp +++ b/src/ldappasswddlg.cpp @@ -29,6 +29,7 @@ #include <tqiconset.h> #include <tqlabel.h> +#include "ldaplogindlg.h" #include "ldappasswddlg.h" LDAPPasswordDialog::LDAPPasswordDialog(TQWidget* parent, const char* name) diff --git a/src/ldappasswddlg.h b/src/ldappasswddlg.h index 2c3c060..2a653d6 100644 --- a/src/ldappasswddlg.h +++ b/src/ldappasswddlg.h @@ -24,7 +24,7 @@ #include <kdialogbase.h> #include <kcombobox.h> -#include "ldaplogindlg.h" +class LDAPLogin; class LDAPPasswordDialog : public KDialogBase { |