summaryrefslogtreecommitdiffstats
path: root/perl-install/Newt
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2000-01-01 17:09:26 +0000
committerPascal Rigaux <pixel@mandriva.com>2000-01-01 17:09:26 +0000
commitd004436dc848800c9d65b90e39c39836c4d44cdf (patch)
treeb37bdcac9dad762a2b692076522785a83533c5f6 /perl-install/Newt
parent1dc94110fc837dbe6cf06806f60c207ab1b64e83 (diff)
downloaddrakx-backup-do-not-use-d004436dc848800c9d65b90e39c39836c4d44cdf.tar
drakx-backup-do-not-use-d004436dc848800c9d65b90e39c39836c4d44cdf.tar.gz
drakx-backup-do-not-use-d004436dc848800c9d65b90e39c39836c4d44cdf.tar.bz2
drakx-backup-do-not-use-d004436dc848800c9d65b90e39c39836c4d44cdf.tar.xz
drakx-backup-do-not-use-d004436dc848800c9d65b90e39c39836c4d44cdf.zip
no_comment
Diffstat (limited to 'perl-install/Newt')
-rw-r--r--perl-install/Newt/Makefile2
-rw-r--r--perl-install/Newt/Newt.xs5
2 files changed, 3 insertions, 4 deletions
diff --git a/perl-install/Newt/Makefile b/perl-install/Newt/Makefile
index 03bb3be91..b366e5974 100644
--- a/perl-install/Newt/Makefile
+++ b/perl-install/Newt/Makefile
@@ -2,7 +2,7 @@
Newt: %: %.xs
test -e Makefile_c || perl Makefile.PL
- $(MAKE) -f Makefile_c
+ $(MAKE) -f Makefile_c LD_RUN_PATH=
rm -f ../auto/Newt ; ln -s ../Newt/blib/arch/auto/Newt ../auto
clean:
diff --git a/perl-install/Newt/Newt.xs b/perl-install/Newt/Newt.xs
index bd0040d9e..9423c85c0 100644
--- a/perl-install/Newt/Newt.xs
+++ b/perl-install/Newt/Newt.xs
@@ -180,15 +180,14 @@ newtButton(left,top,text)
const char * text;
Newt::Component
-newtCheckbox(left,top,text,defValue,seq,result)
+newtCheckbox(left,top,text,defValue,seq)
int left;
int top;
const char * text;
char *defValue;
const char * seq;
- int *result;
CODE:
- RETVAL = newtCheckbox(left, top, text, defValue[0], seq, (char*)result);
+ RETVAL = newtCheckbox(left, top, text, defValue[0], seq, NULL);
OUTPUT:
RETVAL