aboutsummaryrefslogtreecommitdiffstats
path: root/perlapi.req
diff options
context:
space:
mode:
Diffstat (limited to 'perlapi.req')
-rwxr-xr-xperlapi.req15
1 files changed, 0 insertions, 15 deletions
diff --git a/perlapi.req b/perlapi.req
deleted file mode 100755
index 507f74b..0000000
--- a/perlapi.req
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/sh
-# --- If libperl.so exists and if XS modules are found, depend on perlapi-<version> and libperl.so
-while read instfile ; do
- if perl -V:useshrplib | grep -q true ; then
- if echo $instfile | grep -q `perl -MConfig -e 'print $Config{archname}'` ; then
- version=`perl -MConfig -e 'print $Config{version}'`
- echo perlapi-$version
-
- f=`perl -MConfig -e 'print $Config{archlib}'`/CORE/libperl.so
- lib64=`if file -L $f 2>/dev/null | \
- grep "ELF 64-bit" >/dev/null; then echo "()(64bit)"; fi`
- echo libperl.so$lib64
- fi
- fi
-done