1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
?RCS: $Id: Myinit.U,v 3.0 1993/08/18 12:05:07 ram Exp $
?RCS:
?RCS: Copyright (c) 1991-1993, Raphael Manfredi
?RCS:
?RCS: This file is included with or a derivative work of a file included
?RCS: with the metaconfig program of Raphael Manfredi's "dist" distribution.
?RCS: In accordance with clause 7 of dist's modified Artistic License:
?RCS:
?RCS: You may distribute under the terms of either the GNU General Public
?RCS: License or the Artistic License, as specified in the README file.
?RCS:
?RCS: $Log: Myinit.U,v $
?RCS: Revision 3.0 1993/08/18 12:05:07 ram
?RCS: Baseline for dist 3.0 netwide release.
?RCS:
?X:
?X: If you want to initialize any default values, copy this unit to your
?X: personal U directory and add the assignments to the end. This file
?X: is included after variables are initialized but before any old
?X: config.sh file is read in and before any Configure switch processing.
?X:
?MAKE:Myinit libswanted: Init
?MAKE: -pick add $@ %<
?S:libswanted:
?S: This variable holds a list of all the libraries we want to
?S: search. The order is chosen to pick up the c library
?S: ahead of ucb or bsd libraries for SVR4.
?S:.
?LINT:extern usevfork glibpth
?LINT:change usevfork glibpth
: List of libraries we want.
?X: Put crypt here, even though I should really fix d_crypt.U to look
?X: for it correctly, including possible shared library versions.
: If anyone needs extra -lxxx, put those in a hint file.
libswanted='gdbm gdbm_compat db dl m c crypt'
: We probably want to search /usr/shlib before most other libraries.
: This is only used by the lib/ExtUtils/MakeMaker.pm routine extliblist.
glibpth=`echo " $glibpth " | sed -e 's! /usr/shlib ! !'`
glibpth="/usr/shlib $glibpth"
: Do not use vfork unless overridden by a hint file.
usevfork=false
|