package Cpanel::Easy::PHP5::Iconv;

# cpanel - Cpanel/Easy/PHP5/Iconv.pm              Copyright(c) 2011 cPanel, Inc.
#                                                           All rights Reserved.
# copyright@cpanel.net                                         http://cpanel.net
# This code is subject to the cPanel license. Unauthorized copying is prohibited

our $easyconfig = {
    'name'    => 'Iconv',
    'reverse' => 1,
    'note'    => 'Support iconv character set conversion facility',
    'url'     => 'http://www.php.net/manual/en/ref.iconv.php',
    'step'    => {
        '0' => {
            'name'    => 'to config options',
            'command' => sub {
                my ($self) = @_;
                $self->add_to_configure( { '--without-iconv' => '' } );
                return ( 1, 'Ok' );
            },

        },
    },
};

1;
