Jump to content

Hisoka

Inactive Member
  • Posts

    50
  • Joined

  • Last visited

  • Feedback

    0%

Everything posted by Hisoka

  1. create character: logos are accumulated with that of wolfman select character: wolfman does not appear
  2. I need to resize the boxes of object descriptions, but I can not find the file, does anyone know where it is?
  3. Does anyone know where I can find the file to resize these boxes in a quest?
  4. im looking the part client and server i have currently binary and source could someone be kind enough to send me the link?
  5. thanks for responding yes this allways fails and no bonus in /state [Hidden Content]
  6. item.cpp and have char_resist.cpp dont work pls help
  7. how i can see the source syserr? i cant find the file.. someone tells me what i should add for appears
  8. i have a source with directx 8 -> 9 and granny 2.4 -> 2.9 here is the problem? how i can downgrade?
  9. i dont know if this is posted horse skills no damage (only for M1 no G and P) open game /src/ char_skill.cpp if(GetMountVnum()) { if( !((GetMountVnum() >= 20209 && GetMountVnum() <= 20212) || GetMountVnum() == 20215 || GetMountVnum() == 20218 || GetMountVnum() == 20225 ) ) return false; } replaced by if(GetMountVnum()) { if( GetMountVnum() < 20209 && GetMountVnum() > 20212) if (GetMountVnum() != 20215 || GetMountVnum() != 20218 || GetMountVnum() != 20220) return false; } like that
  10. thanks but i put pc & pc2 of gameforge m2 and same error
  11. after compiling the source of mainline i have that bug [Hidden Content] [Hidden Content] syser says 0922 23:51:14768 :: Hair number 299 is not exist. 0922 23:51:14808 :: Hair number 189 is not exist. 0922 23:51:24383 :: Hair number 32001 is not exist. 0922 23:51:24944 :: Hair number 32001 is not exist. ...
  12. I already tried but gave no result if I do with this makefile: how could resolve this error without deleting anything? im doing this because understand that it is possible to edit several things with new added features, such as adding new bonus vs mobs...
  13. Paste Your Makefile. MAKE = gmake CC = g++ CXX = g++ INCDIR = LIBDIR = BINDIR = .. OBJDIR = .obj GCC_VERSION = $(shell $(CC) --version 2>&1 | grep "(GCC)" | cut -d' ' -f3 | cut -d'.' -f1) BSD_VERSION = $(shell uname -v 2>&1 | cut -d' ' -f2 | cut -d'.' -f1) P4_VERSION = 54180 $(shell if [ ! -d $(OBJDIR) ]; then mkdir $(OBJDIR); fi) TARGET = $(BINDIR)/db_r$(P4_VERSION) TEST_TARGET = $(BINDIR)/db_r$(P4_VERSION)_striped CFLAGS = -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG # -D_USE_SERVER_KEY_ CFLAGS += -mtune=i686 -mcpu=i686 # boost INCDIR += -I../../boost LIBDIR += -L../../libthecore/lib -L../../libsql -L../../libpoly -L../../libgame/lib ifeq ($(BSD_VERSION), 7) INCDIR += -I../../libmysql/7.x-5.1.35 LIBDIR += -L../../libmysql/7.x-5.1.35 else INCDIR += -I../../libmysql/5.x-5.1.35 LIBDIR += -L../../libmysql/5.x-5.1.35 endif LIBS = -lthecore -lsql -lpoly -lgame -lm -lz LIBDIR += -L/usr/local/lib/mysql LIBS += -lmysqlclient -lz SRCS = Config.cpp NetBase.cpp Peer.cpp PeerBase.cpp Main.cpp Lock.cpp DBManager.cpp Cache.cpp LoginData.cpp ClientManager.cpp ClientManagerPlayer.cpp ClientManagerLogin.cpp ClientManagerBoot.cpp ClientManagerParty.cpp ClientManagerGuild.cpp GuildManager.cpp HB.cpp PrivManager.cpp MoneyLog.cpp ItemAwardManager.cpp ClientManagerEventFlag.cpp Marriage.cpp Monarch.cpp BlockCountry.cpp ItemIDRangeManager.cpp ClientManagerHorseName.cpp version.cpp AuctionManager.cpp ProtoReader.cpp CsvReader.cpp OBJS = $(SRCS:%.cpp=$(OBJDIR)/%.o) default: $(TARGET) $(TEST_TARGET) @strip $(TEST_TARGET) $(TARGET): $(OBJS) @echo linking ... @$(CC) $(CFLAGS) $(LIBDIR) $(OBJS) $(LIBS) -o $(TARGET) @touch version.cpp $(TEST_TARGET): $(OBJS) @echo linking ... @$(CC) $(CFLAGS) $(LIBDIR) $(OBJS) $(LIBS) -o $(TEST_TARGET) @touch version.cpp $(OBJDIR)/%.o: %.cpp @echo compile $< @$(CC) $(CFLAGS) $(INCDIR) -c $< -o $@ $(OBJDIR)/version.o: version.cpp @$(CC) $(CFLAGS) -D__USER__="$(USER)" -D__HOSTNAME__="$(HOSTNAME)" -D__PWD__="$(PWD)" -D__P4_VERSION__="$(P4_VERSION)" -c $< -o $@ @echo compile $< $(OBJDIR): @mkdir $(OBJDIR) clean: @rm -f $(OBJS) $(BINDIR)/db_r* dep: @touch Depend makedepend -fDepend $(INCDIR) -I/usr/include/c++/3.3 -I/usr/include/c++/4.2 -p$(OBJDIR)/ $(SRCS) 2> /dev/null sinclude Depend
  14. root@host:/usr/src/mainline/Srcs/Server/db/src # gmake -j20 compile Config.cpp compile NetBase.cpp compile Peer.cpp compile PeerBase.cpp compile Main.cpp compile Lock.cpp compile DBManager.cpp compile Cache.cpp compile LoginData.cpp compile ClientManager.cpp compile ClientManagerPlayer.cpp compile ClientManagerLogin.cpp In file included from ClientManager.cpp:6: ../../common/VnumHelper.h:59:32: warning: no newline at end of file Cache.cpp:365:7: warning: no newline at end of file compile ClientManagerBoot.cpp compile ClientManagerParty.cpp compile GuildManager.cpp compile ClientManagerGuild.cpp compile HB.cpp In file included from ClientManagerBoot.cpp:8: ProtoReader.h:36:7: warning: no newline at end of file compile PrivManager.cpp compile MoneyLog.cpp compile ItemAwardManager.cpp ClientManagerBoot.cpp: In member function 'bool CClientManager::InitializeMobTable()': ClientManagerBoot.cpp:402: warning: statement has no effect ClientManagerBoot.cpp: In member function 'bool CClientManager::InitializeItemTable()': ClientManagerBoot.cpp:703: warning: unused variable 'testValue' ClientManagerBoot.cpp: In member function 'bool CClientManager::MirrorItemTableIntoDB()': ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 38 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 39 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 38 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 39 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 23 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 32 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 23 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 32 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ItemAwardManager.cpp:129:2: warning: no newline at end of file compile ClientManagerEventFlag.cpp compile Marriage.cpp compile Monarch.cpp compile BlockCountry.cpp compile ItemIDRangeManager.cpp compile ClientManagerHorseName.cpp compile AuctionManager.cpp compile ProtoReader.cpp compile CsvReader.cpp compile version.cpp In file included from ProtoReader.cpp:4: ProtoReader.h:36:7: warning: no newline at end of file AuctionManager.cpp:719:7: warning: no newline at end of file CsvReader.cpp: In member function 'const char* cCsvAlias::operator[](size_t) const': CsvReader.cpp:72: warning: left-hand operand of comma has no effect CsvReader.cpp:72: warning: right-hand operand of comma has no effect CsvReader.cpp: In member function 'size_t cCsvAlias::operator[](const char*) const': CsvReader.cpp:90: warning: left-hand operand of comma has no effect CsvReader.cpp:90: warning: right-hand operand of comma has no effect linking ... linking ... ../../libsql/libsql.a(AsyncSQL.o): In function `CAsyncSQL::Setup(char const*, char const*, char const*, char const*, char const*, bool, int)': AsyncSQL.cpp:(.text+0xf9f): undefined reference to `pthread_create' ../../libsql/libsql.a(AsyncSQL.o): In function `CAsyncSQL::Setup(char const*, char const*, char const*, char const*, char const*, bool, int)': AsyncSQL.cpp:(.text+0xf9f): undefined reference to `pthread_create' gmake: *** [../db_r54180_striped] Error 1 gmake: *** Waiting for unfinished jobs.... gmake: *** [../db_r54180] Error 1 root@host:/usr/src/mainline/Srcs/Server/db/src #
  15. root@host:/usr/src/mainline/Srcs/Server/db/src # gmake -j20 compile Config.cpp compile NetBase.cpp compile Peer.cpp compile PeerBase.cpp compile Main.cpp compile Lock.cpp compile DBManager.cpp compile Cache.cpp compile LoginData.cpp compile ClientManager.cpp compile ClientManagerPlayer.cpp compile ClientManagerLogin.cpp In file included from ClientManager.cpp:6: ../../common/VnumHelper.h:59:32: warning: no newline at end of file Cache.cpp:365:7: warning: no newline at end of file compile ClientManagerBoot.cpp compile ClientManagerParty.cpp compile GuildManager.cpp compile ClientManagerGuild.cpp compile HB.cpp In file included from ClientManagerBoot.cpp:8: ProtoReader.h:36:7: warning: no newline at end of file compile PrivManager.cpp compile MoneyLog.cpp compile ItemAwardManager.cpp ClientManagerBoot.cpp: In member function 'bool CClientManager::InitializeMobTable()': ClientManagerBoot.cpp:402: warning: statement has no effect ClientManagerBoot.cpp: In member function 'bool CClientManager::InitializeItemTable()': ClientManagerBoot.cpp:703: warning: unused variable 'testValue' ClientManagerBoot.cpp: In member function 'bool CClientManager::MirrorItemTableIntoDB()': ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 38 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 39 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 38 has type 'long int' ClientManagerBoot.cpp:1491: warning: format '%d' expects type 'int', but argument 39 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 23 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 32 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 23 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 25 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 27 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 29 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 31 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 32 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 33 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 34 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 35 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 36 has type 'long int' ClientManagerBoot.cpp:1519: warning: format '%d' expects type 'int', but argument 37 has type 'long int' ItemAwardManager.cpp:129:2: warning: no newline at end of file compile ClientManagerEventFlag.cpp compile Marriage.cpp compile Monarch.cpp compile BlockCountry.cpp compile ItemIDRangeManager.cpp compile ClientManagerHorseName.cpp compile AuctionManager.cpp compile ProtoReader.cpp compile CsvReader.cpp compile version.cpp In file included from ProtoReader.cpp:4: ProtoReader.h:36:7: warning: no newline at end of file AuctionManager.cpp:719:7: warning: no newline at end of file CsvReader.cpp: In member function 'const char* cCsvAlias::operator[](size_t) const': CsvReader.cpp:72: warning: left-hand operand of comma has no effect CsvReader.cpp:72: warning: right-hand operand of comma has no effect CsvReader.cpp: In member function 'size_t cCsvAlias::operator[](const char*) const': CsvReader.cpp:90: warning: left-hand operand of comma has no effect CsvReader.cpp:90: warning: right-hand operand of comma has no effect linking ... linking ... ../../libsql/libsql.a(AsyncSQL.o): In function `CAsyncSQL::Setup(char const*, char const*, char const*, char const*, char const*, bool, int)': AsyncSQL.cpp:(.text+0xf9f): undefined reference to `pthread_create' ../../libsql/libsql.a(AsyncSQL.o): In function `CAsyncSQL::Setup(char const*, char const*, char const*, char const*, char const*, bool, int)': AsyncSQL.cpp:(.text+0xf9f): undefined reference to `pthread_create' gmake: *** [../db_r54180_striped] Error 1 gmake: *** Waiting for unfinished jobs.... gmake: *** [../db_r54180] Error 1 root@host:/usr/src/mainline/Srcs/Server/db/src # Makefile: Version.cpp
  16. thx bro fixed, now fails the end to compiling root@host:/usr/src/mainline/Srcs/Server/game/src # gmake clean root@host:/usr/src/mainline/Srcs/Server/game/src # gmake -j20 compile BattleArena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile FSM.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkConvert.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkImage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkManager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile OXEvent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile TrafficProfiler.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ani.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile arena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile banword.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile battle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile blend_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile block_country.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile buffer_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile building.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile castle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char.cpp:4: ../../common/VnumHelper.h:59:32: warning: no newline at end of file In file included from char.cpp:25: shop_manager.h:40:7: warning: no newline at end of file In file included from char.cpp:63: PetSystem.h:163:31: warning: no newline at end of file char.cpp:7363:124: warning: trigraph ??) ignored, use -trigraphs to enable char.cpp:7363:248: warning: trigraph ??) ignored, use -trigraphs to enable char.cpp:7363:278: warning: trigraph ??) ignored, use -trigraphs to enable compile char_battle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_change_empire.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_battle.cpp:27: shop_manager.h:40:7: warning: no newline at end of file compile char_horse.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_horse.cpp:14: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile char_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_item.cpp:44: ../../common/VnumHelper.h:59:32: warning: no newline at end of file In file included from char_item.cpp:47: belt_inventory_helper.h:148:42: warning: no newline at end of file compile char_quickslot.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_resist.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_skill.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_state.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile PetSystem.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_state.cpp:25: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile cmd.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from PetSystem.cpp:8: PetSystem.h:163:31: warning: no newline at end of file In file included from PetSystem.cpp:9: ../../common/VnumHelper.h:59:32: warning: no newline at end of file PetSystem.cpp:637:2: warning: no newline at end of file compile cmd_emotion.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cmd_general.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' compile cmd_gm.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cmd_oxevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from cmd_general.cpp:36: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile config.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 char_item.cpp: In member function 'void CHARACTER::BuffOnAttr_ValueChange(BYTE, BYTE, BYTE)': char_item.cpp:6446: warning: 'pBuff' may be used uninitialized in this function compile constants.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile crc32.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cube.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile db.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_client.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile dev_log.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile dungeon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile empire_text_convert.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from desc_manager.cpp:15: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file compile entity.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile entity_view.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile event.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile event_queue.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile exchange.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile file_loader.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile fishing.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile gm.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild_war.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile horse_rider.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile horsename_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_auth.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_db.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_login.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from input_db.cpp:13: shop_manager.h:40:7: warning: no newline at end of file input_db.cpp:2731:2: warning: no newline at end of file compile input_main.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from input_main.cpp:16: shop_manager.h:40:7: warning: no newline at end of file In file included from input_main.cpp:44: belt_inventory_helper.h:148:42: warning: no newline at end of file compile input_teen.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_udp.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ip_ban.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_addon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_attribute.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from item.cpp:22: belt_inventory_helper.h:148:42: warning: no newline at end of file In file included from item.cpp:23: ../../common/VnumHelper.h:59:32: warning: no newline at end of file item.cpp:2094:2: warning: no newline at end of file compile item_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_manager_idrange.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from item_manager.cpp:21: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile locale.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile locale_service.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile log.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile login_data.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile lzo_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile marriage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile matrix_card.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile messenger_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile mining.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile mob_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile monarch.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile motion.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 monarch.cpp:276:2: warning: no newline at end of file compile over9refine.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile packet_info.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile party.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile passpod.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile pcbang.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile polymorph.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile priv_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile pvp.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_arena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_ba.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_building.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_danceevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dungeon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_forked.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_game.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_global.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_guild.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_horse.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_pet.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from questlua_pet.cpp:11: PetSystem.h:163:31: warning: no newline at end of file questlua_pet.cpp:170:2: warning: no newline at end of file compile questlua_marriage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_mgmt.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_monarch.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_npc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 questlua_item.cpp: In function 'int quest::item_equip_selected(lua_State*)': questlua_item.cpp:602: warning: comparison is always false due to limited range of data type questlua_item.cpp:616: warning: comparison is always true due to limited range of data type compile questlua_oxevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from questlua_npc.cpp:9: shop_manager.h:40:7: warning: no newline at end of file compile questlua_party.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_pc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 questlua_npc.cpp: In function 'int quest::npc_get_vid_attack_mul(lua_State*)': questlua_npc.cpp:379: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_attack_mul(lua_State*)': questlua_npc.cpp:395: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_get_vid_damage_mul(lua_State*)': questlua_npc.cpp:410: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_damage_mul(lua_State*)': questlua_npc.cpp:426: warning: unused variable 'q' compile questlua_quest.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_target.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questmanager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questnpc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questpc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile refine.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile regen.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile safebox.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sectree.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sectree_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sequence.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile shop.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile skill.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile start_position.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile target.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile text_file_loader.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile trigger.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile utils.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from trigger.cpp:8: shop_manager.h:40:7: warning: no newline at end of file compile vector.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile war_map.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile wedding.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile xmas_event.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile panama.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile version.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile threeway_war.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile map_location.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile auth_brazil.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile BlueDragon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile BlueDragon_Binder.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile DragonLair.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dragonlair.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile HackShield.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile HackShield_Impl.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_hackshield.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile skill_power.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile SpeedServer.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_speedserver.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile XTrapManager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile auction_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile FileMonitor_FreeBSD.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ClientPackageCryptInfo.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 FileMonitor_FreeBSD.cpp:136:2: warning: no newline at end of file compile cipher.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from ClientPackageCryptInfo.cpp:2: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file compile buff_on_attributes.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile check_server.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 ../../../Extern/include/cryptopp/algparam.h: In constructor 'CryptoPP::ConstByteArrayParameter::ConstByteArrayParameter(const T&, bool) [with T = std::basic_string<char, std::char_traits<char>, std::allocator<char> >]': ../../../Extern/include/cryptopp/filters.h:793: instantiated from here ../../../Extern/include/cryptopp/algparam.h:26: warning: unused variable 'cryptopp_assert_26' compile dragon_soul_table.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 ../../../Extern/include/cryptopp/algparam.h: In member function 'void CryptoPP::AlgorithmParametersTemplate<T>::MoveInto(void*) const [with T = CryptoPP::RandomNumberGenerator*]': cipher.cpp:397: instantiated from here ../../../Extern/include/cryptopp/algparam.h:322: warning: unused variable 'p' In file included from check_server.cpp:1: check_server.h: In static member function 'static bool CheckServer::CheckIp(const char*)': check_server.h:24: warning: comparison between signed and unsigned integer expressions compile DragonSoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 buff_on_attributes.cpp: In member function 'void CBuffOnAttributes::ChangeBuffValue(BYTE)': buff_on_attributes.cpp:119: warning: unused variable 'old_value' buff_on_attributes.cpp:120: warning: unused variable 'new_value' In file included from dragon_soul_table.cpp:4: dragon_soul_table.h:74:7: warning: no newline at end of file compile group_text_parse_tree.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from DragonSoul.cpp:9: dragon_soul_table.h:74:7: warning: no newline at end of file compile char_dragonsoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dragonsoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 DragonSoul.cpp: In member function 'bool DSManager::ExtractDragonHeart(CHARACTER*, CItem*, CItem*)': DragonSoul.cpp:353: warning: unused variable 'sum' DragonSoul.cpp: In member function 'bool DSManager::PullOut(CHARACTER*, TItemPos, CItem*&, CItem*)': DragonSoul.cpp:438: warning: unused variable 'dwVnum' DragonSoul.cpp: In member function 'bool DSManager::DoRefineGrade(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:558: warning: unused variable 'prob_sum' DragonSoul.cpp: In member function 'bool DSManager::DoRefineStep(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:766: warning: unused variable 'sum' char_dragonsoul.cpp:149:2: warning: no newline at end of file compile shop_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile shopEx.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from shop_manager.cpp:22: shop_manager.h:40:7: warning: no newline at end of file compile item_manager_read_tables.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile minilzo.c with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 item_manager_read_tables.cpp: In member function 'bool ITEM_MANAGER::ReadMonsterDropItemGroup(const char*)': item_manager_read_tables.cpp:637: warning: unused variable 'pkGroup' item_manager_read_tables.cpp:627: warning: 'pkGroup' may be used uninitialized in this function ../../../Extern/include/cryptopp/misc.h: At global scope: ../../../Extern/include/cryptopp/misc.h:548: warning: 'std::string CryptoPP::StringNarrow(const wchar_t*, bool)' defined but not used linking ../game_r54250_32 with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686.... linking ../game_r54250_striped with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686.... OBJDIR/char.o: In function `std::vector<std::string, std::allocator<std::string> >::size() const': /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' OBJDIR/cmd_gm.o: In function `do_reload(CHARACTER*, char const*, int, int)': /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2156: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2157: undefined reference to `LoadBannSpamList()' OBJDIR/char.o: In function `std::vector<std::string, std::allocator<std::string> >::size() const': /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' OBJDIR/cmd_gm.o: In function `do_reload(CHARACTER*, char const*, int, int)': /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2156: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2157: undefined reference to `LoadBannSpamList()' OBJDIR/questlua.o: In function `quest::CQuestManager::InitializeLua()': /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:474: undefined reference to `quest::RegisterUniqueFunctionTable()' /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:476: undefined reference to `quest::RegistermysqlFunctionTable()' OBJDIR/questlua.o: In function `quest::CQuestManager::InitializeLua()': /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:474: undefined reference to `quest::RegisterUniqueFunctionTable()' /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:476: undefined reference to `quest::RegistermysqlFunctionTable()' OBJDIR/main.o: In function `main': /usr/src/mainline/Srcs/Server/game/src/main.cpp:453: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/main.cpp:454: undefined reference to `LoadBannSpamList()' OBJDIR/main.o: In function `main': /usr/src/mainline/Srcs/Server/game/src/main.cpp:453: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/main.cpp:454: undefined reference to `LoadBannSpamList()' gmake: *** [../game_r54250_32] Error 1 gmake: *** Waiting for unfinished jobs.... gmake: *** [../game_r54250_striped] Error 1 root@host:/usr/src/mainline/Srcs/Server/game/src # root@host:/usr/src/mainline/Srcs/Server/game/src # root@host:/usr/src/mainline/Srcs/Server/game/src # gmake clean root@host:/usr/src/mainline/Srcs/Server/game/src # gmake -j20 compile BattleArena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile FSM.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkConvert.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkImage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkManager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile OXEvent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile TrafficProfiler.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ani.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile arena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile banword.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile battle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile blend_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile block_country.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile buffer_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile building.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile castle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char.cpp:4: ../../common/VnumHelper.h:59:32: warning: no newline at end of file In file included from char.cpp:25: shop_manager.h:40:7: warning: no newline at end of file In file included from char.cpp:63: PetSystem.h:163:31: warning: no newline at end of file char.cpp:7363:124: warning: trigraph ??) ignored, use -trigraphs to enable char.cpp:7363:248: warning: trigraph ??) ignored, use -trigraphs to enable char.cpp:7363:278: warning: trigraph ??) ignored, use -trigraphs to enable compile char_battle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_change_empire.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_battle.cpp:27: shop_manager.h:40:7: warning: no newline at end of file compile char_horse.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_horse.cpp:14: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile char_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_item.cpp:44: ../../common/VnumHelper.h:59:32: warning: no newline at end of file In file included from char_item.cpp:47: belt_inventory_helper.h:148:42: warning: no newline at end of file compile char_quickslot.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_resist.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_skill.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_state.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile PetSystem.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_state.cpp:25: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile cmd.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from PetSystem.cpp:8: PetSystem.h:163:31: warning: no newline at end of file In file included from PetSystem.cpp:9: ../../common/VnumHelper.h:59:32: warning: no newline at end of file PetSystem.cpp:637:2: warning: no newline at end of file compile cmd_emotion.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cmd_general.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' compile cmd_gm.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cmd_oxevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from cmd_general.cpp:36: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile config.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 char_item.cpp: In member function 'void CHARACTER::BuffOnAttr_ValueChange(BYTE, BYTE, BYTE)': char_item.cpp:6446: warning: 'pBuff' may be used uninitialized in this function compile constants.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile crc32.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cube.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile db.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_client.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile dev_log.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile dungeon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile empire_text_convert.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from desc_manager.cpp:15: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file compile entity.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile entity_view.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile event.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile event_queue.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile exchange.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile file_loader.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile fishing.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile gm.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild_war.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile horse_rider.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile horsename_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_auth.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_db.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_login.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from input_db.cpp:13: shop_manager.h:40:7: warning: no newline at end of file input_db.cpp:2731:2: warning: no newline at end of file compile input_main.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from input_main.cpp:16: shop_manager.h:40:7: warning: no newline at end of file In file included from input_main.cpp:44: belt_inventory_helper.h:148:42: warning: no newline at end of file compile input_teen.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_udp.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ip_ban.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_addon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_attribute.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from item.cpp:22: belt_inventory_helper.h:148:42: warning: no newline at end of file In file included from item.cpp:23: ../../common/VnumHelper.h:59:32: warning: no newline at end of file item.cpp:2094:2: warning: no newline at end of file compile item_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_manager_idrange.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from item_manager.cpp:21: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile locale.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile locale_service.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile log.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile login_data.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile lzo_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile marriage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile matrix_card.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile messenger_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile mining.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile mob_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile monarch.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile motion.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 monarch.cpp:276:2: warning: no newline at end of file compile over9refine.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile packet_info.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile party.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile passpod.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile pcbang.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile polymorph.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile priv_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile pvp.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_arena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_ba.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_building.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_danceevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dungeon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_forked.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_game.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_global.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_guild.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_horse.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_pet.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from questlua_pet.cpp:11: PetSystem.h:163:31: warning: no newline at end of file questlua_pet.cpp:170:2: warning: no newline at end of file compile questlua_marriage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_mgmt.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_monarch.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_npc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 questlua_item.cpp: In function 'int quest::item_equip_selected(lua_State*)': questlua_item.cpp:602: warning: comparison is always false due to limited range of data type questlua_item.cpp:616: warning: comparison is always true due to limited range of data type compile questlua_oxevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from questlua_npc.cpp:9: shop_manager.h:40:7: warning: no newline at end of file compile questlua_party.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_pc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 questlua_npc.cpp: In function 'int quest::npc_get_vid_attack_mul(lua_State*)': questlua_npc.cpp:379: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_attack_mul(lua_State*)': questlua_npc.cpp:395: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_get_vid_damage_mul(lua_State*)': questlua_npc.cpp:410: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_damage_mul(lua_State*)': questlua_npc.cpp:426: warning: unused variable 'q' compile questlua_quest.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_target.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questmanager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questnpc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questpc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile refine.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile regen.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile safebox.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sectree.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sectree_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sequence.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile shop.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile skill.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile start_position.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile target.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile text_file_loader.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile trigger.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile utils.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from trigger.cpp:8: shop_manager.h:40:7: warning: no newline at end of file compile vector.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile war_map.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile wedding.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile xmas_event.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile panama.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile version.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile threeway_war.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile map_location.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile auth_brazil.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile BlueDragon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile BlueDragon_Binder.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile DragonLair.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dragonlair.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile HackShield.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile HackShield_Impl.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_hackshield.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile skill_power.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile SpeedServer.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_speedserver.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile XTrapManager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile auction_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile FileMonitor_FreeBSD.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ClientPackageCryptInfo.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 FileMonitor_FreeBSD.cpp:136:2: warning: no newline at end of file compile cipher.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from ClientPackageCryptInfo.cpp:2: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file compile buff_on_attributes.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile check_server.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 ../../../Extern/include/cryptopp/algparam.h: In constructor 'CryptoPP::ConstByteArrayParameter::ConstByteArrayParameter(const T&, bool) [with T = std::basic_string<char, std::char_traits<char>, std::allocator<char> >]': ../../../Extern/include/cryptopp/filters.h:793: instantiated from here ../../../Extern/include/cryptopp/algparam.h:26: warning: unused variable 'cryptopp_assert_26' compile dragon_soul_table.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 ../../../Extern/include/cryptopp/algparam.h: In member function 'void CryptoPP::AlgorithmParametersTemplate<T>::MoveInto(void*) const [with T = CryptoPP::RandomNumberGenerator*]': cipher.cpp:397: instantiated from here ../../../Extern/include/cryptopp/algparam.h:322: warning: unused variable 'p' In file included from check_server.cpp:1: check_server.h: In static member function 'static bool CheckServer::CheckIp(const char*)': check_server.h:24: warning: comparison between signed and unsigned integer expressions compile DragonSoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 buff_on_attributes.cpp: In member function 'void CBuffOnAttributes::ChangeBuffValue(BYTE)': buff_on_attributes.cpp:119: warning: unused variable 'old_value' buff_on_attributes.cpp:120: warning: unused variable 'new_value' In file included from dragon_soul_table.cpp:4: dragon_soul_table.h:74:7: warning: no newline at end of file compile group_text_parse_tree.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from DragonSoul.cpp:9: dragon_soul_table.h:74:7: warning: no newline at end of file compile char_dragonsoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dragonsoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 DragonSoul.cpp: In member function 'bool DSManager::ExtractDragonHeart(CHARACTER*, CItem*, CItem*)': DragonSoul.cpp:353: warning: unused variable 'sum' DragonSoul.cpp: In member function 'bool DSManager::PullOut(CHARACTER*, TItemPos, CItem*&, CItem*)': DragonSoul.cpp:438: warning: unused variable 'dwVnum' DragonSoul.cpp: In member function 'bool DSManager::DoRefineGrade(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:558: warning: unused variable 'prob_sum' DragonSoul.cpp: In member function 'bool DSManager::DoRefineStep(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:766: warning: unused variable 'sum' char_dragonsoul.cpp:149:2: warning: no newline at end of file compile shop_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile shopEx.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from shop_manager.cpp:22: shop_manager.h:40:7: warning: no newline at end of file compile item_manager_read_tables.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile minilzo.c with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 item_manager_read_tables.cpp: In member function 'bool ITEM_MANAGER::ReadMonsterDropItemGroup(const char*)': item_manager_read_tables.cpp:637: warning: unused variable 'pkGroup' item_manager_read_tables.cpp:627: warning: 'pkGroup' may be used uninitialized in this function ../../../Extern/include/cryptopp/misc.h: At global scope: ../../../Extern/include/cryptopp/misc.h:548: warning: 'std::string CryptoPP::StringNarrow(const wchar_t*, bool)' defined but not used linking ../game_r54250_32 with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686.... linking ../game_r54250_striped with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686.... OBJDIR/char.o: In function `std::vector<std::string, std::allocator<std::string> >::size() const': /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' OBJDIR/cmd_gm.o: In function `do_reload(CHARACTER*, char const*, int, int)': /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2156: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2157: undefined reference to `LoadBannSpamList()' OBJDIR/char.o: In function `std::vector<std::string, std::allocator<std::string> >::size() const': /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBlockListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' /usr/include/c++/4.2/bits/stl_vector.h:408: undefined reference to `SpamBannListArray' OBJDIR/cmd_gm.o: In function `do_reload(CHARACTER*, char const*, int, int)': /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2156: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/cmd_gm.cpp:2157: undefined reference to `LoadBannSpamList()' OBJDIR/questlua.o: In function `quest::CQuestManager::InitializeLua()': /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:474: undefined reference to `quest::RegisterUniqueFunctionTable()' /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:476: undefined reference to `quest::RegistermysqlFunctionTable()' OBJDIR/questlua.o: In function `quest::CQuestManager::InitializeLua()': /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:474: undefined reference to `quest::RegisterUniqueFunctionTable()' /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:476: undefined reference to `quest::RegistermysqlFunctionTable()' OBJDIR/main.o: In function `main': /usr/src/mainline/Srcs/Server/game/src/main.cpp:453: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/main.cpp:454: undefined reference to `LoadBannSpamList()' OBJDIR/main.o: In function `main': /usr/src/mainline/Srcs/Server/game/src/main.cpp:453: undefined reference to `LoadBlockSpamList()' /usr/src/mainline/Srcs/Server/game/src/main.cpp:454: undefined reference to `LoadBannSpamList()' gmake: *** [../game_r54250_32] Error 1 gmake: *** Waiting for unfinished jobs.... gmake: *** [../game_r54250_striped] Error 1 root@host:/usr/src/mainline/Srcs/Server/game/src # root@host:/usr/src/mainline/Srcs/Server/game/src #
  17. the new error: root@host:/usr/src/mainline/Srcs/Server/game/src # gmake clean root@host:/usr/src/mainline/Srcs/Server/game/src # gmake -j20 compile BattleArena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile FSM.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkConvert.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkImage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile MarkManager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile OXEvent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile TrafficProfiler.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ani.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile arena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile banword.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile battle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile blend_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile block_country.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile buffer_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile building.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile castle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char.cpp:4: ../../common/VnumHelper.h:59:32: warning: no newline at end of file In file included from char.cpp:25: shop_manager.h:40:7: warning: no newline at end of file In file included from char.cpp:63: PetSystem.h:163:31: warning: no newline at end of file char.cpp:7363:124: warning: trigraph ??) ignored, use -trigraphs to enable char.cpp:7363:248: warning: trigraph ??) ignored, use -trigraphs to enable char.cpp:7363:278: warning: trigraph ??) ignored, use -trigraphs to enable compile char_battle.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_change_empire.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_battle.cpp:27: shop_manager.h:40:7: warning: no newline at end of file compile char_horse.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_horse.cpp:14: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile char_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_item.cpp:44: ../../common/VnumHelper.h:59:32: warning: no newline at end of file In file included from char_item.cpp:47: belt_inventory_helper.h:148:42: warning: no newline at end of file compile char_quickslot.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_resist.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_skill.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_state.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile PetSystem.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from char_state.cpp:25: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile cmd.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from PetSystem.cpp:8: PetSystem.h:163:31: warning: no newline at end of file In file included from PetSystem.cpp:9: ../../common/VnumHelper.h:59:32: warning: no newline at end of file PetSystem.cpp:637:2: warning: no newline at end of file compile cmd_emotion.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cmd_general.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 PetSystem.cpp: In member function 'virtual bool CPetActor::_UpdateFollowAI()': PetSystem.cpp:246: warning: unused variable 'bDoMoveAlone' PetSystem.cpp: In member function 'CPetActor* CPetSystem::Summon(DWORD, CItem*, const char*, bool, DWORD)': PetSystem.cpp:552: warning: unused variable 'petVID' compile cmd_gm.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cmd_oxevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from cmd_general.cpp:36: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile config.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 char_item.cpp: In member function 'void CHARACTER::BuffOnAttr_ValueChange(BYTE, BYTE, BYTE)': char_item.cpp:6446: warning: 'pBuff' may be used uninitialized in this function compile constants.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile crc32.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile cube.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile db.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_client.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile desc_p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile dev_log.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile dungeon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile empire_text_convert.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile entity.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from desc_manager.cpp:15: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file compile entity_view.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile event.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile event_queue.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile exchange.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile file_loader.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile fishing.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile gm.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile guild_war.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile horse_rider.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile horsename_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_auth.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_db.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_login.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from input_db.cpp:13: shop_manager.h:40:7: warning: no newline at end of file input_db.cpp:2731:2: warning: no newline at end of file compile input_main.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from input_main.cpp:16: shop_manager.h:40:7: warning: no newline at end of file In file included from input_main.cpp:44: belt_inventory_helper.h:148:42: warning: no newline at end of file compile input_teen.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile input_udp.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ip_ban.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_addon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from item.cpp:22: belt_inventory_helper.h:148:42: warning: no newline at end of file In file included from item.cpp:23: ../../common/VnumHelper.h:59:32: warning: no newline at end of file item.cpp:2094:2: warning: no newline at end of file compile item_attribute.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile item_manager_idrange.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile locale.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from item_manager.cpp:21: ../../common/VnumHelper.h:59:32: warning: no newline at end of file compile locale_service.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile log.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile login_data.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile lzo_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile marriage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile matrix_card.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile messenger_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile mining.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile mob_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile monarch.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile motion.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 monarch.cpp:276:2: warning: no newline at end of file compile over9refine.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile p2p.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile packet_info.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile party.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile passpod.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile pcbang.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile polymorph.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile priv_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile pvp.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_arena.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_ba.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_building.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_danceevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dungeon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_forked.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_game.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_global.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_guild.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_horse.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_pet.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_item.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from questlua_pet.cpp:11: PetSystem.h:163:31: warning: no newline at end of file questlua_pet.cpp:170:2: warning: no newline at end of file compile questlua_marriage.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_mgmt.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_monarch.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_npc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 questlua_item.cpp: In function 'int quest::item_equip_selected(lua_State*)': questlua_item.cpp:602: warning: comparison is always false due to limited range of data type questlua_item.cpp:616: warning: comparison is always true due to limited range of data type compile questlua_oxevent.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from questlua_npc.cpp:9: shop_manager.h:40:7: warning: no newline at end of file compile questlua_party.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_pc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_quest.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 questlua_npc.cpp: In function 'int quest::npc_get_vid_attack_mul(lua_State*)': questlua_npc.cpp:379: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_attack_mul(lua_State*)': questlua_npc.cpp:395: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_get_vid_damage_mul(lua_State*)': questlua_npc.cpp:410: warning: unused variable 'q' questlua_npc.cpp: In function 'int quest::npc_set_vid_damage_mul(lua_State*)': questlua_npc.cpp:426: warning: unused variable 'q' compile questlua_target.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questmanager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questnpc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questpc.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile refine.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile regen.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile safebox.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sectree.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sectree_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile sequence.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile shop.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile skill.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile start_position.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile target.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile text_file_loader.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile trigger.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile utils.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from trigger.cpp:8: shop_manager.h:40:7: warning: no newline at end of file compile vector.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile war_map.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile wedding.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile xmas_event.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile panama.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile version.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile threeway_war.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile map_location.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile auth_brazil.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile BlueDragon.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile BlueDragon_Binder.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile DragonLair.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_dragonlair.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile HackShield.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile HackShield_Impl.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile char_hackshield.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile skill_power.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile affect.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile SpeedServer.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile questlua_speedserver.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile XTrapManager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile auction_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile FileMonitor_FreeBSD.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile ClientPackageCryptInfo.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 FileMonitor_FreeBSD.cpp:136:2: warning: no newline at end of file compile cipher.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile buff_on_attributes.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from ClientPackageCryptInfo.cpp:2: ClientPackageCryptInfo.h:117:41: warning: no newline at end of file compile dragon_soul_table.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile DragonSoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from dragon_soul_table.cpp:4: dragon_soul_table.h:74:7: warning: no newline at end of file compile group_text_parse_tree.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 buff_on_attributes.cpp: In member function 'void CBuffOnAttributes::ChangeBuffValue(BYTE)': buff_on_attributes.cpp:119: warning: unused variable 'old_value' buff_on_attributes.cpp:120: warning: unused variable 'new_value' In file included from DragonSoul.cpp:9: dragon_soul_table.h:74:7: warning: no newline at end of file compile char_dragonsoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 ../../../Extern/include/cryptopp/algparam.h: In constructor 'CryptoPP::ConstByteArrayParameter::ConstByteArrayParameter(const T&, bool) [with T = std::basic_string<char, std::char_traits<char>, std::allocator<char> >]': ../../../Extern/include/cryptopp/filters.h:793: instantiated from here ../../../Extern/include/cryptopp/algparam.h:26: warning: unused variable 'cryptopp_assert_26' ../../../Extern/include/cryptopp/algparam.h: In member function 'void CryptoPP::AlgorithmParametersTemplate<T>::MoveInto(void*) const [with T = CryptoPP::RandomNumberGenerator*]': cipher.cpp:397: instantiated from here ../../../Extern/include/cryptopp/algparam.h:322: warning: unused variable 'p' compile questlua_dragonsoul.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 char_dragonsoul.cpp:149:2: warning: no newline at end of file compile shop_manager.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 DragonSoul.cpp: In member function 'bool DSManager::ExtractDragonHeart(CHARACTER*, CItem*, CItem*)': DragonSoul.cpp:353: warning: unused variable 'sum' DragonSoul.cpp: In member function 'bool DSManager::PullOut(CHARACTER*, TItemPos, CItem*&, CItem*)': DragonSoul.cpp:438: warning: unused variable 'dwVnum' DragonSoul.cpp: In member function 'bool DSManager::DoRefineGrade(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:558: warning: unused variable 'prob_sum' DragonSoul.cpp: In member function 'bool DSManager::DoRefineStep(CHARACTER*, TItemPos (&)[15])': DragonSoul.cpp:766: warning: unused variable 'sum' compile shopEx.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 In file included from shop_manager.cpp:22: shop_manager.h:40:7: warning: no newline at end of file compile item_manager_read_tables.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 compile spamblock.cpp with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 spamblock.cpp:53:2: warning: no newline at end of file compile minilzo.c with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686 item_manager_read_tables.cpp: In member function 'bool ITEM_MANAGER::ReadMonsterDropItemGroup(const char*)': item_manager_read_tables.cpp:637: warning: unused variable 'pkGroup' item_manager_read_tables.cpp:627: warning: 'pkGroup' may be used uninitialized in this function ../../../Extern/include/cryptopp/misc.h: At global scope: ../../../Extern/include/cryptopp/misc.h:548: warning: 'std::string CryptoPP::StringNarrow(const wchar_t*, bool)' defined but not used linking ../game_r54250_32 with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686.... linking ../game_r54250_striped with g++ -g -Wall -O2 -m32 -pipe -fexceptions -D_THREAD_SAFE -DNDEBUG -mtune=i686 -mcpu=i686.... OBJDIR/questlua.o: In function `quest::CQuestManager::InitializeLua()': /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:474: undefined reference to `quest::RegisterUniqueFunctionTable()' /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:476: undefined reference to `quest::RegistermysqlFunctionTable()' OBJDIR/questlua.o: In function `quest::CQuestManager::InitializeLua()': /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:474: undefined reference to `quest::RegisterUniqueFunctionTable()' /usr/src/mainline/Srcs/Server/game/src/questlua.cpp:476: undefined reference to `quest::RegistermysqlFunctionTable()' gmake: *** [../game_r54250_32] Error 1 gmake: *** Waiting for unfinished jobs.... gmake: *** [../game_r54250_striped] Error 1 root@host:/usr/src/mainline/Srcs/Server/game/src # makefile:
  18. what is amiss? would missing something my pc?
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.