Skip to content

Commit

Permalink
Merge pull request #1 from HarpyWar/master
Browse files Browse the repository at this point in the history
Sync with Harpywar
  • Loading branch information
xboi209 committed Jul 13, 2014
2 parents b5eb333 + 1355b18 commit 7f52813
Show file tree
Hide file tree
Showing 181 changed files with 36,312 additions and 2,936 deletions.
14 changes: 14 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
language: cpp

os:
- linux

before_install:
- sudo apt-get install build-essential zlib1g-dev libmysqlclient-dev liblua5.1-0-dev
- mkdir build
- cd build

script:
- cmake -D CMAKE_INSTALL_PREFIX=/usr/local/pvpgn -D WITH_MYSQL=true -D WITH_LUA=true ../
- make
- sudo make install
32 changes: 32 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,44 @@ if(WIN32)
option(WITH_WIN32_GUI "enable GUI building (default on)" ON)
endif(WIN32)

option(WITH_LUA "enable Lua support" OFF)

#storage backends flags
option(WITH_MYSQL "include MySQL user accounts support" OFF)
option(WITH_SQLITE3 "include SQLite3 user accounts support" OFF)
option(WITH_PGSQL "include PostgreSQL user accounts support" OFF)
option(WITH_ODBC "include ODBC user accounts support" OFF)
include(ConfigureChecks.cmake)


if (CMAKE_COMPILER_IS_GNUCXX)
# Determine GCC version.
message("Determining GCC version.")
EXEC_PROGRAM(${CMAKE_CXX_COMPILER}
ARGS --version
OUTPUT_VARIABLE _GCC_VERSION)
STRING(REGEX REPLACE ".* ([0-9])\\.([0-9])\\.([0-9]) .*" "\\1\\2\\3"
_GCC_VERSION ${_GCC_VERSION})
message(" GCC version is ${_GCC_VERSION}")

# Add -Wno-longlong if the GCC version is < 4.0.0. Add -pedantic flag
# but disable warnings for variadic macros with GCC >= 4.0.0. Earlier
# versions warn because of anonymous variadic macros in pedantic mode
# but do not have a flag to disable these warnings.
if (400 GREATER _GCC_VERSION)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-long-long")
else (400 GREATER _GCC_VERSION)
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -pedantic -Wno-variadic-macros")
endif (400 GREATER _GCC_VERSION)

# Pass CXX flags to flags.
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -DSEQAN_CXX_FLAGS_=\"${CMAKE_CXX_FLAGS}\"")
endif (CMAKE_COMPILER_IS_GNUCXX)


subdirs(src conf man files)
if(WITH_LUA)
add_subdirectory(lua)
endif(WITH_LUA)

ENABLE_TESTING()
16 changes: 13 additions & 3 deletions ConfigureChecks.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,15 @@ set(LOCALSTATEDIR ${LOCALSTATE_INSTALL_DIR})
set(MANDIR ${MAN_INSTALL_DIR})

# set default hardcoded config paths
set(BNETD_DEFAULT_CONF_FILE "${SYSCONFDIR}/bnetd.conf")
set(D2CS_DEFAULT_CONF_FILE "${SYSCONFDIR}/d2cs.conf")
set(D2DBS_DEFAULT_CONF_FILE "${SYSCONFDIR}/d2dbs.conf")
if(WIN32)
set(BNETD_DEFAULT_CONF_FILE "conf/bnetd.conf")
set(D2CS_DEFAULT_CONF_FILE "conf/d2cs.conf")
set(D2DBS_DEFAULT_CONF_FILE "conf/d2dbs.conf")
else(WIN32)
set(BNETD_DEFAULT_CONF_FILE "${SYSCONFDIR}/bnetd.conf")
set(D2CS_DEFAULT_CONF_FILE "${SYSCONFDIR}/d2cs.conf")
set(D2DBS_DEFAULT_CONF_FILE "${SYSCONFDIR}/d2dbs.conf")
endif(WIN32)

