summaryrefslogtreecommitdiff
path: root/mk/platform/IRIX.mk
AgeCommit message (Collapse)AuthorFilesLines
2005-01-28Don't make pkgsrc depend on dc(1) to be present in the system. Sincejlam1-2/+1
we already use awk so pervasively in pkgsrc, simply use awk in place of dc for simple computations.
2005-01-25Relax need to put GNU_CONFIGURE before inclusion of bsd.prefs.mk:tv1-4/+2
Convert _OPSYS_MAX_CMDLEN to a plain _OPSYS_MAX_CMDLEN_CMD variable, which is not evaluated by a shell until CONFIGURE_ENV is expanded (and only then if USE_LIBTOOL+GNU_CONFIGURE are both set).
2004-12-27Remove USERADD and GROUPADD definitions from OSes where the useraddjlam1-3/+1
and groupadd commands won't follow the calling conventions of the NetBSD useradd/groupadd. Modify the INSTALL scripts to *never* create users or groups if there is no available ${USERADD} or ${GROUPADD} command, but will warn the user of users and groups that need to be created before the package can be installed.
2004-11-16Revert previous (re-add common CPP_PRECOMP_FLAGS). For consistency, alsotv1-2/+2
move usage of _USER_DEPENDS and _OPSYS_MAX_CMDLEN to bsd.pkg.mk.
2004-11-16CPP_PRECOMP_FLAGS is a Darwinism only. Move its frobbing of CPPFLAGS totv1-2/+1
platform/Darwin.mk (simplification).
2004-11-15Set some _OPSYS_SHLIB_TYPE to precisely 'ELF' on platforms where a.out istv1-2/+2
not being used by pkgsrc at all. This saves some build time in show-shlib-type.
2004-11-12Introduce LIBABISUFFIX for platforms which require ABI-dependant library paths.sketch1-1/+3
2004-10-13Make strip/no-strip choice more consistent:tv1-2/+2
Move check for INSTALL_UNSTRIPPED to the platform/*.mk files, alongside existing check for DEBUG_FLAGS.
2004-10-06Reorganize some of the files under pkgsrc/mk:jlam1-0/+184
(1) defs.${OPSYS}.mk --> platform/${OPSYS}.mk. The "platform" subdirectory is where all of the ${OPSYS}-specific infrastructure logic should reside. (2) bsd.pkg.defaults.mk --> defaults/mk.conf bsd.pkg.obsolete.mk --> defaults/obsolete.mk Renaming bsd.pkg.defaults.mk to defaults/mk.conf is to mimic the way that NetBSD has /etc/rc.conf as well as /etc/defaults/rc.conf, where the latter is a full list of user-settable variables, and the two files share the same name to reinforce the fact /etc/defaults/rc.conf can be directly copied in place as /etc/rc.conf. This is the same relationship shared by defaults/mk.conf and /etc/mk.conf.