diff options
author | Simon Gloßner <viper@hometux.de> | 2006-03-20 14:27:53 +0000 |
---|---|---|
committer | Simon Gloßner <viper@hometux.de> | 2006-03-20 14:27:53 +0000 |
commit | 4f876aac0b01c6b7006d47da3565db0d280dce3f (patch) | |
tree | 3b23283ed855fd25ed97042d4750c5776349a0e0 /cyrus-sasl/Pkgfile | |
parent | d5daca994cf793c8b4d71cf31c59b418be89ac7f (diff) | |
download | opt-4f876aac0b01c6b7006d47da3565db0d280dce3f.tar.gz opt-4f876aac0b01c6b7006d47da3565db0d280dce3f.tar.xz |
Added a necessary patch to compile cyrus-sasl with gcc4.
Splitted the big patch into two small ones.
Diffstat (limited to 'cyrus-sasl/Pkgfile')
-rw-r--r-- | cyrus-sasl/Pkgfile | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/cyrus-sasl/Pkgfile b/cyrus-sasl/Pkgfile index 756645e49..ad9cb7ce6 100644 --- a/cyrus-sasl/Pkgfile +++ b/cyrus-sasl/Pkgfile @@ -6,15 +6,22 @@ name=cyrus-sasl version=2.1.21 -release=2 +release=3 source=(http://ftp.andrew.cmu.edu/pub/cyrus-mail/$name-$version.tar.gz \ - $name-$version.patch \ + $name-$version-crypt.patch \ + $name-$version-gcc4.patch \ + $name-$version-plugin_path.patch \ saslauthd) build(){ cd $name-$version - patch -p0 < $SRC/$name-$version.patch + # fix the crypt function + patch -p0 < $SRC/$name-$version-crypt.patch + # set the plugin path to '/etc/sasl/apps' + patch -p0 < $SRC/$name-$version-plugin_path.patch + # necessary to compile cyrus-sasl with gcc4 + patch -p0 < $SRC/$name-$version-gcc4.patch ./configure \ --prefix=/usr \ |