summaryrefslogtreecommitdiff
path: root/gnu/lib/libobjc
Commit message (Collapse)AuthorAgeFilesLines
* MFC: Add -frandom-seed=RepeatabilityConsideredGood to CFLAGS in orderColin Percival2005-08-191-0/+1
| | | | | | | | | to make this library build repeatably. Approved by: re (kensmith) Notes: svn path=/stable/6/; revision=149260
* Insta-MFC of the shared library version bump. All shared librariesKen Smith2005-07-221-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | whose version has not already been bumped since RELENG_5 are being bumped. Revisions of files being MFC-ed: > Path Revision > src/gnu/lib/libdialog/Makefile 1.43 > src/gnu/lib/libg2c/Makefile 1.16 > src/gnu/lib/libobjc/Makefile 1.27 > src/gnu/lib/libreadline/Makefile.inc 1.12 > src/gnu/lib/libregex/Makefile 1.32 > src/gnu/lib/libstdc++/Makefile 1.56 > src/kerberos5/lib/Makefile.inc 1.7 > src/lib/Makefile.inc 1.3 > src/lib/libalias/Makefile 1.31 > src/lib/libarchive/Makefile 1.37 > src/lib/libbegemot/Makefile 1.3 > src/lib/libbluetooth/Makefile 1.2 > src/lib/libbsnmp/Makefile.inc 1.6 > src/lib/libbz2/Makefile 1.6 > src/lib/libc_r/Makefile 1.42 > src/lib/libcrypt/Makefile 1.36 > src/lib/libdevstat/Makefile 1.15 > src/lib/libdevstat/devstat.h 1.11 > src/lib/libedit/Makefile 1.29 > src/lib/libexpat/Makefile 1.5 > src/lib/libfetch/Makefile 1.45 > src/lib/libftpio/Makefile 1.14 > src/lib/libgpib/Makefile 1.2 > src/lib/libipsec/Makefile 1.17 > src/lib/libkiconv/Makefile 1.3 > src/lib/libmagic/Makefile 1.7 > src/lib/libmp/Makefile 1.10 > src/lib/libncp/Makefile 1.6 > src/lib/libncurses/Makefile 1.79 > src/lib/libnetgraph/Makefile 1.11 > src/lib/libngatm/Makefile 1.6 > src/lib/libopie/Makefile 1.21 > src/lib/libpam/Makefile.inc 1.17 > src/lib/libpthread/Makefile 1.54 > src/lib/libradius/Makefile 1.12 > src/lib/libsdp/Makefile 1.4 > src/lib/libsmb/Makefile 1.8 > src/lib/libtacplus/Makefile 1.7 > src/lib/libthr/Makefile 1.14 > src/lib/libthread_db/Makefile 1.6 > src/lib/libugidfw/Makefile 1.7 > src/lib/libusbhid/Makefile 1.10 > src/lib/libutil/Makefile 1.57 > src/lib/libvgl/Makefile 1.11 > src/lib/libwrap/Makefile 1.17 > src/lib/libypclnt/Makefile 1.13 > src/lib/msun/Makefile 1.72 > src/secure/lib/libcrypto/Makefile 1.74 > src/secure/lib/libssh/Makefile 1.35 > src/secure/lib/libssl/Makefile 1.22 > src/usr.sbin/bsnmpd/modules/Makefile.inc 1.10 Reviewed by: ru Approved by: re (scottl) Notes: svn path=/stable/6/; revision=148300
* Turn on libobjc.so for all platforms on -current. It didn't work backPeter Wemm2005-05-011-12/+2
| | | | | | | in 1996. Notes: svn path=/head/; revision=145739
* Fixed compilation warnings.Ruslan Ermilov2005-02-211-1/+2
| | | | Notes: svn path=/head/; revision=142189
* NODOCCOMPRESS -> NO_DOCCOMPRESSRuslan Ermilov2004-12-211-1/+1
| | | | | | | | | | | NOINFO -> NO_INFO NOINFOCOMPRESS -> NO_INFOCOMPRESS NOLINT -> NO_LINT NOPIC -> NO_PIC NOPROFILE -> NO_PROFILE Notes: svn path=/head/; revision=139106
* Start the dreaded NOFOO -> NO_FOO conversion.Ruslan Ermilov2004-12-211-1/+1
| | | | | | | OK'ed by: core Notes: svn path=/head/; revision=139103
* For variables that are only checked with defined(), don't provideRuslan Ermilov2004-10-241-2/+2
| | | | | | | any fake value. Notes: svn path=/head/; revision=136910
* We *need* the pic libobjc library for amd64. It is needed for ia64 asPeter Wemm2004-09-291-0/+5
| | | | | | | | | well, but I'll let Marcel decide whether he wants to build a .so or not. Without this, building certain ports that use objc have fatal errors. Notes: svn path=/head/; revision=135944
* Bmake glue for GCC 3.4.2-prerelease.Alexander Kabaev2004-07-281-3/+3
| | | | Notes: svn path=/head/; revision=132751
* Do not bogusly set CSTD to the empty string.Dag-Erling Smørgrav2003-06-141-1/+0
| | | | Notes: svn path=/head/; revision=116335
* Don't set a C standard level for ObjC code.David E. O'Brien2003-06-021-0/+1
| | | | Notes: svn path=/head/; revision=115664
* Forced non-forced commit by adding a comment mentioning what theMarcel Moolenaar2003-03-171-0/+1
| | | | | | | | previous commit log should have mentioned: PR: ia64/49081 Notes: svn path=/head/; revision=112327
* libobjc is linked against shared objects and since we don't have aMarcel Moolenaar2003-03-161-0/+4
| | | | | | | | | | | | | | | | | | | | | shared object of libobjc, we end up linking in from the archive version. This is wrong, because we don't compile the archive version suitable for inclusion in shared objects. On ia64 this causes actual breakages. Compile the archive version with PIC on ia64 to avoid the breakage there and also to avoid changing the status quo on other architectures. If other architectures have the same problem, we probably should start building a shared library. There's no indication however that other architectures actually need it. Building the archive version with PIC on ia64 does pessimize linking complete binaries (ie fully archive), but we don't use Objective-C ourselves and so far I haven't seen non-shared executables written in Objective-C, so I'm sure this will be nothing but academic. Trigger case: ports/lang/gnustep-base Notes: svn path=/head/; revision=112324
* Build Objective-C runtime support library with thr-posix.c.Alexander Kabaev2002-10-301-1/+1
| | | | | | | | Submitted by: davidc Requested by: obrien Notes: svn path=/head/; revision=106213
* Added new bsd.incs.mk which handles installing of header filesRuslan Ermilov2002-05-121-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow. Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1): kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile Replaced all `beforeinstall' targets for installing includes with the INCS stuff. Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE. Consistently use INCLUDEDIR instead of /usr/include. gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff. These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release". Notes: svn path=/head/; revision=96462
* Dependencies on tconfig.h work better if we set GCCDIR when shellingDavid E. O'Brien2002-05-071-1/+1
| | | | | | | to other Makefiles. Notes: svn path=/cvs2svn/branches/WIP_GCC31/; revision=96134
* Bmake bits for GCC 3.1.David E. O'Brien2002-04-071-0/+42
Sponsored by: bribe from peter Notes: svn path=/cvs2svn/branches/WIP_GCC31/; revision=94043