From fa097b869cb0996804bd062a30f1547d9b05b785 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Fri, 4 Jan 2013 11:23:02 +0100 Subject: Rename project from 'Debug Module' to 'Hugin' --- Makefile | 38 +++++++++++++++++++------------------- Makefile.files | 20 +++++++++++--------- add_file | 2 +- hugin.c | 16 ++++++++-------- hugin.h | 20 ++++++++++---------- hugin.hpp | 18 +++++++++--------- hugin_filter.c | 12 ++++++------ hugin_filter.h | 18 +++++++++--------- hugin_syslog.c | 20 ++++++++++---------- hugin_syslog.h | 16 ++++++++-------- hugin_util.h | 16 ++++++++-------- main_complete.c | 10 +++++----- main_filter.c | 10 +++++----- main_minimal.c | 10 +++++----- main_mutex.c | 10 +++++----- main_simple.c | 10 +++++----- main_simple.cc | 10 +++++----- main_syslog.c | 10 +++++----- 18 files changed, 134 insertions(+), 132 deletions(-) diff --git a/Makefile b/Makefile index 45b6460..9e8d4c3 100644 --- a/Makefile +++ b/Makefile @@ -6,39 +6,39 @@ CXXFLAGS=$(CFLAGS) all: complete obj simple syslog filter mutex minimal complete: - gcc ${CFLAGS} ${DEBUG_SOURCES} main_complete.c -o debug-complete -DWITH_DBG_SYSLOG -DWITH_DBG_FILTER -DWITH_DBG_MUTEX - g++ ${CXXFLAGS} ${DEBUG_SOURCES} main_complete.c -o debug-complete -DWITH_DBG_SYSLOG -DWITH_DBG_FILTER -DWITH_DBG_MUTEX + gcc ${CFLAGS} ${HUGIN_SOURCES} main_complete.c -o hugin-complete -DWITH_DBG_SYSLOG -DWITH_DBG_FILTER -DWITH_DBG_MUTEX + g++ ${CXXFLAGS} ${HUGIN_SOURCES} main_complete.c -o hugin-complete -DWITH_DBG_SYSLOG -DWITH_DBG_FILTER -DWITH_DBG_MUTEX obj: -# Compile debug as c prog and link with c++ program (use debug.hpp) +# Compile hugin as c prog and link with c++ program (use hugin.hpp) g++ ${CXXFLAGS} main_simple.cc -c - gcc ${CFLAGS} debug.c -c - g++ main_simple.o debug.o -o debug-obj + gcc ${CFLAGS} hugin.c -c + g++ main_simple.o hugin.o -o hugin-obj -# Compile debug as c++ prog and link with c++ program +# Compile hugin as c++ prog and link with c++ program g++ ${CXXFLAGS} main_simple.c -c - g++ ${CXXFLAGS} debug.c -c - g++ main_simple.o debug.o -o debug-obj + g++ ${CXXFLAGS} hugin.c -c + g++ main_simple.o hugin.o -o hugin-obj simple: - gcc ${CFLAGS} debug.c main_simple.c -o debug-simple - g++ ${CXXFLAGS} debug.c main_simple.c -o debug-simple + gcc ${CFLAGS} hugin.c main_simple.c -o hugin-simple + g++ ${CXXFLAGS} hugin.c main_simple.c -o hugin-simple minimal: - gcc ${CFLAGS} debug.c main_minimal.c -o debug-minimal - g++ ${CXXFLAGS} debug.c main_minimal.c -o debug-minimal + gcc ${CFLAGS} hugin.c main_minimal.c -o hugin-minimal + g++ ${CXXFLAGS} hugin.c main_minimal.c -o hugin-minimal syslog: - gcc ${CFLAGS} debug.c debug_syslog.c main_syslog.c -o debug-syslog -DWITH_DBG_SYSLOG - g++ ${CXXFLAGS} debug.c debug_syslog.c main_syslog.c -o debug-syslog -DWITH_DBG_SYSLOG + gcc ${CFLAGS} hugin.c hugin_syslog.c main_syslog.c -o hugin-syslog -DWITH_DBG_SYSLOG + g++ ${CXXFLAGS} hugin.c hugin_syslog.c main_syslog.c -o hugin-syslog -DWITH_DBG_SYSLOG filter: - gcc ${CFLAGS} debug.c debug_filter.c main_filter.c -o debug-filter -DWITH_DBG_FILTER - g++ ${CXXFLAGS} debug.c debug_filter.c main_filter.c -o debug-filter -DWITH_DBG_FILTER + gcc ${CFLAGS} hugin.c hugin_filter.c main_filter.c -o hugin-filter -DWITH_DBG_FILTER + g++ ${CXXFLAGS} hugin.c hugin_filter.c main_filter.c -o hugin-filter -DWITH_DBG_FILTER mutex: - gcc ${CFLAGS} debug.c main_mutex.c -o debug-mutex -DWITH_DBG_MUTEX - g++ ${CXXFLAGS} debug.c main_mutex.c -o debug-mutex -DWITH_DBG_MUTEX + gcc ${CFLAGS} hugin.c main_mutex.c -o hugin-mutex -DWITH_DBG_MUTEX + g++ ${CXXFLAGS} hugin.c main_mutex.c -o hugin-mutex -DWITH_DBG_MUTEX clean: - rm -f debug_{complete,complete-cpp,simple,syslog,filter,mutex,minimal} \ No newline at end of file + rm -f hugin_{complete,complete-cpp,simple,syslog,filter,mutex,minimal} \ No newline at end of file diff --git a/Makefile.files b/Makefile.files index 0e44523..f68603d 100644 --- a/Makefile.files +++ b/Makefile.files @@ -1,14 +1,16 @@ # # Include this file from your project Makefile and add the -# variable DEBUG_SOURCES to the files that need compilation. +# variable HUGIN_SOURCES to the files that need compilation. # -DEBUG_SOURCES = \ - debug.c \ - debug_syslog.c \ - debug_filter.c +HUGIN_SOURCES = \ + hugin.c \ + hugin_syslog.c \ + hugin_filter.c -DEBUG_EXTRA_DIST = \ - debug.h \ - debug_filter.h \ - debug_syslog.h +HUGIN_EXTRA_DIST = \ + hugin.h \ + hugin.hpp \ + hugin_util.h \ + hugin_filter.h \ + hugin_syslog.h diff --git a/add_file b/add_file index 83ba8a0..701e59b 100755 --- a/add_file +++ b/add_file @@ -1,5 +1,5 @@ #!/bin/bash -PROJECT="Debug Module" +PROJECT="Hugin" function allfile() { WHO="`whoami`" diff --git a/hugin.c b/hugin.c index 70a4df1..aebfd08 100644 --- a/hugin.c +++ b/hugin.c @@ -1,7 +1,7 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** - * debug.c + * hugin.c * * Thu Nov 1 13:38:47 CET 2012 * Copyright 2012 Bent Bisballe Nyeng @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.h" +#include "hugin.h" #include #include @@ -42,11 +42,11 @@ #endif #ifdef WITH_DBG_FILTER -#include "debug_filter.h" +#include "hugin_filter.h" #endif #ifdef WITH_DBG_SYSLOG -#include "debug_syslog.h" +#include "hugin_syslog.h" #endif struct dbg_config_t { diff --git a/hugin.h b/hugin.h index 3f3b753..6d46b19 100644 --- a/hugin.h +++ b/hugin.h @@ -1,7 +1,7 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** - * debug.h + * hugin.h * * Thu Nov 1 13:38:47 CET 2012 * Copyright 2012 Bent Bisballe Nyeng @@ -9,24 +9,24 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DEBUG_MODULE_DEBUG_H__ -#define __DEBUG_MODULE_DEBUG_H__ +#ifndef __HUGIN_HUGIN_H__ +#define __HUGIN_HUGIN_H__ enum DBG_FLAG { // Features @@ -89,7 +89,7 @@ enum DBG_OPTION { * Linux: If DBG_OPTION_SYSLOG_HOST is not supplied, the local syslog will be * used. * Windows: If DBG_OPTION_SYSLOG_HOST is not supplied an error will be - * returned by debug_init. + * returned by hugin_init. * If DBG_OPTION_SYSLOG_PORT is not supplied, the default syslogd port will * be used (port 514). */ @@ -129,7 +129,7 @@ void dbg_close(); * Example of usage (use mutex protected calls, send output to file): * * dbg_status_t status; - * status = debug_init(DBG_FLAG_OUTPUT_TO_FILE | DBG_FLAG_USE_MUTEX, + * status = hugin_init(DBG_FLAG_OUTPUT_TO_FILE | DBG_FLAG_USE_MUTEX, * DBG_OPTION_FILENAME, "/tmp/my.log", DBG_OPTION_END); * if(status != DBG_STATUS_OK) exit(1); @@ -166,4 +166,4 @@ int __debug(const char *func, const int line, enum __debug_class cl, #define INFO(ch, fmt...) __DEBUG(_info, ch, fmt) #define DEBUG(ch, fmt...) __DEBUG(_debug, ch, fmt) -#endif/*__DEBUG_MODULE_DEBUG_H__*/ +#endif/*__HUGIN_HUGIN_H__*/ diff --git a/hugin.hpp b/hugin.hpp index fb82878..cfd0983 100644 --- a/hugin.hpp +++ b/hugin.hpp @@ -1,7 +1,7 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** - * debug.hpp + * hugin.hpp * * Thu Nov 1 13:38:47 CET 2012 * Copyright 2012 Bent Bisballe Nyeng @@ -9,31 +9,31 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DEBUG_MODULE_DEBUG_HPP__ -#define __DEBUG_MODULE_DEBUG_HPP__ +#ifndef __HUGIN_HUGIN_HPP__ +#define __HUGIN_HUGIN_HPP__ #ifdef __cplusplus extern "C" { #endif -#include "debug.h" +#include "hugin.h" #ifdef __cplusplus } #endif -#endif/*__DEBUG_MODULE_DEBUG_HPP__*/ +#endif/*__HUGIN_HUGIN_HPP__*/ diff --git a/hugin_filter.c b/hugin_filter.c index 23e83dd..dfd541f 100644 --- a/hugin_filter.c +++ b/hugin_filter.c @@ -9,29 +9,29 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug_filter.h" +#include "hugin_filter.h" #include #include #ifndef WITH_DBG_FILTER -#warning debug_filter.c compiled but WITH_DBG_FILTER not defined +#warning hugin_filter.c compiled but WITH_DBG_FILTER not defined #endif #define NELEM(x) (sizeof(x)/sizeof((x)[0])) diff --git a/hugin_filter.h b/hugin_filter.h index d312d56..5ddd07b 100644 --- a/hugin_filter.h +++ b/hugin_filter.h @@ -1,7 +1,7 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** - * debug_filter.h + * hugin_filter.h * * Fri Dec 7 14:24:27 CET 2012 * Copyright 2012 Bent Bisballe Nyeng @@ -9,28 +9,28 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DEBUG_MODULE_DEBUG_FILTER_H__ -#define __DEBUG_MODULE_DEBUG_FILTER_H__ +#ifndef __HUGIN_HUGIN_FILTER_H__ +#define __HUGIN_HUGIN_FILTER_H__ -#include "debug.h" +#include "hugin.h" int dbg_filter_enabled(const enum __debug_class cl, const char *ch); int dbg_filter_parse(const char *filter); -#endif/*__DEBUG_MODULE_DEBUG_FILTER_H__*/ +#endif/*__HUGIN_HUGIN_FILTER_H__*/ diff --git a/hugin_syslog.c b/hugin_syslog.c index 2a8abb3..de93edb 100644 --- a/hugin_syslog.c +++ b/hugin_syslog.c @@ -1,7 +1,7 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** - * debug_syslog.c + * hugin_syslog.c * * Fri Dec 7 14:24:54 CET 2012 * Copyright 2012 Jonas Suhr Christensen @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug_syslog.h" +#include "hugin_syslog.h" #include #include @@ -46,10 +46,10 @@ typedef int socket_t; #include #include -#include "debug_util.h" +#include "hugin_util.h" #ifndef WITH_DBG_SYSLOG -#warning debug_syslog.c compiled but WITH_DBG_SYSLOG not defined +#warning hugin_syslog.c compiled but WITH_DBG_SYSLOG not defined #endif #define SYSLOG_MSGLEN 1024 @@ -255,7 +255,7 @@ void dbg_syslog_close() { #endif } -#ifdef TEST_DEBUG_SYSLOG +#ifdef TEST_HUGIN_SYSLOG //Additional dependency files //deps: //Required cflags (autoconf vars may be used) @@ -271,4 +271,4 @@ TEST_TRUE(false, "No tests yet!"); TEST_END; -#endif/*TEST_DEBUG_SYSLOG*/ +#endif/*TEST_HUGIN_SYSLOG*/ diff --git a/hugin_syslog.h b/hugin_syslog.h index ab26b6c..12d1479 100644 --- a/hugin_syslog.h +++ b/hugin_syslog.h @@ -1,7 +1,7 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** - * debug_syslog.h + * hugin_syslog.h * * Fri Dec 7 14:24:54 CET 2012 * Copyright 2012 Jonas Suhr Christensen @@ -9,24 +9,24 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DEBUG_MODULE_DEBUG_SYSLOG_H__ -#define __DEBUG_MODULE_DEBUG_SYSLOG_H__ +#ifndef __HUGIN_HUGIN_SYSLOG_H__ +#define __HUGIN_HUGIN_SYSLOG_H__ void dbg_syslog_init(const char* host, int port); @@ -34,4 +34,4 @@ void dbg_syslog_output(char* msg); void dbg_syslog_close(); -#endif/*__DEBUG_MODULE_DEBUG_SYSLOG_H__*/ +#endif/*__HUGIN_HUGIN_SYSLOG_H__*/ diff --git a/hugin_util.h b/hugin_util.h index 589f223..5a23e7e 100644 --- a/hugin_util.h +++ b/hugin_util.h @@ -1,7 +1,7 @@ /* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */ /* vim: set et sw=2 ts=2: */ /*************************************************************************** - * debug_util.h + * hugin_util.h * * Fri Jan 4 10:10:03 CET 2013 * Copyright 2013 Bent Bisballe Nyeng @@ -9,24 +9,24 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#ifndef __DEBUG_MODULE_DEBUG_UTIL_H__ -#define __DEBUG_MODULE_DEBUG_UTIL_H__ +#ifndef __HUGIN_HUGIN_UTIL_H__ +#define __HUGIN_HUGIN_UTIL_H__ #include @@ -36,4 +36,4 @@ */ struct tm *dbg_localtime(const time_t *timep, struct tm *result); -#endif/*__DEBUG_MODULE_DEBUG_UTIL_H__*/ +#endif/*__HUGIN_HUGIN_UTIL_H__*/ diff --git a/main_complete.c b/main_complete.c index 74a31e9..c7796fa 100644 --- a/main_complete.c +++ b/main_complete.c @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.h" +#include "hugin.h" #include #include diff --git a/main_filter.c b/main_filter.c index 83e500b..b2df29f 100644 --- a/main_filter.c +++ b/main_filter.c @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.h" +#include "hugin.h" #include #include diff --git a/main_minimal.c b/main_minimal.c index 63887ef..1df1328 100644 --- a/main_minimal.c +++ b/main_minimal.c @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.h" +#include "hugin.h" int main(int argc, char *argv[]) { diff --git a/main_mutex.c b/main_mutex.c index 7370832..410e9ca 100644 --- a/main_mutex.c +++ b/main_mutex.c @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.h" +#include "hugin.h" #include #include diff --git a/main_simple.c b/main_simple.c index 220f102..caad5f8 100644 --- a/main_simple.c +++ b/main_simple.c @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.h" +#include "hugin.h" #include #include diff --git a/main_simple.cc b/main_simple.cc index 0df78d7..c83cc05 100644 --- a/main_simple.cc +++ b/main_simple.cc @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.hpp" +#include "hugin.hpp" #include #include diff --git a/main_syslog.c b/main_syslog.c index 810669e..29df99c 100644 --- a/main_syslog.c +++ b/main_syslog.c @@ -9,23 +9,23 @@ ****************************************************************************/ /* - * This file is part of Debug Module. + * This file is part of Hugin. * - * Debug Module is free software; you can redistribute it and/or modify + * Hugin is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * - * Debug Module is distributed in the hope that it will be useful, + * Hugin is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with Debug Module; if not, write to the Free Software + * along with Hugin; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -#include "debug.h" +#include "hugin.h" #include #include -- cgit v1.2.3