From 53134ffa47624120b3ebd96da6316106bdfeeedb Mon Sep 17 00:00:00 2001 From: Guillaume Cottenceau Date: Fri, 13 Dec 2002 14:38:32 +0000 Subject: iconv_ is needed all the times, not only in drakx --- perl-install/c/stuff.xs.pl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'perl-install/c/stuff.xs.pl') diff --git a/perl-install/c/stuff.xs.pl b/perl-install/c/stuff.xs.pl index 99bd4fd5f..6813ef2e3 100644 --- a/perl-install/c/stuff.xs.pl +++ b/perl-install/c/stuff.xs.pl @@ -102,6 +102,10 @@ void initIMPS2() { void log_message(const char * s, ...) {} +'; + +print ' + SV * iconv_(char* s, char* from_charset, char* to_charset) { iconv_t cd = iconv_open(to_charset, from_charset); char* retval = s; @@ -121,10 +125,6 @@ SV * iconv_(char* s, char* from_charset, char* to_charset) { return newSVpv(retval, 0); } -'; - -print ' - MODULE = c::stuff PACKAGE = c::stuff '; -- cgit v1.2.1