# HG changeset patch # User Markus Bröker # Date 1635539470 -7200 # Node ID 2d6419d6d4ed05726cbea33aeb20732d317369f9 # Parent fb2cfcee38bddb73bd03e5f8078092b38f683d27 Build System Fixes for debhelper 10 diff --git a/TODO b/TODO --- a/TODO +++ b/TODO @@ -13,7 +13,7 @@ * AUTO-RECONNECT must be implemented Author: - * Markus Broeker mbroeker@largo.homelinux.org + * Markus Bröker mbroeker@4customers.de Comments: * scanner/parser rewritten diff --git a/config/.mcbotrc b/config/.mcbotrc --- a/config/.mcbotrc +++ b/config/.mcbotrc @@ -7,4 +7,4 @@ SERVER:irc.freenode.net PORT:6667 CHANNEL:#test -TOPIC:[:test:] Support Channel || ENTER !help for help || Source: http://largo.dyndns.tv/cgi-bin/gitweb.cgi?p=net/mcbot.git +TOPIC:[:test:] Support Channel || ENTER !help for help || Source: https://4customers.de/hg/mcbot diff --git a/debian/changelog b/debian/changelog --- a/debian/changelog +++ b/debian/changelog @@ -37,5 +37,7 @@ * useless feof handling removed * spelling error fixed * ipv6 support added + * Build Process fixed OS=600 instead of 500 + * email addresses updated - -- Markus Bröker Sat, 13 Nov 2010 08:13:37 +0100 + -- Markus Bröker Sat, 13 Nov 2010 08:13:37 +0100 diff --git a/debian/compat b/debian/compat --- a/debian/compat +++ b/debian/compat @@ -1,1 +1,1 @@ -5 +10 diff --git a/debian/control b/debian/control --- a/debian/control +++ b/debian/control @@ -1,7 +1,7 @@ Source: mcbot Section: net Priority: extra -Maintainer: Markus Bröker +Maintainer: Markus Bröker Build-Depends: debhelper (>= 5) Standards-Version: 3.7.2 diff --git a/debian/copyright b/debian/copyright --- a/debian/copyright +++ b/debian/copyright @@ -1,16 +1,16 @@ -This package was debianized by Markus Bröker on +This package was debianized by Markus Bröker on Tue, 25 Mar 2008 20:32:44 +0100. -It was downloaded from http://largo.homelinux.org +It was downloaded from https://www.4customers.de Upstream Author: - mbroeker@largo.homelinux.org + mbroeker@4customers.de Copyright: - © 2009 mbroeker@largo.homelinux.org + © 2009 mbroeker@4customers.de License: GPL -The Debian packaging is (C) 2008, Markus Bröker and +The Debian packaging is (C) 2008, Markus Bröker and is licensed under the GPL, see `/usr/share/common-licenses/GPL'. diff --git a/debian/rules b/debian/rules --- a/debian/rules +++ b/debian/rules @@ -43,7 +43,8 @@ install: build dh_testdir dh_testroot - dh_clean -k + #dh_clean -k + dh_prep dh_installdirs # Add here commands to install the package into debian/mcbot. diff --git a/locale/de/mcbot.po b/locale/de/mcbot.po --- a/locale/de/mcbot.po +++ b/locale/de/mcbot.po @@ -5,11 +5,11 @@ msgid "" msgstr "" "Project-Id-Version: mcbot-0.99\n" -"Report-Msgid-Bugs-To: mbroeker@largo.homelinux.org\n" +"Report-Msgid-Bugs-To: mbroeker@4customers.de\n" "POT-Creation-Date: 2008-06-20 15:44+0100\n" "PO-Revision-Date: 2009-01-03 20:23+001\n" -"Last-Translator: Markus Broeker \n" -"Language-Team: translation \n" +"Last-Translator: Markus Broeker \n" +"Language-Team: translation \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -9,7 +9,7 @@ # C-Definitions ADD_DEFINITIONS(-Wall -O2 -ansi) -ADD_DEFINITIONS(-D_XOPEN_SOURCE=500) +ADD_DEFINITIONS(-D_XOPEN_SOURCE=600) ADD_DEFINITIONS(-DBOT_VERSION=0.99) # Includes diff --git a/src/config.c b/src/config.c --- a/src/config.c +++ b/src/config.c @@ -64,7 +64,7 @@ while (CONFIG_OPTIONS[map] != NULL) { if (!strcmp (CONFIG_OPTIONS[map], token)) { if (value) { - if (line[map] != '\0') + if (line[map] != NULL) free (line[map]); line[map] = compat_strdup (value); } @@ -76,7 +76,7 @@ map = 0; while (CONFIG_OPTIONS[map] != NULL) { - if (line[map] != '\0') + if (line[map] != NULL) switch (map) { case NICK: uc->nick = compat_strdup (line[map]); diff --git a/src/dbtool.c b/src/dbtool.c --- a/src/dbtool.c +++ b/src/dbtool.c @@ -31,7 +31,7 @@ printf (" -V\t\treorganizes the db\n"); printf (" -h\t\tprints this help\n"); printf (" -?\t\tprints this help\n\n"); - printf ("Report bugs to mbroeker@largo.homelinux.org\n"); + printf ("Report bugs to mbroeker@4customers.de\n"); exit (0); } diff --git a/src/parse.c b/src/parse.c --- a/src/parse.c +++ b/src/parse.c @@ -21,7 +21,7 @@ #endif #ifndef SOURCE_URL -#define SOURCE_URL "http://largo.dyndns.tv/cgi-bin/gitweb.cgi?p=net/mcbot.git" +#define SOURCE_URL "https://4customers.de/hg/mcbot" #endif enum command_map {