diff options
author | Juergen Daubert <jue@jue.li> | 2011-05-18 09:50:48 +0200 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2011-05-18 09:57:31 +0200 |
commit | 8beb1bf0beb2cc849b8a220f1f0ec7aa6e3ef030 (patch) | |
tree | d2dd3d129660f02ea1c7aeb3d57245b059e9ebe3 /libtirpc | |
parent | 9bde2497847f1ae323b03c530aba681f9e1384d3 (diff) | |
download | opt-8beb1bf0beb2cc849b8a220f1f0ec7aa6e3ef030.tar.gz opt-8beb1bf0beb2cc849b8a220f1f0ec7aa6e3ef030.tar.xz |
libtirpc: remove des_crypt from library
Commit
http://git.infradead.org/users/steved/libtirpc.git/commitdiff/9bdcba10aa67ce3f67810c7aaac944a00dcfcee5
includes des_crypt.c into the libtirpc libray. Unfortunately this
breaks linking of other applications against libtirpc with a
/usr/lib/libtirpc.so: undefined reference to `_des_crypt_call
error.
Diffstat (limited to 'libtirpc')
-rw-r--r-- | libtirpc/Pkgfile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libtirpc/Pkgfile b/libtirpc/Pkgfile index c4d798e98..44964bd36 100644 --- a/libtirpc/Pkgfile +++ b/libtirpc/Pkgfile @@ -4,11 +4,18 @@ name=libtirpc version=0.2.2 -release=1 +release=2 source=(http://downloads.sourceforge.net/project/$name/$name/$version/$name-$version.tar.bz2) build() { cd $name-$version + + # revert + # http://git.infradead.org/users/steved/libtirpc.git/patch/9bdcba10aa67ce3f67810c7aaac944a00dcfcee5 + # because it breaks linking of other applications against libtirpc + sed -i 's/des_crypt\.c//' src/Makefile.am + automake + ./configure --prefix=/usr --mandir=/usr/man make make DESTDIR=$PKG install |