- Timestamp:
- Apr 10, 2007, 5:20:09 AM (18 years ago)
- Location:
- trunk/essentials/sys-devel/autoconf/bin
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/sys-devel/autoconf/bin/autoheader.in
r3092 r3095 32 32 { 33 33 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 34 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 34 35 unshift @INC, "$datadir"; 35 36 … … 54 55 # Lib files. 55 56 my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@'; 57 $autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 56 58 local $config_h; 57 59 my $config_h_in; -
trunk/essentials/sys-devel/autoconf/bin/autom4te.in
r3092 r3095 28 28 { 29 29 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 30 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 30 31 unshift @INC, $datadir; 31 32 … … 48 49 # Data directory. 49 50 my $datadir = $ENV{'AC_MACRODIR'} || '@datadir@'; 51 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 50 52 51 53 # $LANGUAGE{LANGUAGE} -- Automatic options for LANGUAGE. … … 89 91 # $M4. 90 92 my $m4 = $ENV{"M4"} || '@M4@'; 93 $m4 =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 91 94 # Some non-GNU m4's don't reject the --help option, so give them /dev/null. 92 95 fatal "need GNU m4 1.4 or later: $m4" -
trunk/essentials/sys-devel/autoconf/bin/autoreconf.in
r3092 r3095 31 31 { 32 32 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 33 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 33 34 unshift @INC, $datadir; 34 35 … … 108 109 # Lib files. 109 110 my $autoconf = $ENV{'AUTOCONF'} || '@bindir@/@autoconf-name@'; 111 $autoconf =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 110 112 my $autoheader = $ENV{'AUTOHEADER'} || '@bindir@/@autoheader-name@'; 113 $autoheader =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 111 114 my $automake = $ENV{'AUTOMAKE'} || 'automake'; 115 $automake =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 112 116 my $aclocal = $ENV{'ACLOCAL'} || 'aclocal'; 117 $aclocal =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 113 118 my $libtoolize = $ENV{'LIBTOOLIZE'} || 'libtoolize'; 119 $libtoolize =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 114 120 my $autopoint = $ENV{'AUTOPOINT'} || 'autopoint'; 121 $autopoint =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 115 122 116 123 # --install -- as --add-missing in other tools. -
trunk/essentials/sys-devel/autoconf/bin/autoscan.in
r3092 r3095 30 30 { 31 31 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 32 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 32 33 unshift @INC, $datadir; 33 34 … … 96 97 # Autoconf and lib files. 97 98 my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@'; 99 $autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 98 100 my $autoconf = "$autom4te --language=autoconf"; 99 101 my @prepend_include; 100 my @include = ('@datadir@'); 102 my $first_include = '@datadir@'; 103 $first_include =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 104 my @include = ("$first_include"); 101 105 102 106 # $help -
trunk/essentials/sys-devel/autoconf/bin/autoupdate.in
r3092 r3095 31 31 { 32 32 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 33 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 33 34 unshift @INC, $datadir; 34 35 … … 51 52 # Lib files. 52 53 my $autom4te = $ENV{'AUTOM4TE'} || '@bindir@/@autom4te-name@'; 54 $autom4te =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 53 55 my $autoconf = "$autom4te --language=autoconf"; 54 56 # We need to find m4sugar. 55 57 my @prepend_include; 56 my @include = ('@datadir@'); 58 my $first_include = '@datadir@'; 59 $first_include =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 60 my @include = ("$first_include"); 57 61 my $force = 0; 58 62 # m4. 59 63 my $m4 = $ENV{"M4"} || '@M4@'; 64 $m4 =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 60 65 61 66 -
trunk/essentials/sys-devel/autoconf/bin/ifnames.in
r3092 r3095 35 35 { 36 36 my $datadir = $ENV{'autom4te_perllibdir'} || '@datadir@'; 37 $datadir =~ s/\/\@unixroot/$ENV{'UNIXROOT'}/; # The EMX built perl doesn't know @unixroot. 37 38 unshift @INC, $datadir; 38 39
Note:
See TracChangeset
for help on using the changeset viewer.