Index: ObjFW.xcodeproj/project.pbxproj ================================================================== --- ObjFW.xcodeproj/project.pbxproj +++ ObjFW.xcodeproj/project.pbxproj @@ -322,11 +322,11 @@ ); outputPaths = ( ); runOnlyForDeploymentPostprocessing = 0; shellPath = /bin/sh; - shellScript = "rm -fr $TARGET_BUILD_DIR/ObjFW.framework\nmkdir -p $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Headers || exit 1\nmkdir -p $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Resources || exit 1\ninstall -m 755 src/ObjFW $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/ || exit 1\ninstall -m 644 src/*.h $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Headers/ || exit 1\ncat >$TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Resources/Info.plist <<__EOF__\n\n\n\n\n\tCFBundleDevelopmentRegion\n\tEnglish\n\tCFBundleExecutable\n\tObjFW\n\tCFBundleGetInfoString\n\thttps://webkeks.org/hg/libobjfw\n\tCFBundleIdentifier\n\tObjFW\n\tCFBundleInfoDictionaryVersion\n\t6.0\n\tCFBundleName\n\tlibobjfw\n\tCFBundlePackageType\n\tFMWK\n\tCFBundleShortVersionString\n\t0.1\n\tCFBundleSignature\n\tOBJF\n\tCFBundleVersion\n\t0.1\n\n\n__EOF__\nif [ ! -f \"$TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Resources/Info.plist\" ]; then\n\texit 1;\nfi\nln -s A $TARGET_BUILD_DIR/ObjFW.framework/Versions/Current || exit 1\nln -s Versions/Current/Headers $TARGET_BUILD_DIR/ObjFW.framework/Headers || exit 1\nln -s Versions/Current/Resources $TARGET_BUILD_DIR/ObjFW.framework/Resources || exit 1\nln -s Versions/Current/ObjFW $TARGET_BUILD_DIR/ObjFW.framework/ObjFW || exit 1"; + shellScript = "rm -fr $TARGET_BUILD_DIR/ObjFW.framework\nmkdir -p $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Headers || exit 1\nmkdir -p $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Resources || exit 1\ninstall -m 755 src/ObjFW $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/ || exit 1\ninstall -m 644 src/*.h $TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Headers/ || exit 1\ncat >$TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Resources/Info.plist <<__EOF__\n\n\n\n\n\tCFBundleDevelopmentRegion\n\tEnglish\n\tCFBundleExecutable\n\tObjFW\n\tCFBundleGetInfoString\n\thttps://webkeks.org/hg/objfw\n\tCFBundleIdentifier\n\tObjFW\n\tCFBundleInfoDictionaryVersion\n\t6.0\n\tCFBundleName\n\tobjfw\n\tCFBundlePackageType\n\tFMWK\n\tCFBundleShortVersionString\n\t0.1\n\tCFBundleSignature\n\tOBJF\n\tCFBundleVersion\n\t0.1\n\n\n__EOF__\nif [ ! -f \"$TARGET_BUILD_DIR/ObjFW.framework/Versions/A/Resources/Info.plist\" ]; then\n\texit 1;\nfi\nln -s A $TARGET_BUILD_DIR/ObjFW.framework/Versions/Current || exit 1\nln -s Versions/Current/Headers $TARGET_BUILD_DIR/ObjFW.framework/Headers || exit 1\nln -s Versions/Current/Resources $TARGET_BUILD_DIR/ObjFW.framework/Resources || exit 1\nln -s Versions/Current/ObjFW $TARGET_BUILD_DIR/ObjFW.framework/ObjFW || exit 1"; }; 4B5D8DE11099E1BF000896FF /* ShellScript */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; files = ( Index: PLATFORMS ================================================================== --- PLATFORMS +++ PLATFORMS @@ -1,6 +1,6 @@ -libobjfw is known to work on the following platforms, but should run on +ObjFW is known to work on the following platforms, but should run on many others as well: +-------------------------+--------------+----------------------+ | OS | Architecture | Compiler | +-------------------------+--------------+----------------------+ Index: generators/TableGenerator.h ================================================================== --- generators/TableGenerator.h +++ generators/TableGenerator.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFString.h" Index: generators/TableGenerator.m ================================================================== --- generators/TableGenerator.m +++ generators/TableGenerator.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: generators/copyright.h ================================================================== --- generators/copyright.h +++ generators/copyright.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFString.h" @@ -16,12 +16,12 @@ @" * Copyright (c) 2008 - 2009\n" \ @" * Jonathan Schleifer \n" \ @" *\n" \ @" * All rights reserved.\n" \ @" *\n" \ - @" * This file is part of libobjfw. It may be distributed under the " \ - @"terms of the\n" \ + @" * This file is part of ObjFW. It may be distributed under the terms " \ + @"of the\n" \ @" * Q Public License 1.0, which can be found in the file LICENSE " \ @"included in\n" \ @" * the packaging of this file.\n" \ @" */\n" \ @"\n" Index: generators/main.m ================================================================== --- generators/main.m +++ generators/main.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFArray.h ================================================================== --- src/OFArray.h +++ src/OFArray.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: src/OFArray.m ================================================================== --- src/OFArray.m +++ src/OFArray.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFAutoreleasePool.h ================================================================== --- src/OFAutoreleasePool.h +++ src/OFAutoreleasePool.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFAutoreleasePool.m ================================================================== --- src/OFAutoreleasePool.m +++ src/OFAutoreleasePool.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFConstString.h ================================================================== --- src/OFConstString.h +++ src/OFConstString.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFString.h" Index: src/OFConstString.m ================================================================== --- src/OFConstString.m +++ src/OFConstString.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFDataArray.h ================================================================== --- src/OFDataArray.h +++ src/OFDataArray.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFDataArray.m ================================================================== --- src/OFDataArray.m +++ src/OFDataArray.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFDictionary.h ================================================================== --- src/OFDictionary.h +++ src/OFDictionary.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: src/OFDictionary.m ================================================================== --- src/OFDictionary.m +++ src/OFDictionary.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFExceptions.h ================================================================== --- src/OFExceptions.h +++ src/OFExceptions.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFExceptions.m ================================================================== --- src/OFExceptions.m +++ src/OFExceptions.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFFile.h ================================================================== --- src/OFFile.h +++ src/OFFile.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: src/OFFile.m ================================================================== --- src/OFFile.m +++ src/OFFile.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFHashes.h ================================================================== --- src/OFHashes.h +++ src/OFHashes.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFHashes.m ================================================================== --- src/OFHashes.m +++ src/OFHashes.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFIterator.h ================================================================== --- src/OFIterator.h +++ src/OFIterator.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFIterator.m ================================================================== --- src/OFIterator.m +++ src/OFIterator.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFList.h ================================================================== --- src/OFList.h +++ src/OFList.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFList.m ================================================================== --- src/OFList.m +++ src/OFList.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFMacros.h ================================================================== --- src/OFMacros.h +++ src/OFMacros.h @@ -2,17 +2,17 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #ifndef OF_CONFIGURED -#error You are missing the libobjfw definitions! +#error You are missing the ObjFW definitions! #error Please use objfw-config! #endif #include Index: src/OFMutableArray.h ================================================================== --- src/OFMutableArray.h +++ src/OFMutableArray.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFArray.h" Index: src/OFMutableArray.m ================================================================== --- src/OFMutableArray.m +++ src/OFMutableArray.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFMutableDictionary.h ================================================================== --- src/OFMutableDictionary.h +++ src/OFMutableDictionary.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFDictionary.h" Index: src/OFMutableDictionary.m ================================================================== --- src/OFMutableDictionary.m +++ src/OFMutableDictionary.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFMutableString.h ================================================================== --- src/OFMutableString.h +++ src/OFMutableString.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: src/OFMutableString.m ================================================================== --- src/OFMutableString.m +++ src/OFMutableString.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFNumber.h ================================================================== --- src/OFNumber.h +++ src/OFNumber.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: src/OFNumber.m ================================================================== --- src/OFNumber.m +++ src/OFNumber.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFObject.h ================================================================== --- src/OFObject.h +++ src/OFObject.h @@ -2,17 +2,17 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #ifndef OF_CONFIGURED -#error You are missing the libobjfw definitions! +#error You are missing the ObjFW definitions! #error Please use objfw-config! #endif #include #include Index: src/OFObject.m ================================================================== --- src/OFObject.m +++ src/OFObject.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFPlugin.h ================================================================== --- src/OFPlugin.h +++ src/OFPlugin.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFPlugin.m ================================================================== --- src/OFPlugin.m +++ src/OFPlugin.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFSocket.h ================================================================== --- src/OFSocket.h +++ src/OFSocket.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ /* Index: src/OFSocket.m ================================================================== --- src/OFSocket.m +++ src/OFSocket.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFStream.h ================================================================== --- src/OFStream.h +++ src/OFStream.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFStream.m ================================================================== --- src/OFStream.m +++ src/OFStream.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFString.h ================================================================== --- src/OFString.h +++ src/OFString.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: src/OFString.m ================================================================== --- src/OFString.m +++ src/OFString.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFTCPSocket.h ================================================================== --- src/OFTCPSocket.h +++ src/OFTCPSocket.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFSocket.h" Index: src/OFTCPSocket.m ================================================================== --- src/OFTCPSocket.m +++ src/OFTCPSocket.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFThread.h ================================================================== --- src/OFThread.h +++ src/OFThread.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFThread.m ================================================================== --- src/OFThread.m +++ src/OFThread.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFURLEncoding.h ================================================================== --- src/OFURLEncoding.h +++ src/OFURLEncoding.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFMutableString.h" Index: src/OFURLEncoding.m ================================================================== --- src/OFURLEncoding.m +++ src/OFURLEncoding.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFXMLElement.h ================================================================== --- src/OFXMLElement.h +++ src/OFXMLElement.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFXMLElement.m ================================================================== --- src/OFXMLElement.m +++ src/OFXMLElement.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/OFXMLParser.h ================================================================== --- src/OFXMLParser.h +++ src/OFXMLParser.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/OFXMLParser.m ================================================================== --- src/OFXMLParser.m +++ src/OFXMLParser.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/ObjFW.h ================================================================== --- src/ObjFW.h +++ src/ObjFW.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer "js@webkeks.org" * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFObject.h" Index: src/asprintf.h ================================================================== --- src/asprintf.h +++ src/asprintf.h @@ -2,21 +2,21 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #ifndef OF_CONFIGURED -#error You are missing the libobjfw definitions! +#error You are missing the ObjFW definitions! #error Please use objfw-config! #endif #ifndef OF_HAVE_ASPRINTF #include extern int asprintf(char**, const char*, ...); extern int vasprintf(char**, const char*, va_list); #endif Index: src/asprintf.m ================================================================== --- src/asprintf.m +++ src/asprintf.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/iso_8859_15.m ================================================================== --- src/iso_8859_15.m +++ src/iso_8859_15.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: src/objc_sync.m ================================================================== --- src/objc_sync.m +++ src/objc_sync.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/threading.h ================================================================== --- src/threading.h +++ src/threading.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFMacros.h" Index: src/unicode.h ================================================================== --- src/unicode.h +++ src/unicode.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFString.h" Index: src/unicode.m ================================================================== --- src/unicode.m +++ src/unicode.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: src/windows_1252.m ================================================================== --- src/windows_1252.m +++ src/windows_1252.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include Index: tests/array.m ================================================================== --- tests/array.m +++ tests/array.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/dataarray.m ================================================================== --- tests/dataarray.m +++ tests/dataarray.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/dictionary.m ================================================================== --- tests/dictionary.m +++ tests/dictionary.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/hashes.m ================================================================== --- tests/hashes.m +++ tests/hashes.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/list.m ================================================================== --- tests/list.m +++ tests/list.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/main.h ================================================================== --- tests/main.h +++ tests/main.h @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFString.h" Index: tests/main.m ================================================================== --- tests/main.m +++ tests/main.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/objc_sync/test.m ================================================================== --- tests/objc_sync/test.m +++ tests/objc_sync/test.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/object.m ================================================================== --- tests/object.m +++ tests/object.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/plugin.m ================================================================== --- tests/plugin.m +++ tests/plugin.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/plugin/TestPlugin.h ================================================================== --- tests/plugin/TestPlugin.h +++ tests/plugin/TestPlugin.h @@ -2,15 +2,15 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #import "OFPlugin.h" @interface TestPlugin: OFPlugin - (int)test: (int)num; @end Index: tests/plugin/TestPlugin.m ================================================================== --- tests/plugin/TestPlugin.m +++ tests/plugin/TestPlugin.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/string.m ================================================================== --- tests/string.m +++ tests/string.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/tcpsocket.m ================================================================== --- tests/tcpsocket.m +++ tests/tcpsocket.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/thread.m ================================================================== --- tests/thread.m +++ tests/thread.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/xmlelement.m ================================================================== --- tests/xmlelement.m +++ tests/xmlelement.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h" Index: tests/xmlparser.m ================================================================== --- tests/xmlparser.m +++ tests/xmlparser.m @@ -2,11 +2,11 @@ * Copyright (c) 2008 - 2009 * Jonathan Schleifer * * All rights reserved. * - * This file is part of libobjfw. It may be distributed under the terms of the + * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE included in * the packaging of this file. */ #include "config.h"