Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 194946 - dev-libs/openssl - add support for camellia ciphersuites
Summary: dev-libs/openssl - add support for camellia ciphersuites
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All All
: High enhancement (vote)
Assignee: Gentoo's Team for Core System packages
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-10-07 00:09 UTC by J
Modified: 2007-10-07 16:59 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description J 2007-10-07 00:09:09 UTC
camellia ciphersuites could be enabled in 0.9.8e simply by adding enable-camellia... something like:

--- openssl-0.9.8e-r3.ebuild    2007-10-06 13:33:37.240087418 +0000
+++ openssl-0.9.8e-r4.ebuild    2007-10-06 13:35:10.750349748 +0000
@@ -73,11 +73,11 @@
    # IDEA:  5,214,703 25/05/2010
    # RC5:   5,724,428 03/03/2015
    # EC:    ????????? ??/??/2015
-   local confopts=""
+   local confopts="enable-mdc2 enable-camellia"
    if use bindist ; then
-       confopts="no-idea no-rc5 no-ec"
+       confopts="$confopts no-idea no-rc5 no-ec"
    else
-       confopts="enable-idea enable-rc5 enable-mdc2 enable-ec"
+       confopts="$confopts enable-idea enable-rc5 enable-ec"
    fi
    use zlib && confopts="${confopts} zlib-dynamic"
    use sse2 || confopts="${confopts} no-sse2"


Reproducible: Always
Comment 1 SpanKY gentoo-dev 2007-10-07 16:59:28 UTC
added to 0.9.8e-r4, thanks for the suggestion !