# HG changeset patch # User Daniel Atallah # Date 1181737380 0 # Node ID 7ac75fe490c23e886fa359d73d81274fbf57e4f7 # Parent bfd44bbb5909397c880b286a9c7a0ab17743566b Fix mingw build for 32px and 48px tray icons. I'm not actually sure that we need these at all on Windows. diff -r bfd44bbb5909 -r 7ac75fe490c2 pidgin/pixmaps/tray/32/Makefile.mingw --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/tray/32/Makefile.mingw Wed Jun 13 12:23:00 2007 +0000 @@ -0,0 +1,20 @@ +# +# Makefile.mingw +# +# Description: Makefile for win32 (mingw) version of Pidgin pixmaps +# + +PIDGIN_TREE_TOP := ../../../.. +include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak + +datadir = $(PIDGIN_INSTALL_DIR) +include ./Makefile.am + +.PHONY: install + +install: + if test '$(pidgintraypix_DATA)'; then \ + mkdir -p $(pidgintraypixdir); \ + cp $(pidgintraypix_DATA) $(pidgintraypixdir); \ + fi; + diff -r bfd44bbb5909 -r 7ac75fe490c2 pidgin/pixmaps/tray/48/Makefile.mingw --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/pidgin/pixmaps/tray/48/Makefile.mingw Wed Jun 13 12:23:00 2007 +0000 @@ -0,0 +1,20 @@ +# +# Makefile.mingw +# +# Description: Makefile for win32 (mingw) version of Pidgin pixmaps +# + +PIDGIN_TREE_TOP := ../../../.. +include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak + +datadir = $(PIDGIN_INSTALL_DIR) +include ./Makefile.am + +.PHONY: install + +install: + if test '$(pidgintraypix_DATA)'; then \ + mkdir -p $(pidgintraypixdir); \ + cp $(pidgintraypix_DATA) $(pidgintraypixdir); \ + fi; + diff -r bfd44bbb5909 -r 7ac75fe490c2 pidgin/pixmaps/tray/Makefile.am --- a/pidgin/pixmaps/tray/Makefile.am Wed Jun 13 12:20:25 2007 +0000 +++ b/pidgin/pixmaps/tray/Makefile.am Wed Jun 13 12:23:00 2007 +0000 @@ -3,5 +3,7 @@ EXTRA_DIST = \ Makefile.mingw \ 16/Makefile.mingw \ - 22/Makefile.mingw + 22/Makefile.mingw \ + 32/Makefile.mingw \ + 48/Makefile.mingw