perl5.000 patch.0m: [various fixes, hint file updates and documentation]
[p5sagit/p5-mst-13.2.git] / U / Myinit.U
CommitLineData
5f51ce50 1?RCS: $Id: Myinit.U,v 3.0 1993/08/18 12:05:07 ram Exp $
2?RCS:
3?RCS: Copyright (c) 1991-1993, Raphael Manfredi
4?RCS:
5?RCS: You may redistribute only under the terms of the Artistic Licence,
6?RCS: as specified in the README file that comes with the distribution.
7?RCS: You may reuse parts of this distribution only within the terms of
8?RCS: that same Artistic Licence; a copy of which may be found at the root
9?RCS: of the source tree for dist 3.0.
10?RCS:
11?RCS: $Log: Myinit.U,v $
12?RCS: Revision 3.0 1993/08/18 12:05:07 ram
13?RCS: Baseline for dist 3.0 netwide release.
14?RCS:
15?X:
16?X: If you want to initialize any default values, copy this unit to your
17?X: personal U directory and add the assignments to the end. This file
18?X: is included after variables are initialized but before any old
19?X: config.sh file is read in.
20?X:
21?MAKE:Myinit libswanted : Init
22?MAKE: -pick add $@ %<
23?S:libswanted:
24?S: This variable holds a list of all the libraries we want to
25?S: search. The order is chosen to pick up the c library
26?S: ahead of ucb or bsd libraries for SVR4.
27?S:.
1aef975c 28?LINT:extern usevfork glibpth d_portable
29?LINT:change usevfork glibpth d_portable
5f51ce50 30: List of libraries we want.
31?X: Put crypt here, even though I should really fix d_crypt.U to look
32?X: for it correctly, including possible shared library versions.
33libswanted='net socket inet nsl nm ndbm gdbm dbm db malloc dl'
34libswanted="$libswanted dld ld sun m c cposix posix ndir dir crypt"
35libswanted="$libswanted ucb bsd BSD PW x"
1aef975c 36: We probably want to search /usr/shlib before most other libraries.
94b6baf5 37: This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
5f51ce50 38glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
39glibpth="/usr/shlib $glibpth"
40: Do not use vfork unless overridden by a hint file.
41usevfork=false
1aef975c 42: We might as well always be portable. It makes no difference for
43: perl5, and makes people happy.
44d_portable=define
5f51ce50 45