summaryrefslogtreecommitdiffstats
path: root/share/mk
Commit message (Collapse)AuthorAgeFilesLines
* Final way: Don't include /etc/defaults/make.conf at all. It wasn'talex2001-08-311-4/+0
| | | | | | | | supposed to be edited by the user and didn't define important things, thus we can just skip it (that's where it differs from the make.conf.local change). Submitted by: ru
* Don't .error, if /etc/defaults/make.conf exists. This breaks -CURRENTalex2001-08-311-1/+0
| | | | | | buildworlds on a -STABLE machine. Reminded by: ru
* Move /etc/defaults/make.conf to /usr/share/examples/etc/make.conf asalex2001-08-301-1/+2
| | | | | | | | | | | | | | discussed on the arch@ mailinglist (after repo-copy). sys.mk will .error if it finds /etc/defaults/make.conf but include it anyways (this is the same behaviour as with the make.conf.local removal). /usr/share/examples/etc/make.conf has BDEFLAGS commented out now, since it's only an example file. Adjust all textes that talk about make.conf or defaults/make.conf to match the new situation.
* Fixed world breakage in ftpd, rshd, login, su, telnetd and telnet. LIBPAMbde2001-08-291-3/+3
| | | | | | | | and MINUSLPAM must be kept in sync with the libraries linked to by libpam to support static linkage. Moved libmd to the end of LIBPAM and MINUSLPAM. It was before libopie, but libopie references it, so static linkage only worked accidentally.
* Removed some garbage (LIBGMP, LIBSKEY). Using LIBSKEY in LIBPAM shouldbde2001-08-291-5/+2
| | | | | | | | have been fatal since it gave a dependency on a nonexistent file, but it worked because of an undocumented bugfeature in make(1): missing source files named *.a are silently assumed to be up to date. Fixed some style bugs (formatting).
* Zap LIBSSkris2001-08-191-1/+0
|
* revert previous accidental commitassar2001-07-221-1/+5
|
* get rid of some printf and pointer type warningsassar2001-07-221-5/+1
|
* Always preprocess manpages with tbl(1).ru2001-07-121-1/+1
|
* Add LIBBZ2.obrien2001-07-091-0/+1
|
* Add the ".FreeBSD" symbol so we can do things like ".if define(.FreeBSD)"obrien2001-06-161-0/+1
| | | | in Makefile's shared with NetBSD.
* Style nits:ru2001-06-141-2/+2
| | | | | | | GBINDIR -> ORIGBINDIR GBINGRP -> ORIGBINGRP Submitted by: bde
* Games ownership cleanup.ru2001-06-132-4/+2
| | | | Urged by: bde
* Clean up the PAM lib lists. Particularly relevant to the KRB5 case.markm2001-06-071-6/+6
|
* Add the single suffix rules for FORTRAN.obrien2001-06-061-0/+4
|
* Add the single suffix rules for C++.obrien2001-06-061-3/+6
| | | | | | | | (While there, I also moved the single suffix C rules beside the double suffix ones so they are easier to find) PR: 24438 Submitted by: Georg-W. Koltermann <gwk@sgi.com>
* Change the ownership of the symbolic link for hidden gameru2001-05-311-1/+1
| | | | | | | rather than /usr/games/dm wrapper. Spotted by: bde Reviewed by: bde
* Do not clobber COPY, it may be set differently in /etc/make.conf.ru2001-05-301-2/+0
| | | | | This is not the problem for NOMANCOMPRESS, as install(1) does not delete the originals anymore (-c is the default now).
* Fixed `objwarn' so that it doesn't issue spurious warnings,ru2001-05-201-3/+18
| | | | | | | especially now that ${.OBJDIR} is canonicalized by make(1). Urged by: bde Reviewed by: bde
* Only add -Werror if in fact we have set WARNS or WFORMAT to >0kris2001-05-191-4/+6
|
* Bring in the WARNS directive from NetBSD, localized in a new bsd.sys.mkkris2001-05-195-1/+44
| | | | | | | | | to avoid polluting sys.mk. This directive controls the addition of compiler warning flags to CFLAGS in a relatively compiler-neutral manner. The idea is that WARNS can be set in Makefile.inc or in individual Makefiles as they become clean, to prevent the introduction of new warnings in the code. -Werror is added by default
* Kerberos updates for PAM.markm2001-05-141-3/+13
|
* Fixed some bitrot:bde2001-05-121-11/+10
| | | | | | | | | | | | | | - the changes that renamed libf2c to libg2c had not reached here - there were no definitions for LIBDEVINFO, LIBMENU, LIBPANEL, LIBTINFO, LIBUSB or LIBVGL. LIBUSB was used without it being defined, and LIBDEVINFO and LIBVGL should have been used. - the definitions of LIBDESCRYPT, LIBGCC_PIC, LIBGPLUSPLUS, LIBKZHEAD, LIBKZTAIL, LIBSCRYPT and LIBSCSI were garbage. Fixed some old bugs: - LIBC_PIC and LIBCOM_ERR were assigned to using "=" instead of "?=". - the definition of LIBC_R was disordered. - LIBFORM was misspelled LIBFORMS (but not actually used).
* Cleaner method of making PAMable apps static (in the optional case ofmarkm2001-04-281-2/+3
| | | | wanting static apps).
* ... and do it make(1) way.ru2001-04-261-5/+5
|
* Fix the fix in rev.1.34.ru2001-04-231-1/+1
| | | | | Makes `cleandir' DTRT if MAKEOBJDIRPREFIX set and not empty, like in `buildworld' case.
* Who ever came up with the ${CFLAGS} need to be passed to lint?asmodai2001-04-191-1/+1
| | | | | | We can now run make lint on src/bin at least. I am sure Mark Murray has way more interesting fixes up his sleeve.
* Add missing -mtty-char for MANBUILDCAT.ru2001-04-181-1/+1
|
* Introduce SCRIPTS for bsd.prog.mk. See bsd.README for details.ru2001-04-072-2/+34
| | | | | | Idea stolen from NetBSD. Reviewed by: bde
* Remove the recently-depricated LIBPOSIX1Ejedgar2001-04-051-1/+0
|
* Introduce ${PROGNAME}, the name that the program will be installed as,ru2001-04-022-0/+8
| | | | | | if different from ${PROG}. (The name PROGNAME was stolen from NetBSD.) Reviewed by: bde
* - Document recent MAN[1-9] -> MAN changes.ru2001-03-281-10/+11
| | | | - Backout part of revision 1.4 (../Makefile.inc -> bsd.inc.mk change).
* Define MAN to ${PROG}.1 if no manpages were specified, but stillru2001-03-281-1/+2
| | | | | | | provide MAN1 for backwards compatibility. Third party software may still have dependancy lines of this form: ${MAN1}: foo.man
* - Removed `n' from the list of manpage sections.ru2001-03-281-5/+5
| | | | | - Only support the old syntax for manpage declarations (MAN1...MAN9) if no MAN is defined.
* Bye-bye /usr/lib/libtelnet.a. This should fix ``make release'' brokeness.ru2001-03-281-1/+0
| | | | Approved by: markm
* Make it possible to build manpages for the entire source tree.ru2001-03-276-5/+23
|
* Rewrite of the CAM error recovery code.ken2001-03-271-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some of the major changes include: - The SCSI error handling portion of cam_periph_error() has been broken out into a number of subfunctions to better modularize the code that handles the hierarchy of SCSI errors. As a result, the code is now much easier to read. - String handling and error printing has been significantly revamped. We now use sbufs to do string formatting instead of using printfs (for the kernel) and snprintf/strncat (for userland) as before. There is a new catchall error printing routine, cam_error_print() and its string-based counterpart, cam_error_string() that allow the kernel and userland applications to pass in a CCB and have errors printed out properly, whether or not they're SCSI errors. Among other things, this helped eliminate a fair amount of duplicate code in camcontrol. We now print out more information than before, including the CAM status and SCSI status and the error recovery action taken to remedy the problem. - sbufs are now available in userland, via libsbuf. This change was necessary since most of the error printing code is shared between libcam and the kernel. - A new transfer settings interface is included in this checkin. This code is #ifdef'ed out, and is primarily intended to aid discussion with HBA driver authors on the final form the interface should take. There is example code in the ahc(4) driver that implements the HBA driver side of the new interface. The new transfer settings code won't be enabled until we're ready to switch all HBA drivers over to the new interface. src/Makefile.inc1, lib/Makefile: Add libsbuf. It must be built before libcam, since libcam uses sbuf routines. libcam/Makefile: libcam now depends on libsbuf. libsbuf/Makefile: Add a makefile for libsbuf. This pulls in the sbuf sources from sys/kern. bsd.libnames.mk: Add LIBSBUF. camcontrol/Makefile: Add -lsbuf. Since camcontrol is statically linked, we can't depend on the dynamic linker to pull in libsbuf. camcontrol.c: Use cam_error_print() instead of checking for CAM_SCSI_STATUS_ERROR on every failed CCB. sbuf.9: Change the prototypes for sbuf_cat() and sbuf_cpy() so that the source string is now a const char *. This is more in line wth the standard system string functions, and helps eliminate warnings when dealing with a const source buffer. Fix a typo. cam.c: Add description strings for the various CAM error status values, as well as routines to look up those strings. Add new cam_error_string() and cam_error_print() routines for userland and the kernel. cam.h: Add a new CAM flag, CAM_RETRY_SELTO. Add enumerated types for the various options available with cam_error_print() and cam_error_string(). cam_ccb.h: Add new transfer negotiation structures/types. Change inq_len in the ccb_getdev structure to be "reserved". This field has never been filled in, and will be removed when we next bump the CAM version. cam_debug.h: Fix typo. cam_periph.c: Modularize cam_periph_error(). The SCSI error handling part of cam_periph_error() is now in camperiphscsistatuserror() and camperiphscsisenseerror(). In cam_periph_lock(), increase the reference count on the periph while we wait for our lock attempt to succeed so that the periph won't go away while we're sleeping. cam_xpt.c: Add new transfer negotiation code. (ifdefed out) Add a new function, xpt_path_string(). This is a string/sbuf analog to xpt_print_path(). scsi_all.c: Revamp string handing and error printing code. We now use sbufs for much of the string formatting code. More of that code is shared between userland the kernel. scsi_all.h: Get rid of SS_TURSTART, it wasn't terribly useful in the first place. Add a new error action, SS_REQSENSE. (Send a request sense and then retry the command.) This is useful when the controller hasn't performed autosense for some reason. Change the default actions around a bit. scsi_cd.c, scsi_da.c, scsi_pt.c, scsi_ses.c: SF_RETRY_SELTO -> CAM_RETRY_SELTO. Selection timeouts shouldn't be covered by a sense flag. scsi_pass.[ch]: SF_RETRY_SELTO -> CAM_RETRY_SELTO. Get rid of the last vestiges of a read/write interface. libkern/bsearch.c, sys/libkern.h, conf/files: Add bsearch.c, which is needed for some of the new table lookup routines. aic7xxx_freebsd.c: Define AHC_NEW_TRAN_SETTINGS if CAM_NEW_TRAN_CODE is defined. sbuf.h, subr_sbuf.c: Add the appropriate #ifdefs so sbufs can compile and run in userland. Change sbuf_printf() to use vsnprintf() instead of kvprintf(), which is only available in the kernel. Change the source string for sbuf_cpy() and sbuf_cat() to be a const char *. Add __BEGIN_DECLS and __END_DECLS around function prototypes since they're now exported to userland. kdump/mkioctls: Include stdio.h before cam.h since cam.h now includes a function with a FILE * argument. Submitted by: gibbs (mostly) Reviewed by: jdp, marcel (libsbuf makefile changes) Reviewed by: des (sbuf changes) Reviewed by: ken
* Backout botched attempt to introduce MANSECT feature; itru2001-03-261-4/+1
| | | | doesn't work in "developer" mode (single module checkout).
* Removed _MANPAGES, MANDEPEND and MANSRC.ru2001-03-262-47/+48
| | | | | | | Added MAN which will eventually replace MAN[0-9] and MAN1aout. For now, the old syntax is still supported. Reviewed by: bde
* Do not depend on ``all-man'' if -DNOMAN.ru2001-03-261-1/+4
|
* Pentium II's do not support SSE, that came in with the PIIIkris2001-03-211-1/+1
| | | | Submitted by: sf
* List libfetch.des2001-03-201-0/+1
| | | | Submitted by: bde
* If the MANSECT variable is specified, it will override the defaultru2001-03-201-1/+4
| | | | | | | | manual section. If, for example, MANSECT is set to 8, the default MAN1=${PROG}.1 feature of bsd.prog.mk becomes MAN8=${PROG}.8. Useful for games, libexec, sbin and usr.sbin subtrees. Reviewed by: bde
* Add LIBPOSIX1Ejedgar2001-03-201-0/+1
|
* Use CPUTYPE to add appropriate compiler flags to COPTFLAGS for kernelkris2001-03-121-18/+24
| | | | | | builds. This may be disabled using the NO_CPU_COPTFLAGS variable. Reviewed by: arch
* AMD K6/K6-2/Duron/Athlon CPUs support MMX too.sobomax2001-03-101-3/+3
| | | | Missed by: kris
* Add definitions and support for the AMD k6-2, Pentium MMX (i586/MMX),kris2001-02-271-1/+21
| | | | | | | | | and Pentium II, III and IV processors (p2, p3, p4), as well as 'mmx' and '3dnow' MACHINE_CPU tags as appropriate. In the near future this will be used to control various ports which have MMX/3dNow optimizations, instead of the ad-hoc methods currently used. Reviewed by: peter
* Make ``groff -man'' work again for both man(7) and mdoc(7) manpages.ru2001-02-231-1/+1
| | | | | | The new Groff release will support this feature. Requested by: peter
* Overhaul the MACHINE_CPU behaviour:kris2001-02-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rip out MACHINE_CPU stuff from sys.mk and include a new <bsd.cpu.mk> after we pull in /etc/make.conf. We need to do it afterwards so we can react to the user setting of the: * CPUTYPE variable, which contains the CPU type which the user wants to optimize for. For example, if you want your binaries to only run on an i686-class machine (or higher), set this to i686. If you want to support running binaries on a variety of CPU generations, set this to the lowest common denominator. Supported values are listed in make.conf. * bsd.cpu.mk does the expansion of CPUTYPE into MACHINE_CPU using the (hopefully) correct unordered list of CPU types which should be used on that CPU. For example, an AMD k6 CPU wants any of the following: k6 k5 i586 i486 i386 This is still an unordered list so the client makefile logic is simple - client makefiles need to test for the various elements of the set in decreasing order of priority using ${MACHINE_CPU:M<foo>}, as before. The various MACHINE_CPU lists are believed to be correct, but should be checked. * If NO_CPU_CFLAGS is not defined, add relevant gcc compiler optimization settings by default (e.g. -karch=k6 for CPUTYPE=k6, etc). Release builders and developers of third-party software need to make sure not to enable CPU-specific optimization when generating code intended to be portable. We probably need to move to an /etc/world.conf to allow the optimization stuff to be applied separately to world/kernel and external compilations, but it's not any worse a problem than it was before. * Add coverage for the ia64/itanium MACHINE_ARCH/CPUTYPE. * Add CPUTYPE support for all of the CPU types supported by FreeBSD and gcc (only i386, alpha and ia64 first, since those are the minimally-working ports. Other architecture porters, please feel free to add the relevant gunk for your platform). Reviewed by: jhb, obrien
* Overhaul the MACHINE_CPU behaviour:kris2001-02-222-10/+103
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Rip out MACHINE_CPU stuff from sys.mk and include a new <bsd.cpu.mk> after we pull in /etc/make.conf. We need to do it afterwards so we can react to the user setting of the: * CPUTYPE variable, which contains the CPU type which the user wants to optimize for. For example, if you want your binaries to only run on an i686-class machine (or higher), set this to i686. If you want to support running binaries on a variety of CPU generations, set this to the lowest common denominator. Supported values are listed in make.conf. * bsd.cpu.mk does the expansion of CPUTYPE into MACHINE_CPU using the (hopefully) correct unordered list of CPU types which should be used on that CPU. For example, an AMD k6 CPU wants any of the following: k6 k5 i586 i486 i386 This is still an unordered list so the client makefile logic is simple - client makefiles need to test for the various elements of the set in decreasing order of priority using ${MACHINE_CPU:M<foo>}, as before. The various MACHINE_CPU lists are believed to be correct, but should be checked. * If NO_CPU_CFLAGS is not defined, add relevant gcc compiler optimization settings by default (e.g. -karch=k6 for CPUTYPE=k6, etc). Release builders and developers of third-party software need to make sure not to enable CPU-specific optimization when generating code intended to be portable. We probably need to move to an /etc/world.conf to allow the optimization stuff to be applied separately to world/kernel and external compilations, but it's not any worse a problem than it was before. * Add coverage for the ia64/itanium MACHINE_ARCH/CPUTYPE. * Add CPUTYPE support for all of the CPU types supported by FreeBSD and gcc (only i386, alpha and ia64 first, since those are the minimally-working ports. Other architecture porters, please feel free to add the relevant gunk for your platform). Reviewed by: jhb, obrien
OpenPOWER on IntegriCloud