summaryrefslogtreecommitdiff
path: root/lang/gcc
AgeCommit message (Collapse)AuthorFilesLines
2008-02-01gcc-2 needs to be built with gcc3 on netbsd-4. From Aleksej Saushev.tnn1-1/+6
2007-06-12Can't work on DragonFly due to missing TLS support.joerg1-2/+2
2006-12-12Replace mk/bsd.prefs.mk includes with bsd.fast.prefs.mk includes.joerg1-2/+2
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-09-27Set MAKE_ENV+=SHELL=${CONFIG_SHELL} for all gcc packages. Fixes SHELL setabs1-1/+2
to non sh compatible shell in environment. Thanks to Georg Schwarz.
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
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-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-04-06Over 1200 files touched but no revisions bumped :)reed1-3/+3
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-20* Nuke all references to and definitions of INFO_DIR in package Makefilesjlam2-6/+11
and replace with appropriate references to PKGINFODIR instead. * Properly account for split info files during installation. * Move info file listings directly into the package PLISTs. This fixes info-file-related PLIST problems.
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-3/+4
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Ran "pkglint --autofix", which corrected some of the quoting issues inrillig1-3/+3
CONFIGURE_ARGS.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-5/+5
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-11-09NOT_FOR_PLATFORM Interix.tv1-2/+2
2005-06-24Prevent paths to the build directories from being included in the package.kristerw1-2/+5
Bump PKGREVISION.
2005-05-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-24Add RMD160 digestsagc1-1/+3
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-3/+3
Suggested by Roland Illig, ok'd by various.
2004-11-22Now that no package uses USE_GCC_SHLIB any longer, remove supportwiz1-2/+2
for it from compiler.mk. Move the variable of the same name used by compiler/gcc.mk and the gcc* buildlink3 files into private namespace (_USE_GCC_SHLIB).
2004-07-06Unused.wiz1-53/+0
2004-06-29I can't count.gavan1-2/+2
2004-06-29gcc installs in a subdirectory of ${BUILDLINK_PREFIX.gcc}, so makegavan1-2/+3
sure that appropriate subdirectory is passed in BUILDLINK_LIBDIRS.gcc. Fixes PR 26109. OK'd by grant.
2004-05-02Convert to buildlink3.snj1-2/+2
2004-03-25When building devel/gmake as a build dependency, build it without localejlam1-1/+2
support. This makes it easier to "bootstrap" the installation of a pkgsrc compiler without a lot of additional indirect build dependencies on gettext, libiconv, libtool, etc.
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-5/+4
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-5/+8
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-24Buildlink the gcc libraries and headers early so that fake-la can findjlam1-2/+2
them.
2004-02-19gcc 2.95 does not support the x86_64 architecture.kristerw1-2/+2
2004-02-05bsd.compiler.mk no longer adds dependencies or includes buildlink*.mk filesjlam1-2/+5
if it's being included by bsd.prefs.mk, so we can safely move the BUILDLINK_DEPENDS line to its usual location.
2004-02-05List the correct directories for finding GCC libraries so that they willjlam1-1/+3
be added automatically to library and run-time library search paths.
2004-02-02Don't rely on _GCCARCHSUBDIR.jlam1-8/+8
2004-02-01Add a buildlink3.mk file for use by bsd.compiler.mk. Note that we alwaysjlam1-0/+22
add the dependency regardless of the depth.
2004-02-01Use _GCC_REQD instead of GCC_REQD since we just want a single value.jlam1-2/+4
2004-02-01Changes to support new compiler selection framework.jlam1-6/+10
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2003-12-18Apply patch from Harry Waddell in PR 23289 to chill in gcc 2.95.3, toben3-3/+19
fix a build error when using gcc 3. Also bumps PKGREVISION.
2003-11-25Make this patch be more selective so that this package will workdmcmahill2-11/+32
on NetBSD/alpha versions 1.6 and newer. Previously, this package only worked on pre-1.6. Fixes problems noted in recent bulk builds.
2003-09-12tidy up handling of LDFLAGS wrt USE_GCC_SHLIB a little.grant1-7/+1
2003-09-12start of improved compiler handling, mostly derived from the existinggrant1-17/+3
gcc buildlink2.mk files and splitting the non-buildlink2.mk bits out into compiler.mk. this allows USE_GCC2 and USE_GCC3 to work with non-buildlink2 packages again.
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-08-08include major version number in COMMENT for distinction, some minorgrant1-2/+2
COMMENT tweaks.
2003-07-23fix GCC_VERSION so GCC_ARCHDIR is correctly set.grant1-9/+8
re-arrange gcc/Makefile a bit to more closely resemble gcc3/Makefile.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-13oops, we still want the mk files for non-pkgsrc purposes. unbumpgrant3-4/+12
PKGREVISIONs.
2003-07-13greatly simplify the handling of pkgsrc gcc, and eliminate a bug whichgrant4-49/+11
has allowed these packages to work :) set CC, CXX, CPP and F77 in gcc{,3}/buildlink2.mk. you now only need to define USE_GCC2 or USE_GCC3 to use the pkgsrc gcc of your choice. the share/examples/gcc/mk.conf and gcc3/mk.conf files are no longer installed. bump PKGREVISIONs.
2003-07-12Add some patches against basesrc gcc implementing the "if-exists"jtb4-3/+527
function in the specs file. Enables the linker to pick up crti.o and crtn.o if they exist.
2003-07-06Ooops I missed this INSTALL script while doing the conversionseb1-26/+0
to USE_NEW_TEXINFO (I should have added it to INSTALL_TEMPLATES). Anyway as info files are now registered in a package specific info directory file I guess it can be removed.
2003-07-06Reorder a bit so pkglint is happier.seb1-4/+5
2003-07-06No need anymore to specify --infodir=... to configure.seb1-6/+3
Factorize some install commands.