diff options
author | Kevin Ryde <user42@zip.com.au> | 2001-06-07 23:13:01 +0200 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2001-06-07 23:13:01 +0200 |
commit | 6a164d81483ba55e73e2d15d2639af6c80455e14 (patch) | |
tree | 6fedc36255db3f49c99b34242e3a20be52777465 /mpz | |
parent | c41eef1f25186d5622bc2a925298f821caea5065 (diff) | |
download | gmp-6a164d81483ba55e73e2d15d2639af6c80455e14.tar.gz |
Amend to:
* Makefile.am, mpz/Makefile.am, mpq/Makefile.am, mpf/Makefile.am,
mpbsd/Makefile.am (INCLUDES): Set -D__GMP_WITHIN_GMP.
Diffstat (limited to 'mpz')
-rw-r--r-- | mpz/Makefile.am | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/mpz/Makefile.am b/mpz/Makefile.am index 71596ec82..bda29d953 100644 --- a/mpz/Makefile.am +++ b/mpz/Makefile.am @@ -22,10 +22,8 @@ AUTOMAKE_OPTIONS = gnu no-dependencies $(top_builddir)/ansi2knr -INCLUDES = -I$(top_srcdir) -DOPERATION_`echo $* | sed 's/_$$//'` - -# Tell gmp.h it's building gmp, not an application, used by windows DLL stuff. -AM_CPPFLAGS=-D__GMP_WITHIN_GMP +INCLUDES = -D__GMP_WITHIN_GMP -I$(top_srcdir) \ + -DOPERATION_`echo $* | sed 's/_$$//'` noinst_LTLIBRARIES = libmpz.la libmpz_la_SOURCES = \ |