diff options
author | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-10-20 11:01:46 +0000 |
---|---|---|
committer | Diego Elio Pettenò <flameeyes@gentoo.org> | 2005-10-20 11:01:46 +0000 |
commit | c92a9b1b4072f5bfe24a7b10601cd4fa994fecc2 (patch) | |
tree | 3d56fbef3fc2fded2205928476c3cf98dc15eeb0 /kde-base/kcheckpass/files | |
parent | Punted ftpusers as ftpbase supplies it (diff) | |
download | historical-c92a9b1b4072f5bfe24a7b10601cd4fa994fecc2.tar.gz historical-c92a9b1b4072f5bfe24a7b10601cd4fa994fecc2.tar.bz2 historical-c92a9b1b4072f5bfe24a7b10601cd4fa994fecc2.zip |
Added patch to compile kcheckpass fine on PIC architectures when using --enable-final. See bug #107218.
Package-Manager: portage-2.0.53_rc5
Diffstat (limited to 'kde-base/kcheckpass/files')
-rw-r--r-- | kde-base/kcheckpass/files/kcheckpass-pie-final.patch | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/kde-base/kcheckpass/files/kcheckpass-pie-final.patch b/kde-base/kcheckpass/files/kcheckpass-pie-final.patch new file mode 100644 index 000000000000..3ae34a4d6724 --- /dev/null +++ b/kde-base/kcheckpass/files/kcheckpass-pie-final.patch @@ -0,0 +1,20 @@ +Index: Makefile.am +=================================================================== +--- kcheckpass/Makefile.am (revision 472230) ++++ kcheckpass/Makefile.am (revision 472231) +@@ -2,14 +2,13 @@ + ## written by Christian Esken + ## + +-INCLUDES= $(all_includes) ++INCLUDES= $(KDE_USE_FPIE) $(all_includes) + + bin_PROGRAMS = kcheckpass + + kcheckpass_SOURCES = kcheckpass.c \ + checkpass_etcpasswd.c checkpass_pam.c checkpass_shadow.c \ + checkpass_osfc2passwd.c checkpass_aix.c +-kcheckpass_CFLAGS = $(KDE_USE_FPIE) + kcheckpass_LDADD = -lkdefakes $(PASSWDLIBS) $(LIBSOCKET) + kcheckpass_LDFLAGS = $(KDE_USE_PIE) $(all_libraries) + |