view gtk/pixmaps/Makefile.mingw @ 14481:452007468387

[gaim-migrate @ 17200] SF Patch #1554423 from charkins Fixes SF Bug #1429503 "When creating the blist, gaim currently calls gtk_widget_show_all() on the window, then immediately hides it if using the docklet and the blist was hidden when gaim last quit. Bug #1429503 reports that the buddy list window will flash on the screen when starting gaim (though I can't reproduce it). This patch changes that behavior so that the gtk_widget_show_all() is called on the vbox, not the window. gtk_widget_show() will still get called on the window when appropriate (either immediately, or when the user clicks the docklet, etc)." committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Sat, 09 Sep 2006 19:31:45 +0000
parents 841ce6b110a8
children 5d03b309b482
line wrap: on
line source

#
# Makefile.mingw
#
# Description: Makefile for win32 (mingw) version of Gaim pixmaps
#

GAIM_TOP := ../..
include $(GAIM_TOP)/libgaim/win32/global.mak

datadir := $(GAIM_INSTALL_DIR)
include ./Makefile.am

install:
	if test '$(SUBDIRS)'; then \
	  list='$(SUBDIRS)'; for subdir in $$list; do \
	    $(MAKE) -C $$subdir -f $(GAIM_WIN32_MAKEFILE) install; \
	  done; \
	fi;
	if test '$(gaimbuttonpix_DATA)'; then \
	  mkdir -p $(gaimbuttonpixdir); \
	  cp $(gaimbuttonpix_DATA) $(gaimbuttonpixdir); \
	fi;
	if test '$(gaimdialogpix_DATA)'; then \
	  mkdir -p $(gaimdialogpixdir); \
	  cp $(gaimdialogpix_DATA) $(gaimdialogpixdir); \
	fi;
	if test '$(gaimiconpix_DATA)'; then \
	  mkdir -p $(gaimiconpixdir); \
	  cp $(gaimiconpix_DATA) $(gaimiconpixdir); \
	fi;
	if test '$(gaimdistpix_DATA)'; then \
	  mkdir -p $(gaimdistpixdir); \
	  cp $(gaimdistpix_DATA) $(gaimdistpixdir); \
	fi;
	if test '$(distpixmap_DATA)'; then \
	  mkdir -p $(distpixmapdir); \
	  cp $(distpixmap_DATA) $(distpixmapdir); \
	fi;