diff options
| author | Andreas Schwab | 2012-07-07 22:32:41 +0200 |
|---|---|---|
| committer | Andreas Schwab | 2012-07-07 22:32:41 +0200 |
| commit | 4da41f1c10ab05ebe74cd86211e79e3b9ae657ac (patch) | |
| tree | 9081089281285d752cec6f52862670253894ec02 | |
| parent | dffdc540e265ca802c6ce216a1ec04ccdd394884 (diff) | |
| download | emacs-4da41f1c10ab05ebe74cd86211e79e3b9ae657ac.tar.gz emacs-4da41f1c10ab05ebe74cd86211e79e3b9ae657ac.zip | |
* configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations.
| -rw-r--r-- | ChangeLog | 4 | ||||
| -rw-r--r-- | configure.in | 1 |
2 files changed, 5 insertions, 0 deletions
| @@ -1,3 +1,7 @@ | |||
| 1 | 2012-07-07 Andreas Schwab <schwab@linux-m68k.org> | ||
| 2 | |||
| 3 | * configure.in (WARN_CFLAGS): Add -Wno-deprecated-declarations. | ||
| 4 | |||
| 1 | 2012-07-07 Paul Eggert <eggert@cs.ucla.edu> | 5 | 2012-07-07 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 6 | ||
| 3 | Improve static checking when configured --with-ns. | 7 | Improve static checking when configured --with-ns. |
diff --git a/configure.in b/configure.in index 94314c7d71e..6a90c4869e5 100644 --- a/configure.in +++ b/configure.in | |||
| @@ -697,6 +697,7 @@ else | |||
| 697 | gl_WARN_ADD([-Wno-switch]) # Too many warnings for now | 697 | gl_WARN_ADD([-Wno-switch]) # Too many warnings for now |
| 698 | gl_WARN_ADD([-Wno-unused-parameter]) # Too many warnings for now | 698 | gl_WARN_ADD([-Wno-unused-parameter]) # Too many warnings for now |
| 699 | gl_WARN_ADD([-Wno-format-nonliteral]) | 699 | gl_WARN_ADD([-Wno-format-nonliteral]) |
| 700 | gl_WARN_ADD([-Wno-deprecated-declarations]) # triggered by libpng | ||
| 700 | 701 | ||
| 701 | # In spite of excluding -Wlogical-op above, it is enabled, as of | 702 | # In spite of excluding -Wlogical-op above, it is enabled, as of |
| 702 | # gcc 4.5.0 20090517. | 703 | # gcc 4.5.0 20090517. |