forked from Perl/perl5
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Perl#78 from xenu/xenu/setenv
- Loading branch information
Showing
1 changed file
with
24 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
?RCS: $Id$ | ||
?RCS: | ||
?RCS: Copyright (c) 2005 H.Merijn Brand | ||
?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: | ||
?MAKE:d_setenv: Inlibc | ||
?MAKE: -pick add $@ %< | ||
?S:d_setenv: | ||
?S: This variable conditionally defines the HAS_SETENV symbol, which | ||
?S: indicates to the C program that the setenv routine is available. | ||
?S:. | ||
?C:HAS_SETENV: | ||
?C: This symbol, if defined, indicates that the setenv routine is | ||
?C: available for use. | ||
?C:. | ||
?H:#$d_setenv HAS_SETENV /**/ | ||
?H:. | ||
?LINT:set d_setenv | ||
: see if setenv exists | ||
set setenv d_setenv | ||
eval $inlibc | ||
|