2005-05-22 22:08:52 by Johnny C. Lam | Files touched by this commit (1035) |
Log message:
Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:
USE_GNU_TOOLS -> USE_TOOLS
awk -> gawk
m4 -> gm4
make -> gmake
sed -> gsed
yacc -> bison
|
2005-04-11 23:48:17 by Todd Vierling | Files touched by this commit (3539) |
Log message:
Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.
|
2005-03-05 02:19:30 by Tim Rightnour | Files touched by this commit (1) |
Log message:
Disable aix64 when building gcc on AIX. It seems to cause wierd
problems. I don't think gcc works properly on that target yet.
|
2005-02-24 10:03:12 by Alistair G. Crooks | Files touched by this commit (133) |
Log message:
Add RMD160 digests
|
2005-01-21 16:08:14 by Matthias Drochner | Files touched by this commit (3) | |
Log message:
update to 3.3.5
There was just a build system fix which we weren't affected by afaict.
|
2004-10-08 16:42:55 by Todd Vierling | Files touched by this commit (1) |
Log message:
No target information is available for Interix; disable it here.
|
2004-09-22 10:10:08 by Johnny C. Lam | Files touched by this commit (703) |
Log message:
Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.
All library names listed by *.la files no longer need to be listed
in the PLIST, e.g., instead of:
lib/libfoo.a
lib/libfoo.la
lib/libfoo.so
lib/libfoo.so.0
lib/libfoo.so.0.1
one simply needs:
lib/libfoo.la
and bsd.pkg.mk will automatically ensure that the additional library
names are listed in the installed package +CONTENTS file.
Also make LIBTOOLIZE_PLIST default to "yes".
|
2004-09-21 17:04:34 by Johnny C. Lam | Files touched by this commit (1) |
Log message:
Adapt to differences between the old buildlink3 wrapper scripts and the
new wrapper scripts.
|
2004-09-10 21:53:51 by Johnny C. Lam | Files touched by this commit (1) |
Log message:
Set LIBTOOLIZE_PLIST to "yes" and remove obsolete code that performed the
same function.
|
2004-09-08 12:22:01 by Johnny C. Lam | Files touched by this commit (5) |
Log message:
GCC generates and uses its own libtool to build shared libraries, and
the resulting shared library names don't necessarily match the NetBSD
names. Instead of hardcoding the shared library names in the PLISTs,
only list the libtool archives in the PLISTs and dynamically determine
the shared library names at post-install time and insert them into
the PLIST. This fixes PLIST errors on non-NetBSD platforms.
All of the magic is done in pkgsrc/lang/gcc3/language.mk. This should
probably be generalized into something that could be used by all
packages that use libtool.
|