svn commit: r303830 - head/usr.bin/getconf
Garrett Cooper
ngie at FreeBSD.org
Mon Aug 8 07:19:32 UTC 2016
Author: ngie
Date: Mon Aug 8 07:19:30 2016
New Revision: 303830
URL: https://svnweb.freebsd.org/changeset/base/303830
Log:
Remove vestigal references to __alpha__
Replace alpha reference in getconf(1) with amd64 [*]
MFC after: 1 week
PR: 211300 [*]
Submitted by: Sevan Janiyan <venture37 at geeklan.co.uk> [*]
Sponsored by: EMC / Isilon Storage Division
Modified:
head/usr.bin/getconf/getconf.1
head/usr.bin/getconf/progenv.gperf
Modified: head/usr.bin/getconf/getconf.1
==============================================================================
--- head/usr.bin/getconf/getconf.1 Mon Aug 8 07:16:13 2016 (r303829)
+++ head/usr.bin/getconf/getconf.1 Mon Aug 8 07:19:30 2016 (r303830)
@@ -28,7 +28,7 @@
.\"
.\" $FreeBSD$
.\"
-.Dd September 18, 2002
+.Dd August 8, 2016
.Dt GETCONF 1
.Os
.Sh NAME
@@ -122,7 +122,7 @@ Exactly 32-bit integer, long, and pointe
.It Li POSIX_V6_LP64_OFF64
Exactly 32-bit integer; exactly 64-bit long, pointer, and file offset.
.Sy Supported platforms :
-.Tn Alpha ,
+.Tn AMD64 ,
.Tn SPARC64 .
.It Li POSIX_V6_LPBIG_OFFBIG
At least 32-bit integer; at least 64-bit long, pointer, and file offset.
Modified: head/usr.bin/getconf/progenv.gperf
==============================================================================
--- head/usr.bin/getconf/progenv.gperf Mon Aug 8 07:16:13 2016 (r303829)
+++ head/usr.bin/getconf/progenv.gperf Mon Aug 8 07:19:30 2016 (r303830)
@@ -30,7 +30,7 @@ static const struct map *in_word_set(con
* be updated. (We cheat here and define the supported environments
* statically.)
*/
-#if defined(__alpha__) || defined(__sparc64__) || defined(__amd64__)
+#if defined(__sparc64__) || defined(__amd64__)
#define have_LP64_OFF64 NULL
#endif
More information about the svn-src-head
mailing list