Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2002-07-18 | Don't patch one file multiple times - merge the changes into one | agc | 8 | -94/+51 | |
patch file. Use the new CONFIG_SUB_OVERRIDE and CONFIG_GUESS_OVERRIDE mechanisms. Recognise netbsdelf on i386 platforms - more mods will be necessary for different platforms. | |||||
2002-06-23 | Use GNU_CONFIGURE_PREFIX instead of HAS_CONFIGURE workaround. | jlam | 1 | -4/+4 | |
2002-04-11 | Consolidate two patches for the same file. | fredb | 3 | -18/+13 | |
2002-04-11 | Regen. | fredb | 1 | -3/+3 | |
2002-04-11 | Prefix register names with '%' so this can build on current/m68k | fredb | 4 | -47/+46 | |
(plus minor clean-ups: a paste-o and whitespace). | |||||
2002-03-25 | Make this compile on powerpc again. | briggs | 2 | -30/+26 | |
2001-11-01 | Move pkg/ files into package's toplevel directory | zuntum | 2 | -1/+1 | |
2001-09-27 | Mechanical changes to 375 files to change dependency patterns of the form | jlam | 1 | -2/+2 | |
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this. | |||||
2001-05-19 | Use ${XARGS} instead of invoking xargs directly. | jlam | 1 | -4/+4 | |
2001-04-26 | Fix checksum for patch-au. | wiz | 1 | -2/+2 | |
2001-04-21 | Move to sha1 digests, and/or add distfile sizes. | wiz | 1 | -1/+2 | |
2001-04-19 | Add RCS Ids. | wiz | 2 | -1/+3 | |
2001-04-17 | + move the distfile digest/checksum value from files/md5 to distinfo | agc | 2 | -4/+2 | |
+ move the patch digest/checksum values from files/patch-sum to distinfo | |||||
2001-04-12 | Regen. Don't know how this got out of sync. | skrll | 1 | -2/+2 | |
2001-04-12 | Add _C_LABEL to the sparc assembler files. | skrll | 3 | -35/+33 | |
Fixes pkg/11360. | |||||
2001-04-12 | MD5->SHA1 | skrll | 2 | -63/+63 | |
2001-04-11 | There is no need to install a math.h and it can cause problems. | skrll | 2 | -4/+4 | |
Fixes pkg/10769 from "Rhialto" <rhialto@polderland.nl> | |||||
2001-02-25 | Cleanup MKDIR usage => INSTALL_*_DIR | hubertf | 1 | -2/+2 | |
XXX need to teach pkglint to be more picky about this | |||||
2001-02-16 | Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT. | wiz | 2 | -2/+2 | |
2001-01-10 | Make the PIC relocations correct on the powerpc. | briggs | 2 | -8/+8 | |
2001-01-10 | Support NetBSD-*-powerpc | briggs | 9 | -3/+643 | |
2001-01-04 | The way that shared objects were handled in the PLISTs and bsd.pkg.mk was | agc | 1 | -1/+3 | |
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this. | |||||
2000-11-29 | Add a patch from Tom Thai - without this patch, mysql will result in a | agc | 2 | -1/+30 | |
wrong date for "select now()". | |||||
2000-08-06 | Let "configure" recognize NetBSD-1.5*. Patch contributed | fredb | 3 | -15/+15 | |
by Douglas Wade Needham in PR pkg/10766. | |||||
2000-03-16 | echo -> ${ECHO} | wiz | 1 | -5/+5 | |
2000-02-22 | add CONFLICTS. installs the same files as unproven-pthreads | dmcmahill | 1 | -1/+2 | |
2000-01-10 | Regen. | mycroft | 1 | -1/+2 | |
2000-01-10 | Disable the fork_lock hack. Programs want to be able to fork themselves | mycroft | 1 | -0/+12 | |
before firing up pthreads (e.g. to background). | |||||
2000-01-02 | replaced some commands by their ${COMMAND} counterparts | wiz | 1 | -4/+4 | |
1999-12-28 | RCS tags added | wiz | 9 | -0/+9 | |
1999-12-28 | replaced some commands by their ${COMMAND} counterparts | wiz | 1 | -4/+4 | |
1999-11-15 | Add patch fuzz factor | rh | 1 | -1/+3 | |
1999-11-06 | Fix a rather nasty problem with signals, namely SIGCHLD, that prevented | explorer | 1 | -1/+7 | |
running threaded binaries if SIGCHLD was set to SIG_IGN. What happens is that pthreads uses either sigaction() or signal() to set up signals when switching thread state. It used HAVE_SYSCALL_SIGACTION to decide which to use. But, while we have a FUNCTION called sigaction(), the syscall is __sigaction14, which caused HAVE_SYSCALL_SIGACTION to not be defined. This would have been ok if the pthread kernel didn't assume signal would return 0 for success and non-zero for failure. Signal() returns the previous handler. SIG_IGN != 0, so pthreads thought the call failed. Resulting in a call to abort(). | |||||
1999-11-05 | remove ALL the local path... | explorer | 2 | -4/+4 | |
1999-11-05 | how'd this sneak in there? Remove local paths from patch file | explorer | 2 | -5/+4 | |
1999-11-05 | add machdep_sys_ftruncate() as well | explorer | 2 | -5/+6 | |
1999-11-05 | do the machdep_sys_lseek() thing slightly differently, but do it everwhere ↵ | explorer | 2 | -1/+13 | |
via a common include file. | |||||
1999-11-05 | somehow patch-bc was lost from here | explorer | 1 | -1/+2 | |
1999-11-05 | two fixes. One, context switch fix (sorta) and another obvious bug in call ↵ | explorer | 3 | -2/+38 | |
to pthread_sigmask() | |||||
1999-11-05 | another 1.4.x vs. -current fix | explorer | 2 | -7/+11 | |
1999-11-05 | Make the endian.h thing work on 1.4.1 as well as 1.4L. I don't know exactly ↵ | explorer | 2 | -6/+10 | |
when the file sys/endian.h was created, but I don't really care as I know it wasn't in 1.4.x and it is in the latest -current. | |||||
1999-11-05 | make makepatchsum | explorer | 1 | -2/+8 | |
1999-11-05 | remove pthreads's endian.h, as it isn't needed anymore. | explorer | 2 | -3/+5 | |
1999-11-05 | commit patches to make a try at fixing signal handling, compilation under ELF. | explorer | 8 | -13/+506 | |
I'll sync these changes up to the mysql package when I test these changes a bit more. | |||||
1999-09-10 | Regen. | bad | 1 | -6/+6 | |
1999-09-10 | Make this compile on 1.3ish m68k machines: | bad | 5 | -25/+43 | |
In engine-m68000-netbsd.c: Move the declaration of __sycall() before the function it's first used in In syscall-m68000-netbsd.S don't use the compat_13 sigprocmask/sigsuspend syscall number constants, they were just SYS__sigprocmask/suspend. Fix the configure script to do the same dance for the 1.3ish systems as for the other architectures. Fix a typo in config.guess. | |||||
1999-08-02 | regen. | bad | 1 | -3/+3 | |
1999-08-02 | config/configure.in: change m4 quotes where necessary. | bad | 2 | -12/+20 | |
Also fix two typos that might affect 1.4ish sparc and arm32. | |||||
1999-08-02 | oops. regen. | bad | 1 | -3/+2 | |
1999-08-01 | Per Andy Finnell: use same magic to pacify the ansi cpp as in | bad | 2 | -10/+12 | |
syscall-template-m68000-netbsd.S. |