<feed xmlns='http://www.w3.org/2005/Atom'>
<title>src/gnu/usr.bin/perl/usub, branch main</title>
<subtitle>FreeBSD source tree</subtitle>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/'/>
<entry>
<title>Old Perl is leaving us. Goodbye, faithful friend.</title>
<updated>1998-09-09T06:49:33+00:00</updated>
<author>
<name>Mark Murray</name>
<email>markm@FreeBSD.org</email>
</author>
<published>1998-09-09T06:49:33+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=bae74118897c3643917e499f2450a4c164c9c941'/>
<id>bae74118897c3643917e499f2450a4c164c9c941</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Use the installed version of perl for `make depend'.  It is now</title>
<updated>1998-07-07T23:32:39+00:00</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1998-07-07T23:32:39+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f7bebafb62fd00ae4387ccf926accf8545d2c0b3'/>
<id>f7bebafb62fd00ae4387ccf926accf8545d2c0b3</id>
<content type='text'>
bootstrapped by `make world'.  The version just built in ".."
normally won't work if the target system is not binary compatible.
The bootstrapped version has a better chance of working.

This makes the fixes and bugs in the previous 3 commits irrelevant.
Rev.1.11 was just wrong and rev.1.10 became unnecessary when
perl/perl was added to build-tools.  Don't expect to build perl/usub
without using `make world' or equivalent if you don't have perl
installed.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
bootstrapped by `make world'.  The version just built in ".."
normally won't work if the target system is not binary compatible.
The bootstrapped version has a better chance of working.

This makes the fixes and bugs in the previous 3 commits irrelevant.
Rev.1.11 was just wrong and rev.1.10 became unnecessary when
perl/perl was added to build-tools.  Don't expect to build perl/usub
without using `make world' or equivalent if you don't have perl
installed.
</pre>
</div>
</content>
</entry>
<entry>
<title>Also check for Satoshi's TMPDIR location of perl when looking around for it.</title>
<updated>1998-05-29T06:16:44+00:00</updated>
<author>
<name>Jordan K. Hubbard</name>
<email>jkh@FreeBSD.org</email>
</author>
<published>1998-05-29T06:16:44+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=f74e1ace9c325ea9ab9bf3566a2150f25944be05'/>
<id>f74e1ace9c325ea9ab9bf3566a2150f25944be05</id>
<content type='text'>
Clean up an .ifdef which was probably doing the wrong thing in the case
where user wants to override PERL.
Submitted by:	jhay
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Clean up an .ifdef which was probably doing the wrong thing in the case
where user wants to override PERL.
Submitted by:	jhay
</pre>
</div>
</content>
</entry>
<entry>
<title>If perl exists in OBJDIR it has just been built; if it exists in</title>
<updated>1998-05-12T22:51:34+00:00</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1998-05-12T22:51:34+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=ecf85f0379a080be6fd1dc86ed10123e96b02c4c'/>
<id>ecf85f0379a080be6fd1dc86ed10123e96b02c4c</id>
<content type='text'>
CURDIR it has been built without an obj directory; however if it is in
neither of those places, we expect it to be in DESTDIR.

Yes Bruce, I know this is broken because the host is not supposed to be
the same as the target, but we need to get the hosted build working
properly first before even attempting a cross compiled operating
system build. That will need to concept of TOOLSDIR or something that
can be mapped to DESTDIR in the case of a hosted build and set to the
installed tools in a cross compiled build. Later, later, later!
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
CURDIR it has been built without an obj directory; however if it is in
neither of those places, we expect it to be in DESTDIR.

Yes Bruce, I know this is broken because the host is not supposed to be
the same as the target, but we need to get the hosted build working
properly first before even attempting a cross compiled operating
system build. That will need to concept of TOOLSDIR or something that
can be mapped to DESTDIR in the case of a hosted build and set to the
installed tools in a cross compiled build. Later, later, later!
</pre>
</div>
</content>
</entry>
<entry>
<title>Change .if to .elif to prevent the current directory path search for a</title>
<updated>1998-05-12T22:32:03+00:00</updated>
<author>
<name>John Birrell</name>
<email>jb@FreeBSD.org</email>
</author>
<published>1998-05-12T22:32:03+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=b0c3b27388a92ad571ab9aa5e72601532f1f378b'/>
<id>b0c3b27388a92ad571ab9aa5e72601532f1f378b</id>
<content type='text'>
perl executable from overriding the object directory path search where
perl is most likely to be. Most people haven't seen this because it
defaulted to /usr/bin/perl which might be OK as a fallback, but when
bootstrapping a new version (or the *first* version on alpha), we don't
really want to use /usr/bin/perl.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
perl executable from overriding the object directory path search where
perl is most likely to be. Most people haven't seen this because it
defaulted to /usr/bin/perl which might be OK as a fallback, but when
bootstrapping a new version (or the *first* version on alpha), we don't
really want to use /usr/bin/perl.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove a couple of private malloc() implementations, one of which</title>
<updated>1996-12-23T20:21:35+00:00</updated>
<author>
<name>Poul-Henning Kamp</name>
<email>phk@FreeBSD.org</email>
</author>
<published>1996-12-23T20:21:35+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=328f21ee084a000a927d5aaa341a5625e378c87f'/>
<id>328f21ee084a000a927d5aaa341a5625e378c87f</id>
<content type='text'>
was unused afterall.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
was unused afterall.
</pre>
</div>
</content>
</entry>
<entry>
<title>Bring in my changes for removing the pestilent obj links (unless you</title>
<updated>1996-06-24T04:26:21+00:00</updated>
<author>
<name>Jordan K. Hubbard</name>
<email>jkh@FreeBSD.org</email>
</author>
<published>1996-06-24T04:26:21+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=cd9a2f5c280b40222d21ca68b5b0962ff712d6cf'/>
<id>cd9a2f5c280b40222d21ca68b5b0962ff712d6cf</id>
<content type='text'>
really want them) from /usr/src.  This is the final version of the
patches, incorporating the feedback I've received from -current.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
really want them) from /usr/src.  This is the final version of the
patches, incorporating the feedback I've received from -current.
</pre>
</div>
</content>
</entry>
<entry>
<title>Remove trailing whitespace.</title>
<updated>1995-05-30T05:05:38+00:00</updated>
<author>
<name>Rodney W. Grimes</name>
<email>rgrimes@FreeBSD.org</email>
</author>
<published>1995-05-30T05:05:38+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4399be3cbd35324f7a2c00d77229d995b4022138'/>
<id>4399be3cbd35324f7a2c00d77229d995b4022138</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix compiler warnings: don't declare enum types as static.</title>
<updated>1995-04-02T13:11:14+00:00</updated>
<author>
<name>Bruce Evans</name>
<email>bde@FreeBSD.org</email>
</author>
<published>1995-04-02T13:11:14+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=15519b2f5843ad37d6ee59ec89a8f925abee63e8'/>
<id>15519b2f5843ad37d6ee59ec89a8f925abee63e8</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Comment out all perverted curses optimization</title>
<updated>1995-03-26T03:01:04+00:00</updated>
<author>
<name>Andrey A. Chernov</name>
<email>ache@FreeBSD.org</email>
</author>
<published>1995-03-26T03:01:04+00:00</published>
<link rel='alternate' type='text/html' href='http://cgit.freebsd.org/src/commit/?id=4b99bfd3751308ac6994cb3b1dd780f28b055c02'/>
<id>4b99bfd3751308ac6994cb3b1dd780f28b055c02</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
