diff options
author | Johnathan Corgan | 2009-10-10 16:47:09 -0700 |
---|---|---|
committer | Johnathan Corgan | 2009-10-10 16:47:09 -0700 |
commit | 212f623428ddfcd17021f4b431750305024626a1 (patch) | |
tree | e4fdba1cb61326b7f5a229acc63e3428def7ee33 /gnuradio-core | |
parent | a34548979021f0e3511e486c7dbd8c509ae17640 (diff) | |
download | gnuradio-212f623428ddfcd17021f4b431750305024626a1.tar.gz gnuradio-212f623428ddfcd17021f4b431750305024626a1.tar.bz2 gnuradio-212f623428ddfcd17021f4b431750305024626a1.zip |
Add flags and dependencies for MinGW/MSYS.
Patch-by: Don Ward <don2387ward@sprynet.com>
Diffstat (limited to 'gnuradio-core')
-rw-r--r-- | gnuradio-core/src/lib/missing/Makefile.am | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/gnuradio-core/src/lib/missing/Makefile.am b/gnuradio-core/src/lib/missing/Makefile.am index 08e521cb3..238370910 100644 --- a/gnuradio-core/src/lib/missing/Makefile.am +++ b/gnuradio-core/src/lib/missing/Makefile.am @@ -1,5 +1,5 @@ # -# Copyright 2003,2004,2008 Free Software Foundation, Inc. +# Copyright 2003,2004,2008,2009 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -33,6 +33,14 @@ EXTRA_DIST = \ noinst_LTLIBRARIES = libmissing.la -libmissing_la_SOURCES = \ - bug_work_around_8.cc \ +libmissing_la_common_SOURCES = \ + bug_work_around_8.cc + +powerpc_CODE = \ posix_memalign.cc + +if MD_CPU_powerpc +libmissing_la_SOURCES = $(libmissing_la_common_SOURCES) $(powerpc_CODE) +else +libmissing_la_SOURCES = $(libmissing_la_common_SOURCES) +endif |