annotate share/Makefile.mingw @ 20039:1846fd2da2b4

Fix proxy settings to be loaded correctly when libpurple is initialized. This was broken because it relied on the prefs being loaded after proxy initialization so that the pref callbacks would be triggered and I changed the prefs loading to happen right at the beginning to fix other issues. Fixes #3092.
author Daniel Atallah <daniel.atallah@gmail.com>
date Fri, 14 Sep 2007 17:55:05 +0000
parents ceb6561c5865
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
19193
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
1 #
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
2 # Makefile.mingw
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
3 #
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
4 # Description: Makefile for win32 (mingw) version
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
5 #
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
6
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
7 PIDGIN_TREE_TOP := ..
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
8 include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
9
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
10 include ./Makefile.am
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
11
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
12 .PHONY: install clean
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
13
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
14 install:
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
15 if test '$(SUBDIRS)'; then \
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
16 list='$(SUBDIRS)'; for subdir in $$list; do \
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
17 $(MAKE) -C $$subdir -f $(MINGW_MAKEFILE) install || exit 1 ;\
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
18 done; \
ceb6561c5865 Fix sounds on the win32 build
Daniel Atallah <daniel.atallah@gmail.com>
parents:
diff changeset
19 fi;