pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/mk Don't use full path to include, avoids



details:   https://anonhg.NetBSD.org/pkgsrc/rev/afbba9fae816
branches:  trunk
changeset: 553106:afbba9fae816
user:      sketch <sketch%pkgsrc.org@localhost>
date:      Wed Jan 14 17:27:37 2009 +0000

description:
Don't use full path to include, avoids

  "<stdin>", line 4: warning: #include of /usr/include/... may be non-portable

warning with Sun Studio.

diffstat:

 mk/endian.mk |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (27 lines):

diff -r 19c636cb2ae9 -r afbba9fae816 mk/endian.mk
--- a/mk/endian.mk      Wed Jan 14 16:11:50 2009 +0000
+++ b/mk/endian.mk      Wed Jan 14 17:27:37 2009 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: endian.mk,v 1.5 2007/03/08 23:11:20 rillig Exp $
+# $NetBSD: endian.mk,v 1.6 2009/01/14 17:27:37 sketch Exp $
 #
 # Determine the endianness of the platform by checking header files.
 #
@@ -18,13 +18,13 @@
 
 .if !defined(MACHINE_ENDIAN)
 .  if exists(/usr/include/endian.h)
-_ENDIAN_H=     /usr/include/endian.h           # Linux
+_ENDIAN_H=     endian.h                        # Linux
 .  elif exists(/usr/include/sys/endian.h)
-_ENDIAN_H=     /usr/include/sys/endian.h       # NetBSD>=1.5
+_ENDIAN_H=     sys/endian.h                    # NetBSD>=1.5
 .  elif exists(/usr/include/machine/endian.h)
-_ENDIAN_H=     /usr/include/machine/endian.h   # NetBSD<1.5
+_ENDIAN_H=     machine/endian.h                # NetBSD<1.5
 .  elif exists(/usr/include/sys/byteorder.h)
-_ENDIAN_H=     /usr/include/sys/byteorder.h    # Solaris
+_ENDIAN_H=     sys/byteorder.h                 # Solaris
 .  else
 _ENDIAN_H=     /dev/null
 .  endif



Home | Main Index | Thread Index | Old Index