diff options
author | Eli Zaretskii <eliz@gnu.org> | 2013-05-04 18:06:57 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2013-05-04 18:06:57 +0300 |
commit | f54fb7384efed492b6913f61a509cb7fe54fae13 (patch) | |
tree | f2dee135f5036a6914eee423d4fb6041b0e6c0b1 | |
parent | e5e1b44b6e5a0c2d132587db9cefcfc6f3403a26 (diff) | |
download | egawk-f54fb7384efed492b6913f61a509cb7fe54fae13.tar.gz egawk-f54fb7384efed492b6913f61a509cb7fe54fae13.tar.bz2 egawk-f54fb7384efed492b6913f61a509cb7fe54fae13.zip |
Fix MPFR build on pc platforms.
pc/config.h (HAVE_MPFR): Don't #undef; it will be defined by
pc/Makefile as needed.
-rw-r--r-- | pc/ChangeLog | 5 | ||||
-rw-r--r-- | pc/config.h | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/pc/ChangeLog b/pc/ChangeLog index 49e907c6..45646624 100644 --- a/pc/ChangeLog +++ b/pc/ChangeLog @@ -1,3 +1,8 @@ +2013-05-04 Eli Zaretskii <eliz@gnu.org> + + * config.h (HAVE_MPFR): Don't #undef; it will be defined by + pc/Makefile as needed. + 2013-05-02 Scott Deifik <scottd.mail@sbcglobal.net> * Makefile.tst: Sync with mainline. diff --git a/pc/config.h b/pc/config.h index f513d714..4076630d 100644 --- a/pc/config.h +++ b/pc/config.h @@ -180,7 +180,7 @@ #define HAVE_MKTIME 1 /* Define to 1 if you have fully functional mpfr and gmp libraries. */ -#undef HAVE_MPFR +/* #undef HAVE_MPFR */ /* Define to 1 if you have the <netdb.h> header file. */ #undef HAVE_NETDB_H |