The NetBSD Project

CVS log for src/external/bsd/file/lib/Makefile

[BACK] Up to [cvs.NetBSD.org] / src / external / bsd / file / lib

Request diff between arbitrary revisions


Keyword substitution: kv
Default branch: MAIN


Revision 1.20: download - view: text, markup, annotated - select for diffs
Fri Nov 22 15:12:38 2024 UTC (8 weeks, 1 day ago) by riastradh
Branches: MAIN
CVS tags: HEAD
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +7 -1 lines
libmagic: Don't export libzstd symbols.

Fixes part of:

PR lib/58842: libmagic leaks private and zstd symbols

Prompted by work on:

PR lib/58838: shared libraries in base should all have expsym lists

Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat Nov 2 22:02:39 2024 UTC (2 months, 2 weeks ago) by christos
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +2 -1 lines
make zstd a private library (for now)

Revision 1.18: download - view: text, markup, annotated - select for diffs
Fri Aug 18 19:00:11 2023 UTC (17 months ago) by christos
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630, perseant-exfatfs-base, perseant-exfatfs
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +2 -2 lines
merge conflicts between file-5.43 and file-5.45

Revision 1.17: download - view: text, markup, annotated - select for diffs
Tue Aug 8 06:27:31 2023 UTC (17 months, 1 week ago) by mrg
Branches: MAIN
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -2 lines
introduce new GCC 12 warning disables and use them in a few places

this introduces 4 new warning disable flags:

   CC_WNO_MISSING_TEMPLATE_KEYWORD
   CC_WNO_REGISTER
   CC_WNO_STRINGOP_OVERREAD
   CC_WNO_ARRAY_BOUNDS

and documents them in README.warnings.  of these, the string op
and array bounds are both problematic (real bugs) and also spurious
(not real bugs), and the other 2 are mostly temporary for older
3rd party code.

add some new uses of CC_WNO_STRINGOP_OVERFLOW.

fix m68k build for gallium and GCC 12.

Revision 1.16: download - view: text, markup, annotated - select for diffs
Sat Jun 3 21:31:45 2023 UTC (19 months, 2 weeks ago) by lukem
Branches: MAIN
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +1 -3 lines
adapt to ${CC_WNO_MAYBE_UNINITIALIZED}

Use ${CC_WNO_MAYBE_UNINITIALIZED} instead of
the older style more complex expressions.

Remove workarounds if they were for a specific
version of gcc < 10.

