view src/win32/global.mak @ 8698:f36eee61c85f

[gaim-migrate @ 9451] "This patch hopefully fixes bugs 31, 32, 33, and 39 It also does the thing Sean /ms'd me to do with <hr> tags. At least I hope this is right." --Tim Ringenbach 31: Cutting text from the IM HTML cuts only text without any markup or smileys. 32: Pasting text closes formatting tags before inserting text. 33: Pasting plain text removes all line breaks. 39: Copying rich text and pasting into locations that don't support this, will still paste the HTML and try to send it on to its destination. Luke pointed out that copy/pasting in IRC will do this. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 18 Apr 2004 13:01:44 +0000
parents 59ffe137176d
children cae2fb7e8594
line wrap: on
line source

#
# global.mak
#
# This file should be included by all Makefile.mingw files for project
# wide definitions.
#

CC = gcc.exe

# Use -g flag when building debug version of Gaim (including plugins).
# Use -fnative-struct instead of -mms-bitfields when using mingw 1.1
# (gcc 2.95)
CFLAGS += -O2 -Wall -mno-cygwin -mms-bitfields

# If not specified, dlls are built with the default base address of 0x10000000.
# When loaded into a process address space a dll will be rebased if its base
# address colides with the base address of an existing dll.  To avoid rebasing 
# we do the following.  Rebasing can slow down the load time of dlls and it
# also renders debug info useless.
DLL_LD_FLAGS += -Wl,--enable-auto-image-base

VERSION := $(shell cat $(GAIM_TOP)/VERSION)

DEFINES += 	-DVERSION=\"$(VERSION)\" \
		-DHAVE_CONFIG_H