summaryrefslogtreecommitdiffstats
path: root/perl-install/c/stuff.xs.pm
diff options
context:
space:
mode:
authorPascal Rigaux <pixel@mandriva.com>2001-03-20 17:21:57 +0000
committerPascal Rigaux <pixel@mandriva.com>2001-03-20 17:21:57 +0000
commit3daeba5a5b0d0fe47be341139aa5786ce9e288e2 (patch)
tree075deb1612e8ba3eff7aee2bcf4890ef6bea141f /perl-install/c/stuff.xs.pm
parent23f9db1e651a6e2777decbfa8638d32178846bb2 (diff)
downloaddrakx-backup-do-not-use-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar
drakx-backup-do-not-use-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar.gz
drakx-backup-do-not-use-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar.bz2
drakx-backup-do-not-use-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar.xz
drakx-backup-do-not-use-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.zip
fix pcmcia functions only on x86
Diffstat (limited to 'perl-install/c/stuff.xs.pm')
-rw-r--r--perl-install/c/stuff.xs.pm7
1 files changed, 6 insertions, 1 deletions
diff --git a/perl-install/c/stuff.xs.pm b/perl-install/c/stuff.xs.pm
index bcc14f24a..7a3bc6c2d 100644
--- a/perl-install/c/stuff.xs.pm
+++ b/perl-install/c/stuff.xs.pm
@@ -1,3 +1,5 @@
+use Config;
+
print '
#include "EXTERN.h"
#include "perl.h"
@@ -106,9 +108,12 @@ Xtest(display)
RETVAL
';
-$ENV{C_DRAKX} and print '
+$ENV{C_DRAKX} && $Config{archname} =~ /i.86/ and print '
char *
pcmcia_probe()
+';
+
+$ENV{C_DRAKX} and print '
void
setMouseLive(display, type, emulate3buttons)