Revision 1.9.2.3: download - view: text, markup, annotated - select for diffs
Mon Apr 13 07:46:00 2020 UTC (4 years, 9 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.9.2.2: preferred, colored; branchpoint 1.9: preferred, colored; next MAIN 1.10: preferred, colored
Changes since revision 1.9.2.2: +2 -0 lines
Mostly merge changes from HEAD upto 20200411

Revision 1.9.2.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:04:05 2020 UTC (4 years, 9 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.9.2.1: preferred, colored; branchpoint 1.9: preferred, colored
Changes since revision 1.9.2.1: +4 -3 lines
Merge changes from current as of 20200406

Revision 1.15: download - view: text, markup, annotated - select for diffs
Tue Dec 17 18:59:39 2019 UTC (5 years, 1 month ago) by christos
Branches: MAIN
CVS tags: phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, netbsd-10-base, netbsd-10-1-RELEASE, netbsd-10-0-RELEASE, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +2 -4 lines
Fix sun2 (static linking)

Revision 1.14: download - view: text, markup, annotated - select for diffs
Tue Dec 17 13:35:43 2019 UTC (5 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +3 -1 lines
Add more libraries

Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue Dec 17 02:31:06 2019 UTC (5 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +3 -2 lines
merge conflicts

Revision 1.12: download - view: text, markup, annotated - select for diffs
Fri Oct 4 09:47:27 2019 UTC (5 years, 3 months ago) by mrg
Branches: MAIN
CVS tags: phil-wifi-20191119
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +3 -1 lines
turn off various warnings for various things:

- file has looks bogus maybe-uninitialized
- llvm triggers an attribute violation:
  ScheduleDAGInstrs.cpp:1430:14: error: declaration of
    'llvm::raw_ostream& llvm::operator<<(llvm::raw_ostream&, const llvm::ILPValue&)'
    with attribute 'noinline' follows inline declaration [-Werror=attributes]
- ntp and pkg_install have obvious restrict violations, should be
  fixed but i'm avoiding patching upstream code in this pass
- tftp has an array bounds that doesn't seem real issue
- sysinst's partman.c has major problem with passing the same
  string as source and dest in snprintf, as a way to strcat
  with formatting which trip restrict violations.  non trivial
  to fix so for now the warning is elided.
- Xext's XEVI.c has similar issue as partman.c

everyone and GCC 8 gets these warnings turned off for now:

	-Wno-format-truncation
	-Wno-stringop-overflow
	-Wno-stringop-truncation
	-Wno-cast-function-type

as they trip a large amount of code.  most of them should be
investigated, but the few i looked at were not finding actually
real bugs, vs instances of poor coding, so skipping for now.

Revision 1.9.2.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 21:44:47 2019 UTC (5 years, 7 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +4 -5 lines
Sync with HEAD

Revision 1.8.10.3: download - view: text, markup, annotated - select for diffs
Wed Dec 26 14:01:15 2018 UTC (6 years ago) by pgoyette
Branches: pgoyette-compat
CVS tags: pgoyette-compat-merge-20190127
Diff to: previous 1.8.10.2: preferred, colored; branchpoint 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8.10.2: +2 -3 lines
Sync with HEAD, resolve a few conflicts

Revision 1.8.4.1: download - view: text, markup, annotated - select for diffs
Fri Dec 14 12:14:08 2018 UTC (6 years, 1 month ago) by martin
Branches: netbsd-8
CVS tags: netbsd-8-3-RELEASE, netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1
Diff to: previous 1.8: preferred, colored; next MAIN 1.9: preferred, colored
Changes since revision 1.8: +2 -3 lines
Pull up following revision(s) (requested by msaitoh in ticket #1136):

	external/bsd/file/lib/Makefile: revision 1.11

Use DPSRCS for magic.h. OK'd by Christos.

Revision 1.11: download - view: text, markup, annotated - select for diffs
Wed Dec 12 06:36:13 2018 UTC (6 years, 1 month ago) by msaitoh
Branches: MAIN
CVS tags: phil-wifi-20190609, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, netbsd-9-base, netbsd-9-4-RELEASE, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -3 lines
 Use DPSRCS for magic.h. OK'd by Christos.

Revision 1.8.10.2: download - view: text, markup, annotated - select for diffs
Sat Oct 20 06:58:21 2018 UTC (6 years, 3 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.8.10.1: preferred, colored; branchpoint 1.8: preferred, colored
Changes since revision 1.8.10.1: +3 -3 lines
Sync with head

Revision 1.10: download - view: text, markup, annotated - select for diffs
Fri Oct 19 00:11:48 2018 UTC (6 years, 3 months ago) by christos
Branches: MAIN
CVS tags: pgoyette-compat-1126, pgoyette-compat-1020
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +3 -3 lines
Merge conflicts

Revision 1.8.10.1: download - view: text, markup, annotated - select for diffs
Sun Apr 22 07:20:09 2018 UTC (6 years, 9 months ago) by pgoyette
Branches: pgoyette-compat
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2 lines
Sync with HEAD

Revision 1.9: download - view: text, markup, annotated - select for diffs
Sun Apr 15 19:45:32 2018 UTC (6 years, 9 months ago) by christos
Branches: MAIN
CVS tags: phil-wifi-base, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422
Branch point for: phil-wifi
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +2 -2 lines
merge conflicts for file-5.33

Revision 1.7.2.1: download - view: text, markup, annotated - select for diffs
Fri Apr 21 16:51:24 2017 UTC (7 years, 9 months ago) by bouyer
Branches: bouyer-socketcan
Diff to: previous 1.7: preferred, colored; next MAIN 1.8: preferred, colored
Changes since revision 1.7: +2 -2 lines
Sync with HEAD

Revision 1.6.8.1: download - view: text, markup, annotated - select for diffs
Mon Mar 20 06:52:20 2017 UTC (7 years, 10 months ago) by pgoyette
Branches: pgoyette-localcount
Diff to: previous 1.6: preferred, colored; next MAIN 1.7: preferred, colored
Changes since revision 1.6: +4 -2 lines
Sync with HEAD

Revision 1.8: download - view: text, markup, annotated - select for diffs
Fri Feb 10 18:11:18 2017 UTC (7 years, 11 months ago) by christos
Branches: MAIN
CVS tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-compat-base, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-8-base, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, matt-nb8-mediatek-base, matt-nb8-mediatek, bouyer-socketcan-base1
Branch point for: pgoyette-compat, netbsd-8
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +2 -2 lines
fix der.c bump shared library

Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Jan 10 13:51:36 2017 UTC (8 years ago) by christos
Branches: MAIN
CVS tags: bouyer-socketcan-base
Branch point for: bouyer-socketcan
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +3 -1 lines
Build magic.h before all objs.

Revision 1.2.8.2: download - view: text, markup, annotated - select for diffs
Tue Aug 19 23:46:47 2014 UTC (10 years, 5 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.2.8.1: preferred, colored; branchpoint 1.2: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2.8.1: +2 -2 lines
Rebase to HEAD as of a few days ago.

Revision 1.2.2.1: download - view: text, markup, annotated - select for diffs
Thu May 22 15:45:00 2014 UTC (10 years, 8 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.2: preferred, colored; next MAIN 1.3: preferred, colored
Changes since revision 1.2: +7 -1 lines
sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs.  ("Protocol error: too many arguments")

Revision 1.6: download - view: text, markup, annotated - select for diffs
Sun Dec 1 20:15:42 2013 UTC (11 years, 1 month ago) by christos
Branches: MAIN
CVS tags: yamt-pagecache-base9, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, pgoyette-localcount-base, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-base, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0, netbsd-7, localcount-20160914
Branch point for: pgoyette-localcount
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +2 -4 lines
Finish version auto-setting.

Revision 1.5: download - view: text, markup, annotated - select for diffs
Sun Dec 1 20:01:14 2013 UTC (11 years, 1 month ago) by christos
Branches: MAIN
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +4 -2 lines
Get version from the configure script

Revision 1.4: download - view: text, markup, annotated - select for diffs
Tue Aug 13 19:29:45 2013 UTC (11 years, 5 months ago) by drochner
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2 lines
add to CLEANFILES at some places, for generated files

Revision 1.2.8.1: download - view: text, markup, annotated - select for diffs
Sun Jun 23 06:26:33 2013 UTC (11 years, 6 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +7 -1 lines
resync from head

Revision 1.3: download - view: text, markup, annotated - select for diffs
Sat Mar 23 16:15:59 2013 UTC (11 years, 10 months ago) by christos
Branches: MAIN
CVS tags: riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, khorben-n900, agc-symver-base, agc-symver
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +7 -1 lines
merge new file

Revision 1.2: download - view: text, markup, annotated - select for diffs
Sun Aug 14 09:06:12 2011 UTC (13 years, 5 months ago) by christos
Branches: MAIN
CVS tags: yamt-pagecache-tag8, yamt-pagecache-base8, yamt-pagecache-base7, yamt-pagecache-base6, yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus
Branch point for: yamt-pagecache, tls-maxphys
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +3 -1 lines
fix non-literal strings where they are not needed.

Revision 1.1.2.2: download - view: text, markup, annotated - select for diffs
Wed May 13 18:52:04 2009 UTC (15 years, 8 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.1.2.1: preferred, colored; branchpoint 1.1: preferred, colored; next MAIN 1.2: preferred, colored
Changes since revision 1.1.2.1: +35 -0 lines
Sync with HEAD.

Second commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html

Revision 1.1.2.1
Fri May 8 17:28:02 2009 UTC (15 years, 8 months ago) by jym
Branches: jym-xensuspend
FILE REMOVED
Changes since revision 1.1: +0 -35 lines
file Makefile was added on branch jym-xensuspend on 2009-05-13 18:52:04 +0000

Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri May 8 17:28:02 2009 UTC (15 years, 8 months ago) by christos
Branches: MAIN
CVS tags: matt-premerge-20091211, matt-mips64-premerge-20101231, jym-xensuspend-nbase, jym-xensuspend-base, cherry-xenmp-base, cherry-xenmp, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Branch point for: jym-xensuspend
build glue and lint fixes

Diff request

This form allows you to request diffs 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.

Log view options

CVSweb <webmaster@jp.NetBSD.org>