source: trunk/third/perl/djgpp/config.over @ 17035

Revision 17035, 1.2 KB checked in by zacheiss, 23 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r17034, which included commits to RCS files with non-trunk default branches.
Line 
1ln='cp'
2pager='${DJDIR}/bin/less.exe'
3
4# fix extension names under DOS
5repair()
6{
7    echo "$1" | \
8    sed \
9     -e 's/^b/B/'\
10     -e 's=\([^a-z_]\)b=\1B='\
11     -e 's=data/dumper=Data/Dumper='\
12     -e 's/db_file/DB_File/'\
13     -e 's/dynaload/DynaLoader/'\
14     -e 's/errno/Errno/'\
15     -e 's/fcntl/Fcntl/'\
16     -e 's/gdbm_fil/GDBM_File/'\
17     -e 's/io/IO/'\
18     -e 's/SysV//'\
19     -e 's/sysv//'\
20     -e 's=ipc/=='\
21     -e 's=IPC/=='\
22     -e 's/ndbm_fil/NDBM_File/'\
23     -e 's/odbm_fil/ODBM_File/'\
24     -e 's/opcode/Opcode/'\
25     -e 's/posix/POSIX/'\
26     -e 's/sdbm_fil/SDBM_File/'\
27     -e 's/socket/Socket/'\
28     -e 's/thread/Thread/'\
29     -e 's/byteload/ByteLoader/'\
30     -e 's=devel/peek=Devel/Peek='\
31     -e 's=devel/dprof=Devel/DProf='\
32     -e 's=sys/sys=Sys/Sys='\
33     -e 's=sys/hos=Sys/Hos='\
34     -e 's=file/=='\
35     -e 's=File/=='\
36     -e 's=glob=='\
37     -e 's=Glob=='\
38     -e 's/storable/Storable/'
39}
40static_ext=$(repair "$static_ext")
41extensions=$(repair "$extensions")
42known_extensions=$(repair "$known_extensions")
43nonxs_ext=$(repair "$nonxs_ext")
44
45# I use Dos::UseLFN in AutoSplit.pm to override this under win0.95
46d_flexfnam='undef'
47
48# with W95 + bash the test program returns bogus result
49d_casti32='undef'
Note: See TracBrowser for help on using the repository browser.