Changeset 44 for trunk/configure.ac

Show
Ignore:
Timestamp:
11/19/08 13:27:40 (17 years ago)
Author:
yumileroy
Message:

[svn] * Merge Temp dev SVN with Assembla.
* Changes include:

  • Implementation of w12x's Outdoor PvP and Game Event Systems.
  • Temporary removal of IRC Chat Bot (until infinite loop when disabled is fixed).
  • All mangos -> trinity (to convert your mangos_string table, please run mangos_string_to_trinity_string.sql).
  • Improved Config cleanup.
  • And many more changes.

Original author: Seline
Date: 2008-10-14 11:57:03-05:00

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/configure.ac

    r39 r44  
    1 # Copyright (C) 2005-2008 MaNGOS project <http://www.mangosproject.org/> 
     1# Copyright (C) 2008 Trinity <http://www.trinitycore.org/> 
     2# 
     3# Thanks to the original authors: MaNGOS <http://www.mangosproject.org/> 
    24# 
    35# This file is free software; as a special exception the author gives 
     
    160162#  Include debug info in library? 
    161163AC_MSG_CHECKING(whether to include debug info in library) 
    162 MANGOSD_DEBUG_INFO=no 
     164TRINITYD_DEBUG_INFO=no 
    163165AC_ARG_WITH(debug-info, 
    164166[ 
     
    168170[ 
    169171    if test "$withval" = "yes" ; then 
    170         CFLAGS="-g -DMANGOS_DEBUG $CFLAGS" 
    171         CXXFLAGS="-g -DMANGOS_DEBUG $CXXFLAGS" 
    172         MANGOSD_DEBUG_INFO=yes 
     172        CFLAGS="-g -DTRINITY_DEBUG $CFLAGS" 
     173        CXXFLAGS="-g -DTRINITY_DEBUG $CXXFLAGS" 
     174        TRINITYD_DEBUG_INFO=yes 
    173175    elif test "$withval" != "no" ; then 
    174176        AC_MSG_ERROR(Please choose yes or no) 
    175177    fi 
    176178]) 
    177 AC_MSG_RESULT($MANGOSD_DEBUG_INFO) 
     179AC_MSG_RESULT($TRINITYD_DEBUG_INFO) 
    178180 
    179181 
    180182# Enable CLI console? 
    181183AC_MSG_CHECKING(whether cli console is enabled) 
    182 MANGOSD_ENABLE_CLI=no 
     184TRINITYD_ENABLE_CLI=no 
    183185AC_ARG_ENABLE(cli, 
    184186[  --enable-cli Turn on command console system], 
     
    187189        CFLAGS="-DENABLE_CLI $CFLAGS" 
    188190        CXXFLAGS="-DENABLE_CLI $CXXFLAGS" 
    189         MANGOSD_ENABLE_CLI=yes 
     191        TRINITYD_ENABLE_CLI=yes 
    190192    elif test "$withval" != "no" ; then 
    191193        AC_MSG_ERROR(Please choose yes or no) 
    192194    fi 
    193195]) 
    194 AC_MSG_RESULT($MANGOSD_ENABLE_CLI) 
     196AC_MSG_RESULT($TRINITYD_ENABLE_CLI) 
    195197 
    196198# Enable remote console? 
    197199AC_MSG_CHECKING(whether remote console is enabled) 
    198 MANGOSD_ENABLE_RA=no 
     200TRINITYD_ENABLE_RA=no 
    199201AC_ARG_ENABLE(ra, 
    200202[  --enable-ra Turn on remote console system], 
     
    203205        CFLAGS="-DENABLE_RA $CFLAGS" 
    204206        CXXFLAGS="-DENABLE_RA $CXXFLAGS" 
    205         MANGOSD_ENABLE_RA=yes 
     207        TRINITYD_ENABLE_RA=yes 
    206208    elif test "$withval" != "no" ; then 
    207209        AC_MSG_ERROR(Please choose yes or no) 
    208210    fi 
    209211]) 
    210 AC_MSG_RESULT($MANGOSD_ENABLE_RA) 
     212AC_MSG_RESULT($TRINITYD_ENABLE_RA) 
    211213 
    212214## Check for required header files. 
     
    288290AC_SUBST(POSTGRE_LIBS) 
    289291AC_SUBST(DOXYGEN) 
    290 AC_SUBST(MANGOSD_DEBUG_INFO) 
    291 AC_SUBST(MANGOSD_ENABLE_CLI) 
    292 AC_SUBST(MANGOSD_ENABLE_RA) 
     292AC_SUBST(TRINITYD_DEBUG_INFO) 
     293AC_SUBST(TRINITYD_ENABLE_CLI) 
     294AC_SUBST(TRINITYD_ENABLE_RA) 
    293295AC_SUBST(TRINI_INCLUDES) 
    294296AC_SUBST(TRINI_LIBS) 
     
    315317   src/trinityrealm/Makefile 
    316318   src/trinitycore/Makefile 
    317    src/game/IRCConf.h 
    318319   src/bindings/Makefile 
    319320   src/bindings/interface/Makefile