mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
9ca8248cc2
Original commit message from CVS: Massive build fixup. Will send message to -devel list later with details on the changes and what they mean for Makefile.am writers. Check docs/random/omega/build/TODO for a list of things that I had to make sure of. NOTE: this requires a complete rebuild of all plugins, since I also changed the STATE enum to a bitfield instead of sequential numbers.
14 lines
434 B
Makefile
14 lines
434 B
Makefile
filterdir = $(libdir)/gst
|
|
|
|
filter_LTLIBRARIES = libwinloader.la
|
|
|
|
# compiler manages to screw something up here... must reduce optimizations
|
|
CFLAGS += -O2
|
|
|
|
libwinloader_la_SOURCES = driver.c elfdll.c ext.c externals.c module.c \
|
|
pe_image.c pe_resource.c registry.c resource.c stubs.s vfl.c afl.c
|
|
|
|
noinst_HEADERS = externals.h wineacm.h
|
|
|
|
DEFINES=-rdynamic -fPIC -D__WINE__ -Ddbg_printf=__vprintf -DTRACE=__vprintf
|
|
CFLAGS += $(DEFINES)
|