------------------------------------------------------------ revno: 16 committer: poy <p...@123gen.com> branch nick: dcpp-plugin-sdk-cpp timestamp: Sun 2013-04-28 23:08:26 +0200 message: plugin API update modified: .bzrignore pluginsdk/PluginDefs.h projects/make/Makefile
-- lp:dcpp-plugin-sdk-cpp https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk Your team Dcplusplus-team is subscribed to branch lp:dcpp-plugin-sdk-cpp. To unsubscribe from this branch go to https://code.launchpad.net/~dcplusplus-team/dcpp-plugin-sdk-cpp/trunk/+edit-subscription
=== modified file '.bzrignore' --- .bzrignore 2013-02-05 19:19:23 +0000 +++ .bzrignore 2013-04-28 21:08:26 +0000 @@ -12,7 +12,7 @@ ./doc/build.bat ./doc/html ./doc/latex -./projects/make/build +./projects/make/build* ./projects/vs2010/Debug ./projects/vs2010/ipch ./projects/vs2010/Release === modified file 'pluginsdk/PluginDefs.h' --- pluginsdk/PluginDefs.h 2013-04-23 18:12:02 +0000 +++ pluginsdk/PluginDefs.h 2013-04-28 21:08:26 +0000 @@ -449,6 +449,7 @@ void (DCAPI *remove_command) (const char* name); void (DCAPI *play_sound) (const char* path); + void (DCAPI *notify) (const char* title, const char* message); } DCUI, *DCUIPtr; #ifdef __cplusplus === modified file 'projects/make/Makefile' --- projects/make/Makefile 2013-04-26 15:12:38 +0000 +++ projects/make/Makefile 2013-04-28 21:08:26 +0000 @@ -31,7 +31,9 @@ src/Plugin.o \ src/stdafx.o -ifeq ($(findstring mingw, $(shell gcc -dumpmachine)),) +COMPILER_SPEC = $(shell $(CC) -dumpmachine) + +ifeq ($(findstring mingw, $(COMPILER_SPEC)),) LIBEXT = .so else CPPFLAGS += -D_WIN32_WINNT=0x502 -DWINVER=0x502 -D_WIN32_IE=0x600 \ @@ -42,7 +44,7 @@ OUTPUT_DIR := $(OUTPUT_DIR)-mingw endif -ifeq ($(findstring x86_64, $(shell gcc -dumpmachine)),) +ifeq ($(findstring x86_64, $(COMPILER_SPEC)),) CPPFLAGS += -march=i686 OUTPUT_DIR := $(OUTPUT_DIR)-x86 else
_______________________________________________ Mailing list: https://launchpad.net/~linuxdcpp-team Post to : linuxdcpp-team@lists.launchpad.net Unsubscribe : https://launchpad.net/~linuxdcpp-team More help : https://help.launchpad.net/ListHelp