Jump to content

naczelnynieuk

Inactive Member
  • Posts

    19
  • Joined

  • Last visited

  • Feedback

    0%

About naczelnynieuk

Informations

  • Gender
    Not Telling

Recent Profile Visitors

445 profile views

naczelnynieuk's Achievements

Apprentice

Apprentice (3/16)

  • First Post
  • Collaborator
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. Now i have something like this: Compiling... StdAfx.cpp C:UsersMuchaDesktopdriect8DXFDXSDKincluded3d8.h(33) : fatal error C1083: Cannot open include file: 'objbase.h': No such file or directory Creating browse information file... Microsoft Browse Information Maintenance Utility Version 9.00.21022 Copyright (C) Microsoft Corporation. All rights reserved. BSCMAKE: error BK1506 : cannot open file '.DebugInstanceBase.sbr': No such file or directory
  2. I download this header files, and now i have this problem : Compiling... StdAfx.cpp C:Program FilesMicrosoft SDKsWindowsv6.0Aincludewinnt.h(236) : error C2146: syntax error : missing ';' before identifier 'PVOID64' C:Program FilesMicrosoft SDKsWindowsv6.0Aincludewinnt.h(236) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int C:Program FilesMicrosoft SDKsWindowsv6.0Aincludewinnt.h(7818) : error C2146: syntax error : missing ';' before identifier 'Buffer' C:Program FilesMicrosoft SDKsWindowsv6.0Aincludewinnt.h(7818) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int C:Program FilesMicrosoft SDKsWindowsv6.0Aincludewinnt.h(7818) : error C4430: missing type specifier - int assumed. Note: C++ does not support default-int c:usersmuchadesktopclienteterbaselzo.h(5) : fatal error C1083: Cannot open include file: 'lzo-2.03/lzo1x.h': No such file or directory Creating browse information file... Microsoft Browse Information Maintenance Utility Version 9.00.21022 Copyright (C) Microsoft Corporation. All rights reserved. BSCMAKE: error BK1506 : cannot open file '.DebugInstanceBase.sbr': No such file or directory
  3. Output Window Compiling... StdAfx.cpp c:usersmuchadesktopclientuserinterface../eterLib/StdAfx.h(23) : fatal error C1083: Cannot open include file: 'd3d8.h': No such file or directory Creating browse information file... Microsoft Browse Information Maintenance Utility Version 9.00.21022 Copyright (C) Microsoft Corporation. All rights reserved. BSCMAKE: error BK1506 : cannot open file '.DebugInstanceBase.sbr': No such file or directory
  4. Hello i do like in this topic : [Hidden Content] and my build log : [Hidden Content]
  5. Hello i do like in this topic : [Hidden Content] and my build log : [Hidden Content]
  6. When i join to game, my client crash.I compile game and db with source. Client Sysser: 1214 11:37:33216 :: Source file has no content 1214 11:37:33233 :: Unknown packet header: 97, last: 45 81
  7. Look at my updated post; I have now this problem : usr/bin/ld: cannot find -lmysqlclient
  8. Ok with this i have another problem: usr/bin/ld: cannot find -lmysqlclient MAKEFILE: MAKE = gmake CC = 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 = 12345 TARGET = $(BINDIR)/db_r$(P4_VERSION) CFLAGS = -g -Wall -O2 -pipe -fno-rtti -fno-exceptions -pthread -D_THREAD_SAFE ifeq ($(GCC_VERSION), 4) CFLAGS += -mtune=i686 else CFLAGS += -mcpu=i686 endif # 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 -lmysqlclient -lsql -lpoly -lgame -lm -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) $(TARGET): $(OBJS) @echo linking ... @$(CC) $(CFLAGS) $(LIBDIR) $(OBJS) $(LIBS) -o $(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
  9. What should i do ? g++: directory": No such file or directory <command-line>: warning: missing terminating " character version.cpp:11: error: missing terminating " character version.cpp: In function 'void WriteVersion()': version.cpp:11: error: expected primary-expression before ')' token gmake: *** [.obj/version.o] Error 1 gmake: *** Waiting for unfinished jobs....
×
×
  • 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.