diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2001-03-20 17:21:57 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2001-03-20 17:21:57 +0000 |
commit | 3daeba5a5b0d0fe47be341139aa5786ce9e288e2 (patch) | |
tree | 075deb1612e8ba3eff7aee2bcf4890ef6bea141f /perl-install/c/stuff.xs.pm | |
parent | 23f9db1e651a6e2777decbfa8638d32178846bb2 (diff) | |
download | drakx-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar drakx-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar.gz drakx-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar.bz2 drakx-3daeba5a5b0d0fe47be341139aa5786ce9e288e2.tar.xz drakx-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.pm | 7 |
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) |