diff options
author | Matt Messier <mmessier@grapetv.org> | 2007-05-10 15:48:44 -0400 |
---|---|---|
committer | Matt Messier <mmessier@grapetv.org> | 2007-05-10 15:48:44 -0400 |
commit | 722010dbea5887558dd7d954a19d918119e37b4f (patch) | |
tree | 63454985ebc265189b24878d8d4cf272fb4b4f39 /src | |
parent | 8f4ef350573f8e01a1f1c4081809b6ee1c3403d1 (diff) | |
download | xine-lib-722010dbea5887558dd7d954a19d918119e37b4f.tar.gz xine-lib-722010dbea5887558dd7d954a19d918119e37b4f.tar.bz2 |
Rename PPC_ARCH to ARCH_PPC for consistency.
Move the definition of it to a much more appropriate location.
Diffstat (limited to 'src')
-rw-r--r-- | src/post/goom/Makefile.am | 2 | ||||
-rw-r--r-- | src/xine-utils/Makefile.am | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/src/post/goom/Makefile.am b/src/post/goom/Makefile.am index a8dc13ab0..eeed54697 100644 --- a/src/post/goom/Makefile.am +++ b/src/post/goom/Makefile.am @@ -17,7 +17,7 @@ EXTRA_DIST = mmx.c xmmx.c ppc_drawings.s ppc_zoom_ultimate.s diff_against_releas xinepost_LTLIBRARIES = xineplug_post_goom.la ## doesn't work -#if PPC_ARCH +#if ARCH_PPC #extra_files = ppc_drawings.s ppc_zoom_ultimate.s #AM_CPPFLAGS = -DCPU_POWERPC #endif diff --git a/src/xine-utils/Makefile.am b/src/xine-utils/Makefile.am index 1e58d9fc1..484830cf9 100644 --- a/src/xine-utils/Makefile.am +++ b/src/xine-utils/Makefile.am @@ -1,18 +1,18 @@ include $(top_srcdir)/misc/Makefile.common +AM_CFLAGS = $(DEFAULT_OCFLAGS) $(X_CFLAGS) $(VISIBILITY_FLAG) +AM_CPPFLAGS = -DXINE_LIBRARY_COMPILE + noinst_LTLIBRARIES = libxineutils.la EXTRA_DIST = ppcasm_string.S ppc_asm.tmpl -if PPC_ARCH +if ARCH_PPC if !HOST_OS_DARWIN pppc_files = ppcasm_string.S endif endif -AM_CFLAGS = $(DEFAULT_OCFLAGS) $(X_CFLAGS) $(VISIBILITY_FLAG) -AM_CPPFLAGS=-DXINE_LIBRARY_COMPILE - libxineutils_la_SOURCES = $(pppc_files) \ cpu_accel.c \ color.c \ |