ce7f39497a
ObjFW 0.90.1 -> ObjFW 0.90.2, 23.10.2017 * Fix shadowed variables which caused many bugs (e.g. using the wrong object) * Many, many nullability fixes * OFTCPSocket: Fix exception not being retained for async connect * OFThread: Fix setting the name on the wrong thread * OFMutableSet: Fix missing override for -[copy] * configure: Fix posix_spawnp check * Xcode project: Set the correct version for the bridge * Better check for iOS * tests: Fix testing the wrong OFKernelEventObserver ObjFW 0.90 -> ObjFW 0.90.1, 20.08.2017 * OFData: Fix -[description] * OFFileManager: Set errno to 0 before readdir() * OFDate: Add -[localMinute] * OFTarArchiveEntry: Fix prefix handling for ustar * OFZIPArchive: Fix uncompressed + data descriptor * OFArray: Fix MessagePack encoding * of_asprintf: Don't require set up OFLocalization * OFGZIPStream: Add missing documentation * Fix a linker warning on OpenBSD/SPARC64 * Remove the OFFile b modes from MorphOS (they were already removed for all other OSes)
27 lines
664 B
Makefile
27 lines
664 B
Makefile
# $NetBSD: Makefile,v 1.2 2017/10/29 12:13:13 bsiegert Exp $
|
|
|
|
DISTNAME= objfw-0.90.2
|
|
CATEGORIES= devel
|
|
MASTER_SITES= https://heap.zone/objfw/downloads/
|
|
|
|
MAINTAINER= js@heap.zone
|
|
HOMEPAGE= https://heap.zone/objfw/
|
|
COMMENT= Portable, lightweight framework for the Objective-C language
|
|
LICENSE= qpl-v1.0 OR gnu-gpl-v2 OR gnu-gpl-v3
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LANGUAGES= objc
|
|
CONFIGURE_ARGS+= --enable-static
|
|
CONFIGURE_ARGS+= OBJCFLAGS=${CFLAGS:M*:Q} LDFLAGS=${LDFLAGS:M*:Q}
|
|
|
|
.include "../../mk/bsd.prefs.mk"
|
|
|
|
PLIST_SRC= PLIST
|
|
|
|
.if ${OPSYS} != "Darwin"
|
|
PLIST_SRC+= ${PKGDIR}/PLIST.runtime
|
|
.else
|
|
PLIST_SRC+= ${PKGDIR}/PLIST.bridge
|
|
.endif
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|