about summary refs log tree commit diff
path: root/contrib/MacOSX
AgeCommit message (Collapse)Author
2013-02-22Clean up Xcode project file, remove outdated files, add missingAlexander Barton
2013-02-09Add new irc-macros.h to projectAlexander Barton
This file prvides some macros for common tasks required by functions implementing handlers for IRC commands: * _IRC_ARGC_LE_OR_RETURN_ * _IRC_ARGC_GE_OR_RETURN_ * _IRC_GET_SENDER_OR_RETURN_ * _IRC_GET_TARGET_SERVER_OR_RETURN_
2013-01-02Merge branch 'bug145-ProvideHelp'Alexander Barton
* bug145-ProvideHelp: Use "${docdir}/Commands.txt" as help text file Add a note that "help file" is updated on startup and REHASH only Add doc/Commands.txt which should document all commands Implement Help() function parsing and returning the help text Document "HelpFile" in sample-ngircd.conf and ngircd.conf.5 Implement new configuration option "HelpFile" IRC_HELP(): Code cleanup Refactor Read_Motd() into Read_TextFile()
2013-01-01Use "${docdir}/Commands.txt" as help text fileAlexander Barton
2013-01-01Update Copyright notices for 2013Alexander Barton
2012-11-11Update Xcode project filesAlexander Barton
2012-11-05Implement METADATA command to update client metadataAlexander Barton
The METADATA command can be used by other servers to update "metadata" of registered clients, like the client info text ("real name"), user name, and hostname: :<prefix> METADATA <target> <key> :<value> It is distributed in the network, unknown <key> names are silently ignored and passed on, too. This allows for further extensions.
2012-11-02Xcode: correctly #define PACKAGE and PACKAGE_NAMEAlexander Barton
2012-10-06Merge branch 'bug109-CHARCONV'Alexander Barton
This closes bug #109. * bug109-CHARCONV: Debian: require "telnet" or "telnet-ssl" for building Debian ngircd-full[-dbg]: enable CHARCONV Add "CHARCONV" to "feature string" when enabled Implement new IRC+ "CHARCONV" command Added new configure option "--with-iconv" Conflicts: src/ngircd/messages.h
2012-10-06Define HAVE_SETSID for Mac OS X Xcode buildsAlexander Barton
2012-09-17Implement new IRC+ "CHARCONV" commandAlexander Barton
See bug 109 and doc/Protocol.txt for details and documentation.
2012-08-22Xcode: use certificate of Alex for code signingAlexander Barton
When doing non-debug Xcode builds, use the "Developer ID Application: Alexander Barton" certificate for code signing by default.
2012-04-28Merge branch 'capabilities'Alexander Barton
* capabilities: "multi-prefix" capability 2/2: adjust NAME and WHO handlers "multi-prefix" capability 1/2: implement complete CAP infrastructure IRC_Send_NAMES(): Code cleanup New function Client_CapSet() in addition to Client_Cap{Add|Del} "CAP REQ" starts capability negotiation and delays user registration Correctly handle "CAP END", new client type CLIENT_WAITCAPEND Implement core IRC capability handling and "CAP" command New "login" source file Introduce_Client() => Client_Introduce(), and move it to client.c
2012-04-28"multi-prefix" capability 2/2: adjust NAME and WHO handlersAlexander Barton
The NAME and WHO commands now return multiple usermode prfixes when the "multi-prefix" capability is in effect for the requesting client. See <http://ircv3.atheme.org/extensions/multi-prefix-3.1>
2012-04-27Xcode: update project file for Xcode 4.3Alexander Barton
(No changes needed)
2012-04-17Xcode: correctly sort conn-ssl.{c|h} files in file listAlexander Barton
2012-03-31Implement core IRC capability handling and "CAP" commandAlexander Barton
This patch implements the core functions to support "IRC Capabilities" and the IRC "CAP" command as used by other servers and specified here: <http://www.leeh.co.uk/draft-mitchell-irc-capabilities-02.html>. It enables ngIRCd to support the defined handshake, but it doesn't implement any capabilities, so "CAP LS" and "CAP LIST" always return the empty set and "CAP REQ ..." always fails with "CAP NAK".
2012-03-31New "login" source fileAlexander Barton
Rename Hello_User[_PostAuth] to Login_User[_PostAuth] and move it to the new login.c; and move cb_Read_Auth_Result(), too. This will enable further code to easily call Login_User() when required.
2012-03-31Add missing documentation files to Xcode projectAlexander Barton
2012-03-12Fix typo: Please not -> Please noteAlexander Barton
Thanks to Götz Hoffart!
2011-12-24Add new class.{c|h} module to Xcode projectAlexander Barton
2011-12-24Xcode: update project file for Xcode 4.2Alexander Barton
2011-12-24define HAVE_GAI_STRERROR for Mac OS X Xcode buildsAlexander Barton
On Mac OS X 10.7 Lion, this fixes In file included from .../contrib/MacOSX/../../src/ngircd/client.c:28: /Developer/SDKs/MacOSX10.7.sdk/usr/include/netdb.h:272:13: error: expected identifier or '('
2011-08-07Xcode: update project file to Xcode 3.2 or newerAlexander Barton
Xcode requires Mac OS X 10.6 or newer; Xcode 4 supports this project format as well, so effectively you can use Mac OS X 10.6.x or 10.7.x for building ngIRCd with the Apple Xcode IDE.
2011-08-07Xcode: Mac OS X config.h: support 10.5 as well as 10.6/10.7 SDKAlexander Barton
2011-08-02Xcode: exclude more Xcode 4 specific directories in ".gitignore"Alexander Barton
2011-08-02Xcode: update and add missing files to projectAlexander Barton
2011-04-16Mac OS X: install on root volume only, and set correct permissionsAlexander Barton
Update Mac OS X Installer.app description bundle, so that the ngIRCd package can only be installed on the root volume ("/"); and make sure that all installed files and directories have correct ownership and permissions.
2011-04-14Mac OS X: update installer texts and add logo.Alexander Barton
2011-03-27Xcode: don't list sample-ngircd.conf, use sample-ngircd.conf.tmplAlexander Barton
2011-01-09Remove support for ZeroConf/Bonjour/Rendezvous service registrationAlexander Barton
2010-12-29Xcode: correctly sort filesAlexander Barton
2010-10-26Mac OS X package ("make osxpkg"): generate PAM configurationAlexander Barton
2010-10-26Xcode builds ("make xcode"): disable pam_fail_delay()Alexander Barton
disable pam_fail_delay() only is available starting with Mac OS X 10.6; but we use the 10.5 SDK for campatibility, so don't use this function at all when building using Xcode.
2010-10-26Xcode: update project file, use 10.5.x SDKAlexander Barton
This is required for universal 32 bit and 64 bit builds: now code for ppc, i386, and x86_64 is generated (which requires 10.5 or newer).
2010-10-09Xcode: only build current architecture in "Debug" targetAlexander Barton
2010-09-22Add sighandlers.{c|h} to Xcode projectAlexander Barton
And update static Mac OS X config.h used by the Xcode project.
2010-07-12Add new pam.{c|h} module to Xcode projectAlexander Barton
Adjust Xcode project and Mac OS X static config.h header to use PAM.
2010-06-29New "module" proc.c/proc.h for generic process handlingAlexander Barton
The new "module" proc.c is used for functions dealing with child processes. At the moment, it is only used by the asynchronous resolver. All the functions already implemented habe been migrated from the resolver code base, and the rest of the ngIRCd source code has been adepted to the new namespace and calling conventions. The goal is to develop "generic" process handling functions that can be used for other purposes as well, e.g. running processes on client connects etc.
2010-04-02Updated some more copyright notices, it's 2010 already :-)Alexander Barton
2009-12-31Really test for netinet/ip.h and set HAVE_NETINET_IP_HAlexander Barton
2009-12-27Xcode: fix "-Wuninitialized is not supported without -O"Alexander Barton
Fix Apple Xcode warning "cc1: warning: -Wuninitialized is not supported without -O" when using the "Debug" build target: Detection of uninitialized automatic variable requires data flow analsys that is only enabled during optimized compilation.
2009-09-30Xcode: added new op.{c|h} to project fileAlexander Barton
2009-09-14Xcode: add "debug" configuration to projectAlexander Barton
2009-09-11Xcode: use gcc 4.0 for Mac OS X 10.4 compatibilityAlexander Barton
2009-04-10Xcode: #define include __DATE__ in VERSIONAlexander Barton
Change VERSION to include the __DATE__ when compiling from within Xcode. When building using "make xcode" or "make osxpkg" VERSION already is defined to the "real" version number set in configure.in.
2009-01-06Mac OS X: update texts for Mac OS X Installer.appAlexander Barton
2009-01-06Xcode: build ngIRCd with IPv6 support on Mac OS XAlexander Barton
2009-01-06Xcode: get release number dynamically; new make target "xcode-clean".Alexander Barton
- make target "xcode" now detects the release number stored in the configure.in file and passes it to Xcode. - new make target "xcode-clean" which removes all files generated by "make xcode" and removes the Xcode build directory.
2009-01-06Xcode: define TARGET_VENDOR and TARGET_OSAlexander Barton