diff options
author | rafan <rafan@FreeBSD.org> | 2007-10-12 02:52:46 +0000 |
---|---|---|
committer | rafan <rafan@FreeBSD.org> | 2007-10-12 02:52:46 +0000 |
commit | d238007fea9089738bdf8f57181f1c613ddac4bb (patch) | |
tree | 40cdf9ff69196debe292956af39e4521ba41af56 /gnu/lib/libobjc | |
parent | 2f9a149eb5464561bb6a0e8809b20634d5dfdc8a (diff) | |
download | FreeBSD-src-d238007fea9089738bdf8f57181f1c613ddac4bb.zip FreeBSD-src-d238007fea9089738bdf8f57181f1c613ddac4bb.tar.gz |
- After gcc 4.2 import, include/objc/objc-api.h requires objc-decls.h which
we did not install. Install objc-decls.h to fix.
PR: 116943
Reported by: beech
Submitted by: vanilla on -current, kan
MFC after: 1 week
Diffstat (limited to 'gnu/lib/libobjc')
-rw-r--r-- | gnu/lib/libobjc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/lib/libobjc/Makefile b/gnu/lib/libobjc/Makefile index de10f71..f00ee0b 100644 --- a/gnu/lib/libobjc/Makefile +++ b/gnu/lib/libobjc/Makefile @@ -13,7 +13,7 @@ SRCS= archive.c class.c encoding.c gc.c hash.c init.c linking.m misc.c \ nil_method.c NXConstStr.m Object.m objects.c Protocol.m sarray.c \ selector.c sendmsg.c thr.c thr-objc.c exception.c -INCS= encoding.h hash.h objc-api.h objc-list.h objc.h runtime.h \ +INCS= encoding.h hash.h objc-api.h objc-decls.h objc-list.h objc.h runtime.h \ sarray.h thr.h typedstream.h NXConstStr.h Object.h Protocol.h INCSDIR=${INCLUDEDIR}/objc |