mirror of
https://github.com/mangosfour/server.git
synced 2025-12-24 01:37:02 +00:00
Added config options to set count of eventlog records stored in DB. Attached SQL files will DROP existing and create new tables. Make sure you create backup (if you need old data). Renamed few variables in Guild class. Signed-off-by: Triply <triply@getmangos.com>
167 lines
6.2 KiB
Makefile
167 lines
6.2 KiB
Makefile
# Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
#
|
|
# This program 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.
|
|
#
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
## Sub-directories to parse
|
|
|
|
## Change installation location
|
|
# datadir = mangos/sql/updates
|
|
pkgdatadir = $(datadir)/mangos/sql/updates
|
|
|
|
## Files to be installed
|
|
# Install basic SQL files to datadir
|
|
pkgdata_DATA = \
|
|
7988_01_mangos_item_template.sql \
|
|
7988_02_characters_character_equipmentsets.sql \
|
|
7988_03_mangos_spell_chain.sql \
|
|
7988_04_mangos_creature_template.sql \
|
|
7988_05_mangos_item_template.sql \
|
|
7988_06_mangos_gameobject_template.sql \
|
|
7988_07_characters_characters.sql \
|
|
7988_08_mangos_spell_bonus_data.sql \
|
|
7988_09_mangos_spell_proc_event.sql \
|
|
8016_01_mangos_npc_spellclick_spells.sql \
|
|
8021_01_mangos_spell_proc_event.sql \
|
|
8030_01_characters_character_spell.sql \
|
|
8030_02_characters_character_action.sql \
|
|
8030_03_mangos_npc_trainer.sql \
|
|
8050_01_mangos_spell_proc_event.sql \
|
|
8050_02_mangos_spell_bonus_data.sql \
|
|
8053_01_mangos_command.sql \
|
|
8060_01_mangos_spell_pet_auras.sql \
|
|
8064_01_mangos_spell_chain.sql \
|
|
8065_01_mangos_spell_proc_event.sql \
|
|
8071_01_mangos_command.sql \
|
|
8072_01_characters_characters.sql \
|
|
8072_02_characters_characters.sql \
|
|
8098_01_characters_character_action.sql \
|
|
8098_02_mangos_playercreateinfo_action.sql \
|
|
8098_03_characters_character_pet.sql \
|
|
8098_04_characters_pet_spell.sql \
|
|
8104_01_characters.sql \
|
|
8112_01_mangos_spell_proc_event.sql \
|
|
8115_01_mangos_playercreateinfo_action.sql \
|
|
8140_01_mangos_spell_proc_event.sql \
|
|
8158_01_mangos_playercreateinfo_action.sql \
|
|
8190_01_mangos_creature_template.sql \
|
|
8191_01_mangos_spell_affect.sql \
|
|
8211_01_mangos_spell_proc_event.sql \
|
|
8212_01_mangos_spell_proc_event.sql \
|
|
8213_01_mangos_spell_bonus_data.sql \
|
|
8227_01_mangos_spell_proc_event.sql \
|
|
8237_01_mangos_creature_template.sql \
|
|
8247_01_mangos_spell_bonus_data.sql \
|
|
8249_01_mangos_spell_proc_item_enchant.sql \
|
|
8249_02_mangos_spell_chain.sql \
|
|
8250_01_mangos_spell_threat.sql \
|
|
8251_01_mangos_spell_chain.sql \
|
|
8251_02_mangos_spell_bonus_data.sql \
|
|
8251_03_mangos_spell_proc_event.sql \
|
|
8253_01_mangos_spell_chain.sql \
|
|
8253_02_mangos_spell_proc_event.sql \
|
|
8254_01_mangos_spell_proc_event.sql \
|
|
8294_01_mangos_playercreateinfo_action.sql \
|
|
8310_01_mangos_spell_proc_event.sql \
|
|
8332_01_realmd_realmcharacters.sql \
|
|
8339_01_characters_characters.sql \
|
|
8339_02_characters_character_battleground_data.sql \
|
|
8342_01_mangos_spell_proc_event.sql \
|
|
8361_01_mangos_spell_bonus_data.sql \
|
|
8364_01_mangos_db_version.sql \
|
|
8377_01_mangos_spell_area.sql \
|
|
8392_01_mangos_spell_proc_event.sql \
|
|
8392_02_mangos_spell_chain.sql \
|
|
8394_01_mangos_spell_proc_event.sql \
|
|
8397_01_mangos_spell_chain.sql \
|
|
8397_02_mangos_spell_threat.sql \
|
|
8397_03_characters_character_spell.sql \
|
|
8399_01_mangos_spell_elixir.sql \
|
|
8402_01_characters_guild_eventlog.sql \
|
|
8402_02_characters_guild_bank_eventlog.sql \
|
|
README
|
|
|
|
## Additional files to include when running 'make dist'
|
|
# SQL update files, to upgrade database schema from older revisions
|
|
EXTRA_DIST = \
|
|
7988_01_mangos_item_template.sql \
|
|
7988_02_characters_character_equipmentsets.sql \
|
|
7988_03_mangos_spell_chain.sql \
|
|
7988_04_mangos_creature_template.sql \
|
|
7988_05_mangos_item_template.sql \
|
|
7988_06_mangos_gameobject_template.sql \
|
|
7988_07_characters_characters.sql \
|
|
7988_08_mangos_spell_bonus_data.sql \
|
|
7988_09_mangos_spell_proc_event.sql \
|
|
8016_01_mangos_npc_spellclick_spells.sql \
|
|
8021_01_mangos_spell_proc_event.sql \
|
|
8030_01_characters_character_spell.sql \
|
|
8030_02_characters_character_action.sql \
|
|
8030_03_mangos_npc_trainer.sql \
|
|
8050_01_mangos_spell_proc_event.sql \
|
|
8050_02_mangos_spell_bonus_data.sql \
|
|
8053_01_mangos_command.sql \
|
|
8060_01_mangos_spell_pet_auras.sql \
|
|
8064_01_mangos_spell_chain.sql \
|
|
8065_01_mangos_spell_proc_event.sql \
|
|
8071_01_mangos_command.sql \
|
|
8072_01_characters_characters.sql \
|
|
8072_02_characters_characters.sql \
|
|
8098_01_characters_character_action.sql \
|
|
8098_02_mangos_playercreateinfo_action.sql \
|
|
8098_03_characters_character_pet.sql \
|
|
8098_04_characters_pet_spell.sql \
|
|
8104_01_characters.sql \
|
|
8112_01_mangos_spell_proc_event.sql \
|
|
8115_01_mangos_playercreateinfo_action.sql \
|
|
8140_01_mangos_spell_proc_event.sql \
|
|
8158_01_mangos_playercreateinfo_action.sql \
|
|
8190_01_mangos_creature_template.sql \
|
|
8191_01_mangos_spell_affect.sql \
|
|
8211_01_mangos_spell_proc_event.sql \
|
|
8212_01_mangos_spell_proc_event.sql \
|
|
8213_01_mangos_spell_bonus_data.sql \
|
|
8227_01_mangos_spell_proc_event.sql \
|
|
8237_01_mangos_creature_template.sql \
|
|
8247_01_mangos_spell_bonus_data.sql \
|
|
8249_01_mangos_spell_proc_item_enchant.sql \
|
|
8249_02_mangos_spell_chain.sql \
|
|
8250_01_mangos_spell_threat.sql \
|
|
8251_01_mangos_spell_chain.sql \
|
|
8251_02_mangos_spell_bonus_data.sql \
|
|
8251_03_mangos_spell_proc_event.sql \
|
|
8253_01_mangos_spell_chain.sql \
|
|
8253_02_mangos_spell_proc_event.sql \
|
|
8254_01_mangos_spell_proc_event.sql \
|
|
8294_01_mangos_playercreateinfo_action.sql \
|
|
8310_01_mangos_spell_proc_event.sql \
|
|
8332_01_realmd_realmcharacters.sql \
|
|
8339_01_characters_characters.sql \
|
|
8339_02_characters_character_battleground_data.sql \
|
|
8342_01_mangos_spell_proc_event.sql \
|
|
8361_01_mangos_spell_bonus_data.sql \
|
|
8364_01_mangos_db_version.sql \
|
|
8377_01_mangos_spell_area.sql \
|
|
8392_01_mangos_spell_proc_event.sql \
|
|
8392_02_mangos_spell_chain.sql \
|
|
8394_01_mangos_spell_proc_event.sql \
|
|
8397_01_mangos_spell_chain.sql \
|
|
8397_02_mangos_spell_threat.sql \
|
|
8397_03_characters_character_spell.sql \
|
|
8399_01_mangos_spell_elixir.sql \
|
|
8402_01_characters_guild_eventlog.sql \
|
|
8402_02_characters_guild_bank_eventlog.sql \
|
|
README
|