Skip to content

Commit 06d1356

Browse files
committed
fixed:linux build
1 parent 2ebfed5 commit 06d1356

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

XEngine_Source/StorageModule_Database/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ UNICODE =
2424
endif
2525

2626
all:$(LIBINCLUDE)
27-
$(CC) $(DEBUG) $(LIBINCLUDE) -o libXStorage_SQLPacket.so -shared $(LOADBIN) $(LIB) $(LIBEX) $(LOADSO)
27+
$(CC) $(DEBUG) $(LIBINCLUDE) -o libStorageModule_Database.so -shared $(LOADBIN) $(LIB) $(LIBEX) $(LOADSO)
2828

2929
Database_Client.o:./Database_Client/Database_Client.cpp
3030
$(CC) $(DEBUG) $(FLAGS) $(UNICODE) $(INCLUDE) ./Database_Client/Database_Client.cpp
@@ -38,8 +38,8 @@ pch.o:pch.cpp
3838

3939

4040
InstallAll:InstallSo
41-
InstallSo:./libXStorage_SQLPacket.so
42-
cp ./libXStorage_SQLPacket.so ../../../XEngine_Release/libXStorage_SQLPacket.so
41+
InstallSo:./libStorageModule_Database.so
42+
cp ./libStorageModule_Database.so ../../XEngine_Release/libStorageModule_Database.so
4343

4444

4545
CleanAll:CleanObj CleanMk

XEngine_Source/StorageModule_P2XPPeer/Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ UNICODE =
2424
endif
2525

2626
all:$(LIBINCLUDE)
27-
$(CC) $(DEBUG) $(LIBINCLUDE) -o libXStorage_P2XPPeer.so -shared -fPIC $(LOADBIN) $(LIB) $(LIBEX) $(LOADSO)
27+
$(CC) $(DEBUG) $(LIBINCLUDE) -o libStorageModule_P2XPPeer.so -shared -fPIC $(LOADBIN) $(LIB) $(LIBEX) $(LOADSO)
2828

2929

3030
P2XPPeer_Manage.o:./P2XPPeer_Manage/P2XPPeer_Manage.cpp
@@ -35,8 +35,8 @@ pch.o:pch.cpp
3535

3636

3737
InstallAll:InstallSo
38-
InstallSo:./libXStorage_P2XPPeer.so
39-
cp ./libXStorage_P2XPPeer.so ../../../XEngine_Release/libXStorage_P2XPPeer.so
38+
InstallSo:./libStorageModule_P2XPPeer.so
39+
cp ./libStorageModule_P2XPPeer.so ../../XEngine_Release/libStorageModule_P2XPPeer.so
4040

4141

4242
CleanAll:CleanObj CleanMk

XEngine_Source/XEngine_StorageApp/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ CC = g++ -Wall
22
RELEASE = 0
33
UNICODE = 0
44
LOADBIN = -L /usr/local/lib/XEngine_Release/XEngine_BaseLib -L /usr/local/lib/XEngine_Release/XEngine_Core -L /usr/local/lib/XEngine_Release/XEngine_SystemSdk -L /usr/local/lib/XEngine_Release/XEngine_HelpComponents -L /usr/local/lib/XEngine_Release/XEngine_RfcComponents -L /usr/local/lib/XEngine_Release/XEngine_NetHelp \
5-
-L ../StorageModule_Database -L ../StorageModule_P2XPPeer -L ../StorageModule_Config -L ../StorageModule_Session -L ../StorageModule_APIHelp -L ../StorageModule_Protocol -L ../XEngine_ThirdPart/jsoncpp \
5+
-L ../StorageModule_Database -L ../StorageModule_P2XPPeer -L ../StorageModule_Config -L ../StorageModule_Session -L ../StorageModule_APIHelp -L ../StorageModule_Protocol -L ../XEngine_ThirdPart/jsoncpp
66
LIB = -lXEngine_BaseLib -lXEngine_Algorithm -lXEngine_Core -lXEngine_ManagePool -lXEngine_OPenSsl -lXEngine_ProcFile -lXEngine_SystemApi -lHelpComponents_XLog -lHelpComponents_Packets -lRfcComponents_HttpServer -lNetHelp_APIHelp \
77
-lStorageModule_Database -lStorageModule_P2XPPeer -lStorageModule_Config -lStorageModule_Session -lStorageModule_APIHelp -lStorageModule_Protocol \
88
-ljsoncpp

XEngine_Source/XEngine_StorageApp/Storage_APPTask/Storage_TaskManage.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@
55
#define XENGINE_STORAGE_APP_METHOD_QUERY _T("Query")
66
#define XENGINE_STORAGE_APP_METHOD_DIR _T("Dir")
77
#define XENGINE_STORAGE_APP_METHOD_TASK _T("Task")
8-
#define XENGINE_STORAGE_APP_METHOD_P2P _T("P2P")
98

109
BOOL XEngine_Task_Manage(LPCTSTR lpszAPIName, LPCTSTR lpszClientAddr, LPCTSTR lpszMsgBuffer, int nMsgLen, RFCCOMPONENTS_HTTP_REQPARAM* pSt_HTTPParam, TCHAR** pptszListHdr, int nHdrCount);

0 commit comments

Comments
 (0)