Mercurial > pidgin.yaz
annotate src/win32/global.mak @ 4834:0ed37c803503
[gaim-migrate @ 5159]
Bjoern Voigt writes:
"I resolved the conflicts and added a new patch in the attachment.
Besides this updates
| I have updated the German translation and fixed some i18n bugs. Most
| interesting is, that the new Gaim main menu now can be translated. As
| a quick fix I added a new item_factory_translate_func function to
| buddy.c. Now there are 2 static item_factory_translate_func functions
| in buddy.c and gtkconv.c. If you are interested, I can clean this next
| time (only one global function in gaim.h and utils.c).
| The other i18n fixed mark some strings as translatable, for instance
| in the "Get Buddy Info" message boxes.
I included an i18n fix for src/util.c:for sec_to_text (seconds to
text)."
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Wed, 19 Mar 2003 23:07:52 +0000 |
parents | 2a2d6d21f1d7 |
children | e1b5619e6a02 |
rev | line source |
---|---|
3711
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
1 # |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
2 # global.mak |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
3 # |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
4 # This file should be included by all Makefile.mingw files for project |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
5 # wide definitions. |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
6 # |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
7 |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
8 CC = gcc.exe |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
9 |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
10 # Don't use -g flag when building Plugin DLLs |
3855
38c95b5835f9
[gaim-migrate @ 4007]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
3711
diff
changeset
|
11 CFLAGS += -O2 -Wall -mno-cygwin -fnative-struct |
3711
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
12 |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
13 VERSION := $(shell cat $(GAIM_TOP)/VERSION) |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
14 |
4246 | 15 DEFINES += -DVERSION=\"$(VERSION)\" \ |
3711
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
16 -DHAVE_CONFIG_H \ |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
17 -DGTK_ENABLE_BROKEN |
48f3c74c13e0
[gaim-migrate @ 3844]
Herman Bloggs <hermanator12002@yahoo.com>
parents:
diff
changeset
|
18 |