Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2004-11-28 | Don't show the currently selected options if there aren't any. | jlam | 1 | -1/+3 | |
2004-11-28 | Reverse the tests so that we actually check for the existence and not | jlam | 3 | -18/+18 | |
the non-existence of the library -- this more accurately reflects what we want to say. | |||||
2004-11-27 | CFLAGS+=-ma because most packages expect alloca to be available and | grant | 1 | -1/+5 | |
this makes it so with xlc. | |||||
2004-11-27 | Remove "LYNX_SCREEN_LIB" option, not supported by the lynx package right | xtraeme | 1 | -6/+1 | |
now, use PKG_OPTIONS.lynx+=foo bar instead. | |||||
2004-11-27 | Output the currently selected options after telling the user which | jlam | 1 | -13/+21 | |
options are available. | |||||
2004-11-26 | Match NetBSD-2.x_RCn as well as NetBSD-2.x. | jlam | 1 | -2/+3 | |
2004-11-26 | Move the section that defines DLOPEN_REQUIRE_PTHREAD outside of the | jlam | 1 | -22/+22 | |
CHECK_BUILTIN.dl-protected section so that it's value can be usd after dlopen.buildlink3.mk is included. This should fix PR pkg/28422. | |||||
2004-11-26 | Check that USE_BUILTIN.dl is "yes", not that it's just defined. | jlam | 1 | -2/+2 | |
2004-11-26 | Don't auto-add -ldl to LIBS since most GNU configure scripts already | jlam | 1 | -2/+6 | |
check for this condition. | |||||
2004-11-26 | Don't append BUILDLINK_CFLAGS.pthread to itself if pthread.builtin.mk | jlam | 1 | -1/+2 | |
gets included multiple times. | |||||
2004-11-26 | Move all dlopen-handling code into dlopen.{builtin,buildlink3}.mk. | jlam | 2 | -12/+6 | |
2004-11-26 | More tightly integrate the OSF1 changes into pthread.builtin.mk by using | jlam | 1 | -24/+17 | |
more feature tests instead of OPSYS tests. | |||||
2004-11-26 | Split dlopen.buildlink3.mk into two files: dlopen.buildlink3.mk, which | jlam | 2 | -36/+98 | |
is included by packages that use dlopen(), and dlopen.builtin.mk, which checks for the presence of built-in dl*() functions. On Darwin, including dlopen.buildlink3.mk will cause the devel/dlcompat package to be used if the base system lacks a dlcompat library. | |||||
2004-11-26 | Fix the "MACHINE_PLATFORM" patterns by appending "-*". | jlam | 1 | -3/+3 | |
2004-11-26 | Define DL_{CFLAGS,LDFLAGS,LIBS} as compiler/linker flags for building | jlam | 1 | -1/+25 | |
or linking code that uses dl*() functions. Also re-structure a bit to pave the way for a future dlopen.builtin.mk that handles -ldl on some platforms and dlcompat on Darwin. | |||||
2004-11-26 | Missing a make variable modifier. | jlam | 1 | -2/+2 | |
2004-11-26 | Add missing quotes. | jlam | 1 | -3/+3 | |
2004-11-25 | Don't recursively define _DLOPEN_REQUIRE_PTHREADS. | jlam | 1 | -2/+2 | |
2004-11-25 | Perl is all about loadable perl modules, so include dlopen.buildlink3.mk. | jlam | 1 | -11/+1 | |
If we include pthread.buildlink3.mk, then build with Perl ithreads support. Bump the PKGREVISION. Nuke the perl58-thread package. The perl package can now be forcibly built with thread support by setting PERL5_USE_THREADS to "yes". | |||||
2004-11-25 | Only include pthreads if we prefer native pthreads. This allows building | jlam | 1 | -1/+3 | |
pkgsrc without any pthreads if we don't want to. | |||||
2004-11-25 | dlopen.buildlink3.mk should be added to packages that use dlopen() to | jlam | 2 | -1/+44 | |
load shared objects. Some platforms require pthreads to be linked into the application if it uses dlopen() or else the applications will core dump when they dlopen a shared module that _is_ linked with pthread support. Including dlopen.buildlink3.mk in a package Makefile will cause pthread.buildlink3.mk to also be included. It is up to the package to ensure that PTHREAD_{CFLAGS,LDFLAGS,LIBS} (defined by pthread.buildlink3.mk) are passed to the compiler when building/linking the applications, possibly by setting PTHREAD_AUTO_VARS to "yes" in the package Makefile. | |||||
2004-11-25 | Default USE_GIF to "yes". This affects graphics/tiff and x11/qt1, | jlam | 1 | -2/+2 | |
which will now be built by default with the ability to write LZW-compressed files. | |||||
2004-11-25 | Default PTHREAD_AUTO_VARS to the safer value of "no". Most packages | jlam | 1 | -2/+2 | |
that use pthreads already implement their own probes for pthreads, so we don't need to auto-add the compiler/linker flags. | |||||
2004-11-24 | Sync MASTER_SITE_SOURCEFORGE with reality. | wiz | 1 | -4/+4 | |
2004-11-23 | Don't hard-code "lang/perl58". Instead, use the value of PERL5_PKGSRCDIR | jlam | 2 | -4/+6 | |
which is computed based on whether perl or perl-thread should be the default. | |||||
2004-11-23 | Fix the find command used to print out all of the .broken* files. It now | jlam | 1 | -2/+2 | |
prints out both the .broken.html and .broken.work.html files instead of just the latter. | |||||
2004-11-23 | Use CCPATH instead of referring to the C compiler by its full path in | jlam | 5 | -20/+20 | |
multiple places. | |||||
2004-11-23 | Whitespace changes. | jlam | 2 | -18/+18 | |
2004-11-23 | add {CC,CXX,FC,F77}PATH variables which give the complete path and | dmcmahill | 5 | -5/+17 | |
name of the {CC,CXX,FC,F77} compilers. These will be used by pkgs which need to know which compiler and where it is at run time. Approved by jlam@ | |||||
2004-11-22 | Now that no package uses USE_GCC_SHLIB any longer, remove support | wiz | 2 | -21/+8 | |
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-11-22 | Remove a duplicate gnome mirror, and fix path on a second one. | wiz | 1 | -3/+2 | |
2004-11-22 | Change perlfiles var to look for files from perl*, | wiz | 1 | -2/+2 | |
not only perl, so that perl-thread files are not marked as leftovers. | |||||
2004-11-20 | add OSF1 bits. | grant | 1 | -0/+1020 | |
2004-11-20 | Add AMANDA_TMP | kim | 1 | -1/+6 | |
2004-11-20 | quieten spurious broken pipe output from cc. | grant | 1 | -4/+4 | |
2004-11-20 | add pthread glue for OSF1, patch from Tobias Nygren. | grant | 1 | -1/+7 | |
2004-11-20 | backout cvs misfire | grant | 1 | -2/+1 | |
2004-11-20 | add framework support for Tru64 and the Compaq C compiler. | grant | 9 | -7/+397 | |
patches provided by Tobias Nygren <tnn at netilium dot org> with minor changes by me. | |||||
2004-11-19 | Remove PERL5_USE_THREADS setting now that the default is perl58-thread. | tv | 1 | -4/+1 | |
2004-11-18 | OpenBSD's pax(1) doesn't support -O flag, so use the pkgsrc one. | xtraeme | 1 | -2/+2 | |
2004-11-18 | OpenBSD was fork()ed from NetBSD, so this uses -lossaudio as well. | xtraeme | 1 | -2/+2 | |
2004-11-17 | Remove some obsolete/deprecated variables that have been in this file | jlam | 1 | -43/+1 | |
for over two years. They're officially dead now for the upcoming branch and beyond. | |||||
2004-11-17 | Move selection of the default perl58 (whether it is threaded or not) into | jlam | 1 | -1/+11 | |
bsd.pkg.mk. lang/perl58 now always builds perl58, while lang/perl58-thread builds perl58-thread (POLS). Fixes PR pkg/28343. | |||||
2004-11-17 | PTHREAD_AUTO_VARS is "yes" or "no" for whether the values of the | jlam | 1 | -1/+10 | |
variables PTHREAD_{CFLAGS,CPPFLAGS,LDFLAGS,LIBS} should be automatically added to their respective variables. Defaults to "yes". Packages that only require some parts to be linked the the pthreads compiler/linker options should set this to "no" and selectively add those options via patches to the right makefiles.. | |||||
2004-11-17 | Generalize BUILDLINK_AUTO_LIBS.<pkg> to BUILDLINK_AUTO_VARS.<pkg>, | jlam | 1 | -19/+20 | |
which is "yes" or "no" for whether the values of any of BUILDLINK_{CPPFLAGS,CFLAGS,LDFLAGS,LIBS}.<pkg> should be appended automatically to their respective variables. | |||||
2004-11-17 | BUILDLINK_AUTO_LIBS.<pkg> is "yes" or "no" for whether BUILDLINK_LIBS.<pkg> | jlam | 1 | -6/+13 | |
should automatically be appended to LIBS. It defaults to "yes". | |||||
2004-11-17 | For some reason EVAL_PREFIX is not properly using the _DEFAULT values, so | tv | 2 | -2/+4 | |
re-add the ?= assignments. (Will be fixed properly later.) | |||||
2004-11-17 | Don't check _*PREFIX/bin for the requested compiler hook program. If | tv | 2 | -27/+17 | |
PKGSRC_COMPILER requested it, assume that it's available, so that compilation will (properly) fail if the hook program is somehow not correctly installed. | |||||
2004-11-17 | If we don't need to link against -ldb or -ldb1 (because the DB functions | jlam | 1 | -3/+5 | |
are a part of libc), then remove "-ldb" altogether. This should fix GNU configure scripts that assume you need to at least link against "-ldb". | |||||
2004-11-16 | Preserve the .work.log file from a broken build as .broken.work.html | jlam | 4 | -6/+34 | |
in the package directory, and add a link to it from .broken.html at the point where the build fails. Also adjust the auxilliary scripts to handle/cleanup .broken.work.html files. This should enhance the ability of developers to debug broken builds by providing important information about what is happening as a build progresses and fails. |