# library checks
find_package(ZLIB REQUIRED)
Expand All @@ -36,6 +42,10 @@ check_library_exists(socket socket "" HAVE_LIBSOCKET)
check_library_exists(resolv inet_aton "" HAVE_LIBRESOLV)
check_library_exists(bind __inet_aton "" HAVE_LIBBIND)

if(WITH_LUA)
find_package(Lua REQUIRED)
endif(WITH_LUA)

# storage module checks
if(WITH_ODBC)
find_package(ODBC REQUIRED)
Expand Down
24 changes: 17 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,33 +1,43 @@
[![Build Status](https://travis-ci.org/HarpyWar/pvpgn.svg?branch=master)](https://travis-ci.org/HarpyWar/pvpgn) [![Build status](https://ci.appveyor.com/api/projects/status/dqoj9lkvhfwthmn6)](https://ci.appveyor.com/project/HarpyWar/pvpgn)
Player versus Player Gaming Network
=====
![](http://harpywar.com/images/items/pvpgn.gif)

Original PvPGN 1.99 source code with tweaks.


Source Code changes
--
* add display custom icons depends on a user rating, custom output for command `/stats`; works with Warcraft and Starcraft (see [icons.conf](https://github.com/HarpyWar/pvpgn/blob/master/conf/icons.conf.in)) <sup>commits [1](https://github.com/HarpyWar/pvpgn/commit/c11af352603e18acc52102ba8574776425248331), [2](https://github.com/HarpyWar/pvpgn/commit/368c4b9296d18a515af746b65fe69054ab6f4236), [3](https://github.com/HarpyWar/pvpgn/commit/f1a96c392055a777b48dc4d77631c5e906161e28)</sup>
* Lua scripting support (WITH_LUA cmake directive)
* Add display custom icons depends on a user rating, custom output for command `/stats`; works with Warcraft and Starcraft (see [icons.conf](https://github.com/HarpyWar/pvpgn/blob/master/conf/icons.conf.in)) <sup>commits [1](https://github.com/HarpyWar/pvpgn/commit/c11af352603e18acc52102ba8574776425248331), [2](https://github.com/HarpyWar/pvpgn/commit/368c4b9296d18a515af746b65fe69054ab6f4236), [3](https://github.com/HarpyWar/pvpgn/commit/f1a96c392055a777b48dc4d77631c5e906161e28)</sup>
* fix command send flooding <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/74f9e4faafe24699597e4be5bfda83bf255ba72e)</sup>
* fix compile error when pointer size is larger than int <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/1ea116434ce009bad4903ff72bd69bbb8987ce06)</sup>
* fix Warcraft 3 ICON SWITCH hack <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/84811bcfe875d6c42cd8271bbdae757f0b5d445b)</sup>
* fix saving sql fields with custom characters in the name <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/18713ffe35cbe9a12193e5c1f1caf5031d4c4731)</sup>
* add game id field in status.xml output <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/b989d26e1182a3ee8cf62f3ee79dfb231fd66e23)</sup>
* add game id field and user game version in status.dat output (the same as status.xml) <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/39d0b2be71c7ddd808a20f97fe6ac17078ce013f)</sup>
* welcome text for Warcraft 3 is moved from the code into a new file `bnmotd_w3.txt` ([example](http://img21.imageshack.us/img21/1808/j2py.png) with colored text is included)
<sup>[commit](https://github.com/HarpyWar/pvpgn/commit/ff8ca941cd7942bab201607fbc31382837a35617)
<sup>[commit](https://github.com/HarpyWar/pvpgn/commit/ff8ca941cd7942bab201607fbc31382837a35617)</sup>
* Feature to use d2s character as a template for a new character in newbie.save; each character class can have it's own template <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/20)</sup>


New commands
--
* `/save` immediately save changes of accounts and clans from the cache to a storage (useful for testing) <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/be8d65d16f910b2090b0db9e7eb2c043b816dae7)</sup>
* `/icon <username> [CODE]` set userselected_icon for a user, works with Warcraft and Starcraft <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/1ade081c6b10a3e710130b88613b71b880ba0cd7)</sup>
* `/icon <add|del|list>` icon stash implementation - each user has it's own stash with icons, admin/operator can add icon to user's stash, you can set aliases for icons in config; works with Warcraft and Starcraft <sup>commits [1](https://github.com/HarpyWar/pvpgn/commit/1ade081c6b10a3e710130b88613b71b880ba0cd7), [2](https://github.com/HarpyWar/pvpgn/commit/36deb1179bca931bd6585c2b6dbf7d8ade08bc8e)</sup>
* `/find <substr of username>` search account by part of the name - [patch #1526](http://developer.berlios.de/patch/?func=detailpatch&patch_id=1526&group_id=2291) from berlios <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/c229c6693b3dd55f02fe3a81403870044c0786b2)</sup>
* `/quiz` Trivia Quiz Game (implemented in Lua) <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/ee04fdd23dfef90f0b852a6e90df23c7f5edc08e)</sup>

Modified commands
--
* `/set` exclusion to get/set a password hash and user id; feature to empty key with "null" value; more info in output of the command and examples <sup>commits [1](https://github.com/HarpyWar/pvpgn/commit/d96e1029478d92f67000761983e83ccfde2abbdf), [2](https://github.com/HarpyWar/pvpgn/commit/1ade081c6b10a3e710130b88613b71b880ba0cd7#diff-ef576b6b7e90128c3718523eaaf1b894R4716)</sup>
* `/finger` more info in the command output - [patch #2859](http://developer.berlios.de/patch/?func=detailpatch&patch_id=2859&group_id=2291) from berlios <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/bdb450084704da1f33e28c9edd3d2d16b720a946)</sup>
* `/games lobby` show games in lobby only - [patch #3235](http://developer.berlios.de/patch/?func=detailpatch&patch_id=3235&group_id=2291) from berlios <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/5d27cece2c24b5fe779f1560162a31442bf02617)</sup>
* `/friends online` show online friends only - [patch #3236](http://developer.berlios.de/patch/?func=detailpatch&patch_id=3236&group_id=2291) from berlios <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/8762667276b535d3385d51941d41d780089a7049)</sup>
* `/topic` feature to set text on a new line <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/6)</sup>
* `/alert <message>` like /announce but message box shows instead of a text <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/15)</sup>
* `/rehash <mode>` feature to rehash configs separately <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/ee04fdd23dfef90f0b852a6e90df23c7f5edc08e)</sup>


Minor changes
--
Expand All @@ -38,19 +48,19 @@ Minor changes
* skip_versioncheck, allow_bad_version are enabled by default in bnetd.conf - for easy start
* source code is formatted for better reading
* unused files are removed, only pvpgn source here
* move directory `files` to `var\files` on Windows (like Unix)
* unknown udp packets are logged with enabled debug mode only (it always chokes a log file before) <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/c39f9f03159b2edc8d2457d8134d84486378f9b1)
* add a file location for all the text files like MOTD (often a server admin doesn't know where a file is located)
* add option ignore-version for programs **bnchat** and **bnstat** - [patch #3184](http://developer.berlios.de/patch/?func=detailpatch&patch_id=3184&group_id=2291) from berlios <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/a1fb914c30d9d69d062e8f698f7d0e9bacf41367)
* help for all commands is displayed from bnhelp.conf and format changed for better reading, updated more help messages <sup>[issue](https://github.com/HarpyWar/pvpgn/issues/5)</sup>
* fix error in log when user sends a message with text length of 255 symbols <sup>[commit](https://github.com/HarpyWar/pvpgn/commit/af2baccdb8a2b624627caa94eac5595ac8f76e07)</sup>
* update default tracker servers in config, track is enabled by default <sup>issues [1](https://github.com/HarpyWar/pvpgn/issues/7), [2](https://github.com/HarpyWar/pvpgn/issues/18)</sup>


Build source code
--

#### Windows
Use [Magic Builder](http://code.google.com/p/pvpgn-magic-builder/).

Download code manually and put into `source` directory (button [Download ZIP](https://github.com/HarpyWar/pvpgn/archive/master.zip) on the right side of this repository page)
Use [Magic Builder](https://github.com/HarpyWar/pvpgn-magic-builder).

#### Linux
[Русский](http://harpywar.com/?a=articles&b=2&c=1&d=74) | [English](http://harpywar.com/?a=articles&b=2&c=1&d=74&lang=en)
Expand Down
10 changes: 4 additions & 6 deletions TODO
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
PvPGN TODO LIST AND WHATS BEING WORKED ON:
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=

Release v1.7 ROADMAP:
Release v2.0-PRO ROADMAP:
1. DOCUMENTATION (client and server documentation; a FAQ, HOWTO and a file
describing all configuration options)
describing all configuration options). Site http://pvpgn.pro
2. i18n or some sort to support different language messages to users
3. Connectivity with Ghost++ to support DotA


Stuff not programmed for any specific version release:

Expand Down Expand Up @@ -32,10 +34,6 @@ a client lib)
* design a plugins support and move in time all the code in plugins (except
the core code of course)

* add gamespy protocol support (gamespy master server does what we do in bnetd
keeping user accounts, records, stats, channels, publishing games to requestors)
very nice ideea from Mivabe

* add some way to be able to read/write specific "runtime changable" bnetd.conf
entries (like while server is online doing /config "allow_unknown_version" "false")

Expand Down
29 changes: 29 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
branches:
only:
- master

os: Windows Server 2012

clone_folder: c:\pvpgn

install:
- cmd: cd c:\
- cmd: appveyor DownloadFile https://github.com/HarpyWar/pvpgn-magic-builder/archive/master.zip
- cmd: 7z.exe x master.zip >nul
- cmd: ren pvpgn-magic-builder-master builder
- cmd: mkdir c:\builder\source\
- cmd: xcopy /E /R /K /Y /Q "c:\pvpgn" "c:\builder\source\"

build:
project: c:\builder\build\pvpgn.sln

build_script:
- cmd: cd c:\builder\
- cmd: build_pvpgn.bat cmake_only 6 2 1 y
- cmd: call "%VS120COMNTOOLS%vsvars32.bat"
- cmd: set INCLUDE=c:\builder\module\include\atlmfc\;%INCLUDE%
- cmd: call "%FrameworkDir%%FrameworkVersion%\MSBuild.exe" c:\builder\build\pvpgn.sln /t:Rebuild /p:Configuration=Release;UseEnv=true /consoleloggerparameters:Summary;PerformanceSummary;Verbosity=minimal /maxcpucount

test:
assemblies:
- '**\src\bnetd\Release\bnetd.exe'
18 changes: 13 additions & 5 deletions cmake/Modules/DefineInstallationPaths.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,20 @@ SET(LOCALE_INSTALL_DIR
FORCE
)

if(WIN32)
SET(SYSCONF_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}conf"
CACHE PATH "The ${APPLICATION_NAME} sysconfig install dir (default conf)"
FORCE
)
else(WIN32)
SET(SYSCONF_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}/etc"
CACHE PATH "The ${APPLICATION_NAME} sysconfig install dir (default prefix/etc)"
FORCE
)
endif(WIN32)

SET(SYSCONF_INSTALL_DIR
"${EXEC_INSTALL_PREFIX}/etc"
CACHE PATH "The ${APPLICATION_NAME} sysconfig install dir (default prefix/etc)"
FORCE
)
SET(MAN_INSTALL_DIR
"${SHARE_INSTALL_PREFIX}/man"
CACHE PATH "The ${APPLICATION_NAME} man install dir (default prefix/man)"
Expand Down
72 changes: 72 additions & 0 deletions cmake/Modules/FindLua.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
# Copyright (c) 2013 Martin Felis &lt;[email protected]&gt;
# License: Public Domain (Unlicense: http://unlicense.org/)
# Modified by Edvin "Lego3" Linge for the CorsixTH project.
#
# Try to find Lua or LuaJIT depending on the variable WITH_LUAJIT.
# Sets the following variables:
# LUA_FOUND
# LUA_INCLUDE_DIR
# LUA_LIBRARY
#
# Use it in a CMakeLists.txt script as:
#
# OPTION (WITH_LUAJIT "Use LuaJIT instead of default Lua" OFF)
# UNSET(LUA_FOUND CACHE)
# UNSET(LUA_INCLUDE_DIR CACHE)
# UNSET(LUA_LIBRARY CACHE)
# FIND_PACKAGE (Lua REQUIRED)

SET (LUA_FOUND FALSE)
SET (LUA_LIBRARIES)

SET (LUA_INTERPRETER_TYPE "Lua5.1")
SET (LUA_LIBRARY_NAME lua5.1 lua51 lua lua-5.1)
SET (LUA_INCLUDE_DIRS include/lua5.1 include/lua51 include/lua include/lua-5.1 include)


FIND_PATH (LUA_INCLUDE_DIR lua.h
HINTS
ENV LUA_DIR
PATH_SUFFIXES ${LUA_INCLUDE_DIRS}
PATHS
/opt/local
/usr/local
/usr
/opt
/sw
~/Library/Frameworks
/Library/Frameworks
)
FIND_LIBRARY (LUA_LIBRARY NAMES ${LUA_LIBRARY_NAME}
HINTS
ENV LUA_DIR
PATH_SUFFIXES lib
PATHS
/usr
/usr/local
/opt/local
/opt
/sw
~/Library/Frameworks
/Library/Frameworks
)

IF (LUA_INCLUDE_DIR AND LUA_LIBRARY)
SET (LUA_FOUND TRUE)
SET (LUA_LIBRARIES ${LUA_LIBRARY})
ENDIF (LUA_INCLUDE_DIR AND LUA_LIBRARY)

IF (LUA_FOUND)
IF (NOT Lua_FIND_QUIETLY)
MESSAGE(STATUS "Found ${LUA_INTERPRETER_TYPE} library: ${LUA_LIBRARY}")
ENDIF (NOT Lua_FIND_QUIETLY)
ELSE (LUA_FOUND)
IF (Lua_FIND_REQUIRED)
MESSAGE(FATAL_ERROR "Could not find ${LUA_INTERPRETER_TYPE}")
ENDIF (Lua_FIND_REQUIRED)
ENDIF (LUA_FOUND)

INCLUDE(FindPackageHandleStandardArgs)
FIND_PACKAGE_HANDLE_STANDARD_ARGS(Lua DEFAULT_MSG LUA_LIBRARY LUA_INCLUDE_DIR)

MARK_AS_ADVANCED ( LUA_INCLUDE_DIR LUA_LIBRARY)
18 changes: 6 additions & 12 deletions conf/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,8 @@
# generate the configs with proper line endings
set(OUTPUT_CONFS ad.conf anongame_infos.conf address_translation.conf
autoupdate.conf bnalias.conf bnban.conf bnetd_default_user.plain
bnhelp.conf bnissue.txt bnmaps.conf bnxpcalc.conf bnmotd-enUS.txt
bnmotd-csCZ.txt bnmotd-deDE.txt bnmotd-esES.txt bnmotd-frFR.txt
bnmotd-nlNL.txt bnmotd-plPL.txt bnmotd-ruRU.txt bnmotd-zhCN.txt
bnmotd-zhTW.txt bnmotd-ptBR.txt bnmotd_w3.txt
bnxplevel.conf channel.conf command_groups.conf news.txt realm.conf
bnissue.txt bnmaps.conf bnxpcalc.conf
bnxplevel.conf channel.conf command_groups.conf realm.conf
sql_DB_layout2.conf sql_DB_layout.conf supportfile.conf topics.conf
tournament.conf versioncheck.conf icons.conf)
foreach(CONF ${OUTPUT_CONFS})
Expand All @@ -20,10 +17,8 @@ configure_file(${CMAKE_CURRENT_SOURCE_DIR}/d2dbs.conf.in ${CMAKE_CURRENT_BINARY_
if(WITH_BNETD)
set(BNETD_CONFS bnetd.conf ad.conf anongame_infos.conf address_translation.conf
autoupdate.conf bnalias.conf bnban.conf
bnetd_default_user.plain bnhelp.conf bnissue.txt bnmaps.conf bnmotd-enUS.txt
bnmotd-csCZ.txt bnmotd-deDE.txt bnmotd-esES.txt bnmotd-frFR.txt bnmotd-nlNL.txt
bnmotd-plPL.txt bnmotd-ruRU.txt bnmotd-zhCN.txt bnmotd-zhTW.txt bnmotd-ptBR.txt
bnxpcalc.conf bnxplevel.conf channel.conf command_groups.conf news.txt bnmotd_w3.txt
bnetd_default_user.plain bnissue.txt bnmaps.conf
bnxpcalc.conf bnxplevel.conf channel.conf command_groups.conf
realm.conf sql_DB_layout.conf sql_DB_layout2.conf supportfile.conf topics.conf
tournament.conf versioncheck.conf icons.conf)

Expand All @@ -33,9 +28,6 @@ endif(WITH_BNETD)

if(WITH_D2CS)
set(D2CS_CONFS d2cs.conf anongame_infos.conf)

# special treatment for non .in files
install(FILES d2server.ini DESTINATION ${SYSCONFDIR})
endif(WITH_D2CS)

if(WITH_D2DBS)
Expand All @@ -45,3 +37,5 @@ endif(WITH_D2DBS)
foreach(CONF_FILE ${BNETD_CONFS} ${D2CS_CONFS} ${D2DBS_CONFS})
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/${CONF_FILE} DESTINATION ${SYSCONFDIR})
endforeach(CONF_FILE)

add_subdirectory(i18n)
16 changes: 8 additions & 8 deletions conf/Makefile.am
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
if COND_BNETD
bnetd_confs = bnetd.conf ad.conf anongame_infos.conf address_translation.conf \
autoupdate.conf bnalias.conf bnban.conf bnetd_default_user.cdb \
bnetd_default_user.plain bnhelp.conf bnissue.txt bnmaps.conf \
bnetd_default_user.plain bnissue.txt bnmaps.conf \
bnmotd.txt bnxpcalc.conf bnxplevel.conf channel.conf \
command_groups.conf news.txt realm.conf sql_DB_layout.conf \
command_groups.conf realm.conf sql_DB_layout.conf \
supportfile.conf topics.conf tournament.conf versioncheck.conf \
sql_DB_layout2.conf
bnetd_extras = bnetd.conf.in bnetd.conf.win32 ad.conf.in anongame_infos.conf.in \
address_translation.conf.in autoupdate.conf.in bnalias.conf.in \
bnban.conf.in bnetd_default_user.plain.in bnhelp.conf.in bnissue.txt.in \
bnmaps.conf.in bnmotd.txt.in bnxpcalc.conf.in bnxplevel.conf.in \
channel.conf.in command_groups.conf.in news.txt.in realm.conf.in \
bnban.conf.in bnetd_default_user.plain.in bnissue.txt.in \
bnmaps.conf.in bnxpcalc.conf.in bnxplevel.conf.in \
channel.conf.in command_groups.conf.in realm.conf.in \
sql_DB_layout.conf.in supportfile.conf.in topics.conf.in \
tournament.conf.in versioncheck.conf.in sql_DB_layout2.conf.in
else
Expand Down Expand Up @@ -58,8 +58,8 @@ d2dbs.conf:d2dbs.conf.in $(top_builddir)/config.status

CONFIG_CLEAN_FILES = bnetd.conf d2cs.conf d2dbs.conf ad.conf \
anongame_infos.conf address_translation.conf autoupdate.conf \
bnalias.conf bnban.conf bnetd_default_user.plain bnhelp.conf \
bnissue.txt bnmaps.conf bnmotd.txt bnxpcalc.conf bnxplevel.conf \
channel.conf command_groups.conf news.txt realm.conf \
bnalias.conf bnban.conf bnetd_default_user.plain \
bnissue.txt bnmaps.conf bnxpcalc.conf bnxplevel.conf \
channel.conf command_groups.conf realm.conf \
sql_DB_layout.conf supportfile.conf topics.conf tournament.conf \
versioncheck.conf sql_DB_layout2.conf
Loading

0 comments on commit 7f52813

Please sign in to comment.