Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
Provided in PR 18042 by Julio Merino.
Buildtool is a set of helper tools designed to make easy to
configure source packages and build them, also making them more
portable.
Buildtool can be tought as the BSD replacement of GNU automake,
autoconf and libtool.
|
|
|
|
Changes between 1.0.4 and 1.0.5
* Win32 work [Tor Lillqvist]
- Handle choosing the right font for CJK languages based on language tags.
- Fix boxes showing up for tabs [Florent Duguet]
- Better handling of finding ASCII font names.
- Cygwin compilation fix [Masahiro Sakai]
- Fix --with-included-modules on win32 [Arnaud Charlet]
- Various build fixes and cleanups
- Make mini-xft find windows font directory automatically
* Bug fix for pango_scan_int() needed for recent GTK+.
* Improve language specific charset ordering basic-x11 [James Su, Brian Yuan]
* Fix symbols that shouldn't have been exported [Jacob Berkman, Nils Nordman]
* Some cross-compiling fixes [J. Ali Harlow]
* Various build fixes [Havoc Pennington, others]
* Fix check for no-backend being found. [Andreas J. Guezlow]
|
|
|
|
|
|
XXX Fix me for OPSYS != NetBSD
|
|
|
|
|
|
Add dependency on graphics/p5-GD.
|
|
Use GMAKE, BSD_INSTALL_DATA and LN in scripts.
|
|
|
|
So remove it and associated variable.
|
|
- use buildlink2
Changes :
0.47 Mon Aug 26 03:54:22 PDT 2002
* Tatsuhiko Miyagawa noticed Test::Builder was accidentally storing
objects passed into test functions causing problems with tests
relying on object destruction.
- Added example of calculating the number of tests to Test::Tutorial
- Peter Scott made the ending logic not fire on child processes when
forking.
* Test::Builder is once again ithread safe.
0.46 Sat Jul 20 19:57:40 EDT 2002
- Noted eq_set() isn't really a set comparision.
- Test fix, exit codes are broken on MacPerl (bleadperl@16868)
- Make Test::Simple install itself into the core for >= 5.8
- Small fixes to Test::Tutorial and skip examples
* Added TB->has_plan() from Adrian Howard
- Clarified the meaning of 'actual_ok' from TB->details
* Added TB->details() from chromatic
- Neil Watkiss fixed a pre-5.8 test glitch with threads.t
* If the test died before a plan, it would exit with 0 [ID 20020716.013]
0.45 Wed Jun 19 18:41:12 EDT 2002
- Andy Lester made the SKIP & TODO docs a bit clearer.
- Explicitly disallowing double plans. (RT #553)
- Kicking up the minimum version of Test::Harness to one that's
fairly bug free.
- Made clear a common problem with use_ok and BEGIN blocks.
- Arthur Bergman made Test::Builder thread-safe.
|
|
Changes :
2.26 Wed Jun 19 16:58:02 EDT 2002
- Workaround for MacPerl's lack of a working putenv. It will never
see the PERL5LIB environment variable (perl@16942).
2.25 Sun Jun 16 03:00:33 EDT 2002
- $Strap is now a global to allow Test::Harness::Straps
experimentation.
- Little spelling nit in a diagnostic.
- Chris Richmond noted that the runtests() docs were wrong. It will
die, not return false, when any tests fail. This is silly, but
historically necessary for 'make test'. Docs corrected.
- MacPerl test fixes from Pudge. (mutation of bleadperl@16989)
- Undef warning introduced in 2.24 on skipped tests with no reasons
fixed.
* Test::Harness now depends on File::Spec
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Eric Jacoboni (jaco at scrogneugneu dot org)
Locale::gettext is a perl5 module quickly written to gain access to
the C library functions for internatialization. They work just like
the C versions.
|
|
Patch provided in PR pkg/18701 by Julio Merino <jmmv@menta.net>
|
|
|
|
2. Force install the support file for Emacs/w3.
|
|
|
|
|
|
case.
|
|
|
|
|
|
Add entry for 7450 (tibook 550 combo), and mention -pipe (to speed
up compilation) in manpage.
|
|
BUILDLINK_DEPENDS.gettext knob is sufficient.
|
|
gettext-lib/buildlink2.mk to convince the configure script that the system
libintl really is okay.
|
|
the version of the gettext library needed by a package. The system libintl
is considered to be equivalent to "gettext-lib-0.10.35nb1". Add a few
additional bits to fool newer configure scripts into accepting the system
libintl if GETTEXT_REQD == 0.10.35nb1.
|
|
* We can't use the funky SETENV construct because it breaks some of the
code related to computing package sizes. Use a different way to remove
unwanted environment variables from the shell environment before calling
BSD make.
|
|
won't accept NetBSD's "intl" library.
|
|
|
|
|
|
|
|
Unix-like systems.
|
|
|
|
|
|
|
|
Introduce USE_PTL2 so that PTL2 can still be used as an alternative (e.g.
for debugging).
Only include ptl2/buildlink2.mk if USE_PTL2 is set and no native threads
are available.
Bump PKGREVISIONS.
|
|
Changes since 3.79.1 are:
Version 3.80
* A new feature exists: order-only prerequisites. These prerequisites
affect the order in which targets are built, but they do not impact
the rebuild/no-rebuild decision of their dependents. That is to say,
they allow you to require target B be built before target A, without
requiring that target A will always be rebuilt if target B is updated.
Patch for this feature provided by Greg McGary <greg@mcgary.org>.
* For compatibility with SysV make, GNU make now supports the peculiar
syntax $$@, $$(@D), and $$(@F) in the prerequisites list of a rule.
This syntax is only valid within explicit and static pattern rules: it
cannot be used in implicit (suffix or pattern) rules. Edouard G. Parmelan
<egp@free.fr> provided a patch implementing this feature; however, I
decided to implement it in a different way.
* The argument to the "ifdef" conditional is now expanded before it's
tested, so it can be a constructed variable name.
Similarly, the arguments to "export" (when not used in a variable
definition context) and "unexport" are also now expanded.
* A new function is defined: $(value ...). The argument to this
function is the _name_ of a variable. The result of the function is
the value of the variable, without having been expanded.
* A new function is defined: $(eval ...). The arguments to this
function should expand to makefile commands, which will then be
evaluated as if they had appeared in the makefile. In combination
with define/endef multiline variable definitions this is an extremely
powerful capability. The $(value ...) function is also sometimes
useful here.
* A new built-in variable is defined, $(MAKEFILE_LIST). It contains a
list of each makefile GNU make has read, or started to read, in the
order in which they were encountered. So, the last filename in the
list when a makefile is just being read (before any includes) is the
name of the current makefile.
* A new built-in variable is defined: $(.VARIABLES). When it is
expanded it returns a complete list of variable names defined by all
makefiles at that moment.
* A new command-line option is defined, -B or --always-make. If
specified GNU make will consider all targets out-of-date even if they
would otherwise not be.
* The arguments to $(call ...) functions were being stored in $1, $2,
etc. as recursive variables, even though they are fully expanded
before assignment. This means that escaped dollar signs ($$ etc.)
were not behaving properly. Now the arguments are stored as simple
variables. This may mean that if you added extra escaping to your
$(call ...) function arguments you will need to undo it now.
* The variable invoked by $(call ...) can now be recursive: unlike other
variables it can reference itself and this will not produce an error
when it is used as the first argument to $(call ...) (but only then).
* New pseudo-target .LOW_RESOLUTION_TIME, superseding the configure
option --disable-nsec-timestamps. You might need this if your build
process depends on tools like "cp -p" preserving time stamps, since
"cp -p" (right now) doesn't preserve the subsecond portion of a time
stamp.
* Updated translations for French, Galician, German, Japanese, Korean,
and Russian. New translations for Croatian, Danish, Hebrew, and
Turkish.
* Updated internationalization support to Gettext 0.11.5.
GNU make now uses Gettext's "external" feature, and does not include
any internationalization code itself. Configure will search your
system for an existing implementation of GNU Gettext (only GNU Gettext
is acceptable) and use it if it exists. If not, NLS will be disabled.
See ABOUT-NLS for more information.
* Updated to autoconf 2.54 and automake 1.7. Users should not be impacted.
|
|
changes unknown
|