diff options
author | Kevin Ryde <user42@zip.com.au> | 2002-03-02 23:08:40 +0100 |
---|---|---|
committer | Kevin Ryde <user42@zip.com.au> | 2002-03-02 23:08:40 +0100 |
commit | ddd3872eda4b0ba77c3d2c0e102fba7557a4726c (patch) | |
tree | 155535ca519bf6d9428673db06d40f4fc7efb73f | |
parent | 28ba1e2098a6173672a1075a261ae2a0daf13a1e (diff) | |
download | gmp-ddd3872eda4b0ba77c3d2c0e102fba7557a4726c.tar.gz |
* cxx/Makefile.am (INCLUDES): Use __GMP_WITHIN_GMPXX.
(libcxx_la_SOURCES): Add osfuns.cc.
-rw-r--r-- | cxx/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cxx/Makefile.am b/cxx/Makefile.am index e9c26ae76..3538e6265 100644 --- a/cxx/Makefile.am +++ b/cxx/Makefile.am @@ -1,6 +1,6 @@ ## Process this file with automake to generate Makefile.in -# Copyright 2001 Free Software Foundation, Inc. +# Copyright 2001, 2002 Free Software Foundation, Inc. # # This file is part of the GNU MP Library. # @@ -22,7 +22,7 @@ AUTOMAKE_OPTIONS = gnu no-dependencies $(top_builddir)/ansi2knr -INCLUDES = -D__GMP_WITHIN_GMP -I$(top_srcdir) +INCLUDES = -D__GMP_WITHIN_GMPXX -I$(top_srcdir) if WANT_CXX noinst_LTLIBRARIES = libcxx.la @@ -31,4 +31,4 @@ endif # osfuns.cc is handled from the top-level Makefile.am libcxx_la_SOURCES = \ isfuns.cc ismpf.cc ismpq.cc ismpz.cc \ - osdoprnti.cc osmpf.cc osmpq.cc osmpz.cc + osdoprnti.cc osfuns.cc osmpf.cc osmpq.cc osmpz.cc |