OpenBSD CVS

CVS log for src/share/mk/bsd.prog.mk


[BACK] Up to [local] / src / share / mk

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.83 / (download) - annotate - [select for diffs], Wed Jun 9 19:44:55 2021 UTC (2 years, 11 months ago) by mortimer
Branch: MAIN
CVS Tags: OPENBSD_7_5_BASE, OPENBSD_7_5, OPENBSD_7_4_BASE, OPENBSD_7_4, OPENBSD_7_3_BASE, OPENBSD_7_3, OPENBSD_7_2_BASE, OPENBSD_7_2, OPENBSD_7_1_BASE, OPENBSD_7_1, OPENBSD_7_0_BASE, OPENBSD_7_0, HEAD
Changes since 1.82: +2 -1 lines
Diff to previous 1.82 (colored)

Enable libexecinfo.

With some build plumbing help from jsg@

ok kettenis@ sthen@

Revision 1.82 / (download) - annotate - [select for diffs], Tue Sep 22 10:31:46 2020 UTC (3 years, 7 months ago) by martijn
Branch: MAIN
CVS Tags: OPENBSD_6_9_BASE, OPENBSD_6_9, OPENBSD_6_8_BASE, OPENBSD_6_8
Changes since 1.81: +2 -1 lines
Diff to previous 1.81 (colored)

Link up libagentx

