2006-12-16 15:07:24 by Todd Vierling | Files touched by this commit (1) |
Log message:
Fix !defined(IS_BUILTIN.xproto) inherited when this was copied from
xproto; should have been .renderproto so that the variable always gets
defined somehow. (Under older bmake, there was a syntax error when
IS_BUILTIN.renderproto was later checked, because for x11-links, it was
never defined in the first place.)
Remove check for X11BASE==LOCALBASE. There's even a comment there saying
we don't want to check that, so don't do it.
|
2006-12-16 02:04:43 by Joerg Sonnenberger | Files touched by this commit (6) |
Log message:
For reasons beyond my compressions, (b)make handles
.if foo || bar
BAZ= no
.else
BAZ= yes
.endif
different from
.if foo
BAZ= no
.elif bar
BAZ= no
.else
BAZ= yes
.endif
in some situations exposed in this builtin.mk. Workaround this for now.
|
2006-12-15 21:43:01 by Joerg Sonnenberger | Files touched by this commit (6) |
Log message:
Don't assume that we have a builtin version of the X11 proto packages,
if LOCALBASE and X11BASE are identical.
|
2006-12-12 22:52:38 by Joerg Sonnenberger | Files touched by this commit (63) |
Log message:
Replace mk/bsd.prefs.mk includes with bsd.fast.prefs.mk includes.
The redundant parsing of bsd.prefs.mk is mostly avoided now and
parse time e.g. for x11/kdebase3 gets reduced by up to 10%.
|
2006-11-03 18:09:27 by Joerg Sonnenberger | Files touched by this commit (4) |
Log message:
Support DESTDIR. Take maintainership.
|
2006-07-22 06:51:29 by Roland Illig | Files touched by this commit (1) |
Log message:
The shell code to symlink the pkg-config file is hidden as usual.
|
2006-07-22 06:46:20 by Roland Illig | Files touched by this commit (107) |
Log message:
Added "c" to USE_LANGUAGES for packages that use GNU configure scripts,
since they always need a C compiler, even when the source code is
completely in C++.
For some other packages, stated in the comment that a C compiler is
really not needed.
|
2006-07-11 16:42:04 by Joerg Sonnenberger | Files touched by this commit (12) |
Log message:
Don't use the builtin framework for the various Xorg components
when X11_TYPE=xorg. Let them include x11.buildlink3.mk directly.
Remove the manual USE_BUILTIN declarations from xorg-libs/b3.mk.
This fixes a symmetry in the dependency list depending on whether
xorg-libs is installed already or not.
Discussed with jlam@
|
2006-07-09 01:11:17 by Johnny C. Lam | Files touched by this commit (877) |
Log message:
Change the format of BUILDLINK_ORDER to contain depth information as well,
and add a new helper target and script, "show-buildlink3", that outputs
a listing of the buildlink3.mk files included as well as the depth at
which they are included.
For example, "make show-buildlink3" in fonts/Xft2 displays:
zlib
fontconfig
iconv
zlib
freetype2
expat
freetype2
Xrender
renderproto
|
2006-07-09 00:39:49 by Johnny C. Lam | Files touched by this commit (877) |
Log message:
Track information in a new variable BUILDLINK_ORDER that informs us
of the order in which buildlink3.mk files are (recursively) included
by a package Makefile.
|