Revision 1.81 / (download) - annotate - [select for diffs], Fri Nov 15 00:06:46 2019 UTC (4 years, 6 months ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_6_7_BASE, OPENBSD_6_7
Changes since 1.80: +2 -2 lines
Diff to previous 1.80 (colored)

libusb was renamed to libusbhid in 2001 but the old DPADD var name was
kept.  Rename LIBUSB to LIBUSBHID as there is only one LIBUSB use and
many more attempts to refer to LIBUSBHID.

Revision 1.80 / (download) - annotate - [select for diffs], Thu Nov 14 23:44:26 2019 UTC (4 years, 6 months ago) by jsg
Branch: MAIN
Changes since 1.79: +3 -1 lines
Diff to previous 1.79 (colored)

add LIBCBOR and LIBFIDO2

Revision 1.79 / (download) - annotate - [select for diffs], Tue Apr 2 12:59:57 2019 UTC (5 years, 1 month ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_6_6_BASE, OPENBSD_6_6, OPENBSD_6_5_BASE, OPENBSD_6_5
Changes since 1.78: +1 -2 lines
Diff to previous 1.78 (colored)

libLLVM.a is no longer installed

Revision 1.78 / (download) - annotate - [select for diffs], Tue Mar 5 11:35:42 2019 UTC (5 years, 2 months ago) by jsg
Branch: MAIN
Changes since 1.77: +2 -1 lines
Diff to previous 1.77 (colored)

add libLLVM

Revision 1.77 / (download) - annotate - [select for diffs], Sun Feb 24 12:57:14 2019 UTC (5 years, 2 months ago) by kn
Branch: MAIN
Changes since 1.76: +3 -3 lines
Diff to previous 1.76 (colored)

Remove -S from install commands

As of usr.bin/xinstall/install.c revision 1.68, -S is a no-op and
install(1) will always create files safely, thus clean the option usage
from the tree.

Diff from Lauri Tirkkonen <lotheac at iki dot fi>, thanks.

Revision 1.76 / (download) - annotate - [select for diffs], Thu Feb 7 07:01:04 2019 UTC (5 years, 3 months ago) by jsg
Branch: MAIN
Changes since 1.75: +2 -1 lines
Diff to previous 1.75 (colored)

add LIBELF

Revision 1.75 / (download) - annotate - [select for diffs], Fri Jul 21 11:00:24 2017 UTC (6 years, 9 months ago) by schwarze
Branch: MAIN
CVS Tags: OPENBSD_6_4_BASE, OPENBSD_6_4, OPENBSD_6_3_BASE, OPENBSD_6_3, OPENBSD_6_2_BASE, OPENBSD_6_2
Changes since 1.74: +2 -2 lines
Diff to previous 1.74 (colored)

Garbage collect unused manual page .SUFFIXES, left over
years ago when we formatted manual pages at build time.
Opportunity for cleanup discovered by espie@.
Make build & release in base and Xenocara checked myself,
and checked in a bulk build by ajacoutot@.
OK espie@ millert@ deraadt@

Revision 1.74 / (download) - annotate - [select for diffs], Sun Jul 9 15:29:52 2017 UTC (6 years, 10 months ago) by espie
Branch: MAIN
Changes since 1.73: +52 -16 lines
Diff to previous 1.73 (colored)

add support to compile several progs at once us
by using alternate setup
PROGS = a b c along with SRCS_a = ... , SRCS_b = ... , SRCS_c = ...

okay millert@

Revision 1.73 / (download) - annotate - [select for diffs], Tue Jul 4 00:59:11 2017 UTC (6 years, 10 months ago) by espie
Branch: MAIN
Changes since 1.72: +3 -3 lines
Diff to previous 1.72 (colored)

let BUILDFIRST just build first, using the same trick guenther@ did in
kernel Makefiles (thank you!), also add lex and yacc generated files to
that list.

Let those lex/yacc variables be defined for bsd.lib.mk as well.

Complete the SRCS -> OBJS hints with the library dependency

This should fix most dependency problems.

Commit now, so that people can check if something else is still amiss.
krw@ agrees

Revision 1.72 / (download) - annotate - [select for diffs], Sat Jul 1 14:41:54 2017 UTC (6 years, 10 months ago) by espie
Branch: MAIN
Changes since 1.71: +12 -1 lines
Diff to previous 1.71 (colored)

effectively kill depend as an independant target (there are a few corners
where a separate depend step is still needed, mostly gcc3 and mesa).

Use of BUILDFIRST is mostly enough to make sure important stuff is built
first.

Otherwise, this makes use of -M* compiler options to generate dependencies
on the fly.  There is a bit of behind-the-scene for targets with several
steps (like yacc and/or libraries) and the compiler needs extra hand-holding
with assembler files (don't know why, don't care).

Idea based on guenther@'s initial kernel work, loads of input from
drahn, aoyama, tb, etc.

okay tb@

"why wait" deraadt@

Revision 1.71 / (download) - annotate - [select for diffs], Fri Jun 16 10:20:52 2017 UTC (6 years, 11 months ago) by espie
Branch: MAIN
Changes since 1.70: +3 -1 lines
Diff to previous 1.70 (colored)

introduce a BUILDFIRST/BUILDAFTER mechanism:
record every standard component built in bsd.lib.mk/bsd.prog.mk in BUILDAFTER
and have BUILDAFTER depend on BUILDFIRST, thus making possible to build
some stuff early without relying on "make depend"

okay tb@ millert@

Revision 1.70 / (download) - annotate - [select for diffs], Sat Nov 14 23:56:50 2015 UTC (8 years, 6 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_6_1_BASE, OPENBSD_6_1, OPENBSD_6_0_BASE, OPENBSD_6_0, OPENBSD_5_9_BASE, OPENBSD_5_9
Changes since 1.69: +1 -2 lines
Diff to previous 1.69 (colored)

libocurses can go to the Attic.  last consumer of it was ramdisk more(1)
conceptual ok guenther millert nicm

Revision 1.69 / (download) - annotate - [select for diffs], Mon Oct 26 10:43:42 2015 UTC (8 years, 6 months ago) by bluhm
Branch: MAIN
Changes since 1.68: +1 -5 lines
Diff to previous 1.68 (colored)

Nothing in base uses native language support anymore.  Remove NLS
support from the makefiles.
OK naddy@

Revision 1.68 / (download) - annotate - [select for diffs], Mon Jul 20 23:52:29 2015 UTC (8 years, 9 months ago) by yasuoka
Branch: MAIN
CVS Tags: OPENBSD_5_8_BASE, OPENBSD_5_8
Changes since 1.67: +2 -1 lines
Diff to previous 1.67 (colored)

Add radius(3) library.  This will be used by RADIUS server and client
programs to manipulate RADIUS packets.  Mainly written by UMEZAWA
Takeshi.

fix and suggestion deraadt
ok deraadt

Revision 1.67 / (download) - annotate - [select for diffs], Thu May 14 02:56:01 2015 UTC (9 years ago) by jsg
Branch: MAIN
Changes since 1.66: +2 -1 lines
Diff to previous 1.66 (colored)

Stop including CFLAGS in CXXFLAGS it creates problems when mixing
C and C++ when wanting to pass flags to only the C compiler.

Tested in a ports bulk build by naddy and the handful of problems
found were fixed by naddy, jca and pascal.

Revision 1.66 / (download) - annotate - [select for diffs], Tue Dec 23 16:35:53 2014 UTC (9 years, 4 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_7_BASE, OPENBSD_5_7
Changes since 1.65: +2 -2 lines
Diff to previous 1.65 (colored)

Small changes to buil

Revision 1.65 / (download) - annotate - [select for diffs], Fri Oct 31 13:46:17 2014 UTC (9 years, 6 months ago) by jsing
Branch: MAIN
Changes since 1.64: +2 -2 lines
Diff to previous 1.64 (colored)

Rename libressl to libtls to avoid confusion and to make it easier to
distinguish between LibreSSL (the project) and libressl (the library).

Discussed with many.

Revision 1.64 / (download) - annotate - [select for diffs], Mon Sep 29 19:37:51 2014 UTC (9 years, 7 months ago) by gsoares
Branch: MAIN
Changes since 1.63: +2 -1 lines
Diff to previous 1.63 (colored)

add LIBRESSL; OK deraadt@

Revision 1.63 / (download) - annotate - [select for diffs], Wed Apr 23 18:24:23 2014 UTC (10 years ago) by ajacoutot
Branch: MAIN
CVS Tags: OPENBSD_5_6_BASE, OPENBSD_5_6
Changes since 1.62: +1 -12 lines
Diff to previous 1.62 (colored)

Remove more Kerberos cruft.

ok jca@ jmc@

Revision 1.62 / (download) - annotate - [select for diffs], Wed Dec 4 22:58:24 2013 UTC (10 years, 5 months ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_5_5_BASE, OPENBSD_5_5
Changes since 1.61: +1 -2 lines
Diff to previous 1.61 (colored)

express final disapproval of the interfaces in libcompat, such as
them ftime(), gtty(), stty(), re_comp(), cuserid() and others.
Discussion and ongoing work to fix the ports tree from many, especially
naddy.
ok naddy
[There is a bit more cleanup possible after that, but this is considered
the current safe step]

Revision 1.61 / (download) - annotate - [select for diffs], Tue Oct 15 22:40:00 2013 UTC (10 years, 7 months ago) by deraadt
Branch: MAIN
Changes since 1.60: +2 -2 lines
Diff to previous 1.60 (colored)

We do not produce "core" files, so they do not need to be deleted.  they
have been *.core files for a very long time.  That's a lot of unlink()
calls saved.

Revision 1.60 / (download) - annotate - [select for diffs], Sat Aug 10 10:19:35 2013 UTC (10 years, 9 months ago) by ajacoutot
Branch: MAIN
Changes since 1.59: +2 -2 lines
Diff to previous 1.59 (colored)

libkafs5 -> libkafs (unused in build, so no functional change)

Revision 1.59 / (download) - annotate - [select for diffs], Thu Jul 11 07:03:46 2013 UTC (10 years, 10 months ago) by ajacoutot
Branch: MAIN
CVS Tags: OPENBSD_5_4_BASE, OPENBSD_5_4
Changes since 1.58: +4 -2 lines
Diff to previous 1.58 (colored)

Properly set LIBKAFS5, LIBROKEN and LIBWIND which were used without
being defined. Remove LIBKAFS (superseded by LIBKAFS5).

ok robert@

Revision 1.58 / (download) - annotate - [select for diffs], Fri Jul 5 21:29:51 2013 UTC (10 years, 10 months ago) by miod
Branch: MAIN
Changes since 1.57: +1 -3 lines
Diff to previous 1.57 (colored)

ELF_TOOLCHAIN bye bye.

Revision 1.57 / (download) - annotate - [select for diffs], Mon Mar 18 10:51:35 2013 UTC (11 years, 2 months ago) by mpi
Branch: MAIN
Changes since 1.56: +4 -3 lines
Diff to previous 1.56 (colored)

Recognize and treat files with .cpp extension like any other C++ file.
This will help me reduce some xenocara Makefiles and as millert@ pointed
out, .cpp has won over .C or .cxx ;)

Tested in a bulk by landry@, ok espie@, sthen@

Revision 1.56 / (download) - annotate - [select for diffs], Tue Aug 28 16:45:03 2012 UTC (11 years, 8 months ago) by pascal
Branch: MAIN
CVS Tags: OPENBSD_5_3_BASE, OPENBSD_5_3
Changes since 1.55: +2 -2 lines
Diff to previous 1.55 (colored)

We can't add -nopie to LDFLAGS yet, since cc doesn't understand it.  Use
NOPIE_LDFLAGS instead.  Noticed by matthew@ and deraadt@.  Sorry for the
breakage ...

Revision 1.55 / (download) - annotate - [select for diffs], Tue Aug 28 14:26:47 2012 UTC (11 years, 8 months ago) by pascal
Branch: MAIN
Changes since 1.54: +2 -2 lines
Diff to previous 1.54 (colored)

LDFLAGS will be -nopie for the NOPIE case, change GCC_PIE_DEFAULT -> PIE_DEFAULT
since it will affect binutils too.

ok deraadt@

Revision 1.54 / (download) - annotate - [select for diffs], Wed Aug 22 19:41:56 2012 UTC (11 years, 8 months ago) by pascal
Branch: MAIN
Changes since 1.53: +7 -1 lines
Diff to previous 1.53 (colored)

share/mk bits for PIE, currently disabled.

ok matthew@ deraadt@ kettenis@, manpage prodding and ok jmc@

Revision 1.53 / (download) - annotate - [select for diffs], Sun Apr 8 15:56:28 2012 UTC (12 years, 1 month ago) by jsg
Branch: MAIN
CVS Tags: OPENBSD_5_2_BASE, OPENBSD_5_2
Changes since 1.52: +3 -11 lines
Diff to previous 1.52 (colored)

unhook lint from the tree.  The parser is incomplete and difficult
to fix and there are several alternatives that don't tell quite so many
dangerous lies.

enthusiastic agreement from a bunch of people

Revision 1.52 / (download) - annotate - [select for diffs], Mon Jul 18 06:40:18 2011 UTC (12 years, 10 months ago) by guenther
Branch: MAIN
CVS Tags: OPENBSD_5_1_BASE, OPENBSD_5_1, OPENBSD_5_0_BASE, OPENBSD_5_0
Changes since 1.51: +3 -2 lines
Diff to previous 1.51 (colored)

Pass install the -S option to avoid a window where the target isn't
executable (by mode or content), which can trip up builds with 'make -j'

ok millert@

Revision 1.51 / (download) - annotate - [select for diffs], Sat Jul 16 23:34:21 2011 UTC (12 years, 10 months ago) by guenther
Branch: MAIN
Changes since 1.50: +2 -2 lines
Diff to previous 1.50 (colored)

The /g flag is unneeded when the pattern in ${var:S/pattern/sub/g} can
only match once per word, such as when it's anchored with '$'

ok espie@

Revision 1.50 / (download) - annotate - [select for diffs], Thu Nov 18 21:16:57 2010 UTC (13 years, 6 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_4_9_BASE, OPENBSD_4_9
Changes since 1.49: +13 -18 lines
Diff to previous 1.49 (colored)

Sync the LIBFOO defines with the current set of libraries we build and
install. Also define LIBARCH on arm platforms.
ok millert@ deraadt@

Revision 1.49 / (download) - annotate - [select for diffs], Fri Jun 30 19:00:29 2006 UTC (17 years, 10 months ago) by otto
Branch: MAIN
CVS Tags: OPENBSD_4_8_BASE, OPENBSD_4_8, OPENBSD_4_7_BASE, OPENBSD_4_7, OPENBSD_4_6_BASE, OPENBSD_4_6, OPENBSD_4_5_BASE, OPENBSD_4_5, OPENBSD_4_4_BASE, OPENBSD_4_4, OPENBSD_4_3_BASE, OPENBSD_4_3, OPENBSD_4_2_BASE, OPENBSD_4_2, OPENBSD_4_1_BASE, OPENBSD_4_1, OPENBSD_4_0_BASE, OPENBSD_4_0
Changes since 1.48: +5 -3 lines
Diff to previous 1.48 (colored)

generate deps for yacc and lex, and clean stuff generated by these;
ok deraadt@

Revision 1.48 / (download) - annotate - [select for diffs], Mon Jun 26 03:12:37 2006 UTC (17 years, 10 months ago) by brad
Branch: MAIN
Changes since 1.47: +4 -4 lines
Diff to previous 1.47 (colored)

remove extraneous brackets and list the architecures in alphabetic order.

no objection from miod@ and krw@

Revision 1.47 / (download) - annotate - [select for diffs], Sat May 27 23:01:21 2006 UTC (17 years, 11 months ago) by deraadt
Branch: MAIN
Changes since 1.46: +3 -3 lines
Diff to previous 1.46 (colored)

support 'make lint' in dirs which contain .y and .l files, help from naddy

Revision 1.46 / (download) - annotate - [select for diffs], Fri Sep 16 21:23:21 2005 UTC (18 years, 8 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_3_9_BASE, OPENBSD_3_9
Changes since 1.45: +4 -4 lines
Diff to previous 1.45 (colored)

revert, breaks DESTDIR. sorry.

Revision 1.45 / (download) - annotate - [select for diffs], Thu Sep 15 07:12:18 2005 UTC (18 years, 8 months ago) by espie
Branch: MAIN
Changes since 1.44: +4 -4 lines
Diff to previous 1.44 (colored)

uniformize LINKS, so that it gets handled in realinstall all the time
(and the same way).

okay otto@

Revision 1.44 / (download) - annotate - [select for diffs], Fri Apr 15 17:18:57 2005 UTC (19 years, 1 month ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_3_8_BASE, OPENBSD_3_8
Changes since 1.43: +1 -28 lines
Diff to previous 1.43 (colored)

Bye, bye SHAREDSTRINGS.
Okay deraadt@, millert@

Revision 1.43 / (download) - annotate - [select for diffs], Thu Dec 23 23:58:36 2004 UTC (19 years, 4 months ago) by espie
Branch: MAIN
CVS Tags: OPENBSD_3_7_BASE, OPENBSD_3_7
Changes since 1.42: +2 -2 lines
Diff to previous 1.42 (colored)

give a complete path during install, so that we don't accidentally create
a file with the wrong name if the directory doesn't exist.
Shouldn't happen, ... but when it does it's hard to figure out.

`sounds sane' theo@.

ran through make build without issue.

Revision 1.42 / (download) - annotate - [select for diffs], Wed Oct 20 09:28:17 2004 UTC (19 years, 7 months ago) by espie
Branch: MAIN
Changes since 1.41: +11 -15 lines
Diff to previous 1.41 (colored)

support C/C++
Ditch DESTDIR building.
okay miod, theo.

Revision 1.41 / (download) - annotate - [select for diffs], Mon Oct 18 10:07:09 2004 UTC (19 years, 7 months ago) by espie
Branch: MAIN
Changes since 1.40: +15 -11 lines
Diff to previous 1.40 (colored)

revert, -B funky semantics ?

Revision 1.40 / (download) - annotate - [select for diffs], Wed Oct 13 16:47:50 2004 UTC (19 years, 7 months ago) by espie
Branch: MAIN
Changes since 1.39: +12 -16 lines
Diff to previous 1.39 (colored)

indent in a more readable way.
check SRCS files for C++ and invoke g++ accordingly.
Don't link from scratch with DESTDIR, but use -B instead.

okay millert@

Revision 1.39 / (download) - annotate - [select for diffs], Thu Jun 3 20:51:07 2004 UTC (19 years, 11 months ago) by miod
Branch: MAIN
CVS Tags: OPENBSD_3_6_BASE, OPENBSD_3_6
Changes since 1.38: +4 -3 lines
Diff to previous 1.38 (colored)

Define LIBARCH for alpha and amd64, too; ok espie@ tdeval@

Revision 1.38 / (download) - annotate - [select for diffs], Fri Aug 29 00:04:41 2003 UTC (20 years, 8 months ago) by jolan
Branch: MAIN
CVS Tags: OPENBSD_3_5_BASE, OPENBSD_3_5, OPENBSD_3_4_BASE, OPENBSD_3_4
Changes since 1.37: +1 -4 lines
Diff to previous 1.37 (colored)

remove HIDEGAME, it only made sense when 'dm' was still around.

ok fgsch@

Revision 1.37 / (download) - annotate - [select for diffs], Mon Aug 11 17:31:51 2003 UTC (20 years, 9 months ago) by jakob
Branch: MAIN
Changes since 1.36: +2 -1 lines
Diff to previous 1.36 (colored)

add GSSAPI. ok deraadt@

Revision 1.36 / (download) - annotate - [select for diffs], Wed Jul 16 01:29:34 2003 UTC (20 years, 10 months ago) by deraadt
Branch: MAIN
Changes since 1.35: +1 -2 lines
Diff to previous 1.35 (colored)

bye bye LIBCOM_ERR thingies

Revision 1.35 / (download) - annotate - [select for diffs], Tue Jul 8 13:59:13 2003 UTC (20 years, 10 months ago) by espie
Branch: MAIN
Changes since 1.34: +2 -2 lines
Diff to previous 1.34 (colored)

ELF_TOOLCHAIN:L, for consistency with other yes/no variables.

Revision 1.34 / (download) - annotate - [select for diffs], Sun Nov 10 23:03:55 2002 UTC (21 years, 6 months ago) by mickey
Branch: MAIN
CVS Tags: OPENBSD_3_3_BASE, OPENBSD_3_3
Changes since 1.33: +2 -2 lines
Diff to previous 1.33 (colored)

hppa is not a special case anymore

Revision 1.33 / (download) - annotate - [select for diffs], Thu Jul 25 18:19:06 2002 UTC (21 years, 9 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_3_2_BASE, OPENBSD_3_2
Changes since 1.32: +2 -2 lines
Diff to previous 1.32 (colored)

ELF_TOOLCHAIN except hppa for crtbegin and crtend.

Revision 1.32 / (download) - annotate - [select for diffs], Tue Jun 25 15:33:18 2002 UTC (21 years, 10 months ago) by millert
Branch: MAIN
Changes since 1.31: +2 -1 lines
Diff to previous 1.31 (colored)

Add LIBEVENT; pointed out by Brian J. Kifiak

Revision 1.31 / (download) - annotate - [select for diffs], Sat May 11 00:20:21 2002 UTC (22 years ago) by espie
Branch: MAIN
Changes since 1.30: +28 -8 lines
Diff to previous 1.30 (colored)

Add missing libraries to bsd.prog.mk (mostly kerberosV)
Use them in DPADD throughout the tree.
Fix a few mispells (LIBMATH -> LIBM...)
Wipe obsolete lib (LIBRESOLV)
Sort added missing libraries, move obsolete stuff apart.
Synch documentation in bsd.README

ok deraadt@

Revision 1.30 / (download) - annotate - [select for diffs], Thu Aug 23 16:39:33 2001 UTC (22 years, 8 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_3_1_BASE, OPENBSD_3_1, OPENBSD_3_0_BASE, OPENBSD_3_0
Changes since 1.29: +2 -2 lines
Diff to previous 1.29 (colored)

sparc64 needs crtbegin and crtend

Revision 1.29 / (download) - annotate - [select for diffs], Thu Aug 16 15:12:48 2001 UTC (22 years, 9 months ago) by brad
Branch: MAIN
Changes since 1.28: +1 -2 lines
Diff to previous 1.28 (colored)

- remove libatalk
- remove mention of architecture names in the NOPIC variable description

Revision 1.28 / (download) - annotate - [select for diffs], Fri Jul 20 23:02:21 2001 UTC (22 years, 10 months ago) by espie
Branch: MAIN
Changes since 1.27: +7 -11 lines
Diff to previous 1.27 (colored)

One BINDIR too many, I don't know how I pulled that one.

Revision 1.27 / (download) - annotate - [select for diffs], Fri Jul 20 19:48:26 2001 UTC (22 years, 10 months ago) by mickey
Branch: MAIN
Changes since 1.26: +11 -7 lines
Diff to previous 1.26 (colored)

undo broken changes, i dunno a fix for these; how many times you gonna repeat the same mistake espie@ and millert@ ?

Revision 1.26 / (download) - annotate - [select for diffs], Fri Jul 20 19:15:39 2001 UTC (22 years, 10 months ago) by mickey
Branch: MAIN
Changes since 1.25: +3 -3 lines
Diff to previous 1.25 (colored)

every change you make, every step you take, we'll be whatching you

Revision 1.25 / (download) - annotate - [select for diffs], Thu Jul 19 23:16:17 2001 UTC (22 years, 10 months ago) by espie
Branch: MAIN
Changes since 1.24: +7 -11 lines
Diff to previous 1.24 (colored)

Minor speed-up tweaks.
- use .for a b in   new syntax for make  to handle links.
- kill mips
- .include shlib_version, since its contents is happy as a Makefile
fragment (avoids 10 shell escapes per lib directory, roughly)

okay millert@

Revision 1.24 / (download) - annotate - [select for diffs], Wed Jul 18 13:23:03 2001 UTC (22 years, 10 months ago) by espie
Branch: MAIN
Changes since 1.23: +6 -1 lines
Diff to previous 1.23 (colored)

CDIAGFLAGS, added to CFLAGS if WARNINGS=Yes
Symetrize C++ situation: add CXXOPTS, CXXDIAGFLAGS.

Revision 1.23 / (download) - annotate - [select for diffs], Wed Jan 31 06:41:18 2001 UTC (23 years, 3 months ago) by art
Branch: MAIN
CVS Tags: OPENBSD_2_9_BASE, OPENBSD_2_9
Changes since 1.22: +2 -2 lines
Diff to previous 1.22 (colored)

ELF alpha has crtbegin and crtend.

Revision 1.22 / (download) - annotate - [select for diffs], Tue Dec 12 00:46:49 2000 UTC (23 years, 5 months ago) by provos
Branch: MAIN
Changes since 1.21: +1 -2 lines
Diff to previous 1.21 (colored)

gmp gone

Revision 1.21 / (download) - annotate - [select for diffs], Fri Feb 11 15:02:00 2000 UTC (24 years, 3 months ago) by ho
Branch: MAIN
CVS Tags: OPENBSD_2_8_BASE, OPENBSD_2_8, OPENBSD_2_7_BASE, OPENBSD_2_7
Changes since 1.20: +2 -1 lines
Diff to previous 1.20 (colored)

Add LIBKEYNOTE. (niklas@ ok)

Revision 1.20 / (download) - annotate - [select for diffs], Fri Nov 26 21:47:09 1999 UTC (24 years, 5 months ago) by millert
Branch: MAIN
Changes since 1.19: +2 -1 lines
Diff to previous 1.19 (colored)

Add ${LIBPERL}

Revision 1.19 / (download) - annotate - [select for diffs], Wed Sep 29 19:21:57 1999 UTC (24 years, 7 months ago) by beck
Branch: MAIN
CVS Tags: OPENBSD_2_6_BASE, OPENBSD_2_6
Changes since 1.18: +3 -1 lines
Diff to previous 1.18 (colored)

Add LIBSSL and LIBCRYPTO definitions

Revision 1.18 / (download) - annotate - [select for diffs], Thu Dec 31 23:49:46 1998 UTC (25 years, 4 months ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_5_BASE, OPENBSD_2_5
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored)

Add ${PIPE} in sys.mk so we do no need to add all over the places; evanc@concer.to

Revision 1.17 / (download) - annotate - [select for diffs], Sat Dec 19 19:07:34 1998 UTC (25 years, 5 months ago) by millert
Branch: MAIN
Changes since 1.16: +2 -2 lines
Diff to previous 1.16 (colored)

add PIPE variable, suitable for /etc/mk.conf, to enable gcc -pipe mode

Revision 1.16 / (download) - annotate - [select for diffs], Mon Jul 27 21:11:33 1998 UTC (25 years, 9 months ago) by niklas
Branch: MAIN
CVS Tags: OPENBSD_2_4_BASE, OPENBSD_2_4
Changes since 1.15: +3 -1 lines
Diff to previous 1.15 (colored)

LIBGMP was missing

Revision 1.15 / (download) - annotate - [select for diffs], Thu Mar 26 23:47:33 1998 UTC (26 years, 1 month ago) by deraadt
Branch: MAIN
CVS Tags: OPENBSD_2_3_BASE, OPENBSD_2_3
Changes since 1.14: +2 -1 lines
Diff to previous 1.14 (colored)

add LIBKAFS

Revision 1.14 / (download) - annotate - [select for diffs], Wed Nov 5 09:51:06 1997 UTC (26 years, 6 months ago) by deraadt
Branch: MAIN
Changes since 1.13: +8 -2 lines
Diff to previous 1.13 (colored)

.cxx support from Mathieu.Herrb@mipnet.fr

Revision 1.13 / (download) - annotate - [select for diffs], Sun Apr 27 21:38:34 1997 UTC (27 years ago) by millert
Branch: MAIN
CVS Tags: OPENBSD_2_2_BASE, OPENBSD_2_2, OPENBSD_2_1_BASE, OPENBSD_2_1
Changes since 1.12: +3 -3 lines
Diff to previous 1.12 (colored)

COPY -> INSTALL_COPY and STRIP -> INSTALL_STRIP changes.
For some reason the previous commit did not grab these.

Revision 1.12 / (download) - annotate - [select for diffs], Wed Mar 26 00:34:54 1997 UTC (27 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.11: +2 -1 lines
Diff to previous 1.11 (colored)

no libcrypt, fix DPADD

Revision 1.11 / (download) - annotate - [select for diffs], Wed Feb 26 03:55:16 1997 UTC (27 years, 2 months ago) by downsj
Branch: MAIN
Changes since 1.10: +2 -1 lines
Diff to previous 1.10 (colored)

Add LIBWRAP.

Revision 1.10 / (download) - annotate - [select for diffs], Sun Feb 9 16:41:50 1997 UTC (27 years, 3 months ago) by deraadt
Branch: MAIN
Changes since 1.9: +1 -2 lines
Diff to previous 1.9 (colored)

libcrypt went away a while back

Revision 1.9 / (download) - annotate - [select for diffs], Sun Feb 9 16:11:15 1997 UTC (27 years, 3 months ago) by mickey
Branch: MAIN
Changes since 1.8: +2 -1 lines
Diff to previous 1.8 (colored)

add ${LIBZ}

Revision 1.8 / (download) - annotate - [select for diffs], Wed Jan 15 00:36:56 1997 UTC (27 years, 4 months ago) by niklas
Branch: MAIN
Changes since 1.7: +9 -4 lines
Diff to previous 1.7 (colored)

Add DESTDIR support for crt{begin,end}.o (powerpc only so far)

Revision 1.7 / (download) - annotate - [select for diffs], Sun Dec 8 14:42:32 1996 UTC (27 years, 5 months ago) by downsj
Branch: MAIN
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored)

install -> ${INSTALL}, -c -> ${COPY}

Revision 1.6 / (download) - annotate - [select for diffs], Thu Nov 14 14:41:39 1996 UTC (27 years, 6 months ago) by mickey
Branch: MAIN
Changes since 1.5: +3 -3 lines
Diff to previous 1.5 (colored)

correct last fix.

Revision 1.5 / (download) - annotate - [select for diffs], Thu Nov 14 14:21:23 1996 UTC (27 years, 6 months ago) by mickey
Branch: MAIN
Changes since 1.4: +3 -3 lines
Diff to previous 1.4 (colored)

correct LINKS usage

Revision 1.4 / (download) - annotate - [select for diffs], Sun Jun 2 05:58:20 1996 UTC (27 years, 11 months ago) by tholo
Branch: MAIN
CVS Tags: OPENBSD_2_0_BASE, OPENBSD_2_0
Changes since 1.3: +2 -0 lines
Diff to previous 1.3 (colored)

Add LIBOLDCURSES
Add LIBTERMLIB

Revision 1.3 / (download) - annotate - [select for diffs], Mon Apr 22 01:28:36 1996 UTC (28 years, 1 month ago) by deraadt
Branch: MAIN
Changes since 1.2: +5 -3 lines
Diff to previous 1.2 (colored)

sync with netbsd 960418

Revision 1.2 / (download) - annotate - [select for diffs], Tue Mar 5 11:12:59 1996 UTC (28 years, 2 months ago) by mickey
Branch: MAIN
Changes since 1.1: +1 -0 lines
Diff to previous 1.1 (colored)

Labeling style changed ($OpenBSD$).
POSTINSTALL added to the <bsd.lkm.mk> (see bsd.README for details).

Revision 1.1.1.1 / (download) - annotate - [select for diffs] (vendor branch), Wed Oct 18 08:44:46 1995 UTC (28 years, 7 months ago) by deraadt
CVS Tags: netbsd_1_1
Changes since 1.1: +0 -0 lines
Diff to previous 1.1 (colored)

initial import of NetBSD tree

Revision 1.1 / (download) - annotate - [select for diffs], Wed Oct 18 08:44:46 1995 UTC (28 years, 7 months ago) by deraadt
Branch: MAIN

Initial revision

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.