diff options
author | Paolo Carlini <paolo.carlini@oracle.com> | 2008-07-03 09:42:30 +0000 |
---|---|---|
committer | Paolo Carlini <paolo@gcc.gnu.org> | 2008-07-03 09:42:30 +0000 |
commit | d07660ccf3063d1155df32ce320f101bafca04a2 (patch) | |
tree | 9f20668582a612716e9165420b1090d7447dfb85 /libstdc++-v3/libsupc++/Makefile.am | |
parent | 1466cf1a6b43180972c82a4bef227f1714a2110f (diff) | |
download | gcc-d07660ccf3063d1155df32ce320f101bafca04a2.tar.gz |
Makefile.am: Add initializer_list to the headers.
2008-07-03 Paolo Carlini <paolo.carlini@oracle.com>
* libsupc++/Makefile.am: Add initializer_list to the headers.
* libsupc++/Makefile.in: Regenerate.
* libsupc++/initializer_list: Minor cosmetic changes.
From-SVN: r137409
Diffstat (limited to 'libstdc++-v3/libsupc++/Makefile.am')
-rw-r--r-- | libstdc++-v3/libsupc++/Makefile.am | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libstdc++-v3/libsupc++/Makefile.am b/libstdc++-v3/libsupc++/Makefile.am index 366efa27428..c0412f0b8ed 100644 --- a/libstdc++-v3/libsupc++/Makefile.am +++ b/libstdc++-v3/libsupc++/Makefile.am @@ -1,6 +1,6 @@ ## Makefile for the GNU C++ Support library. ## -## Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2007 +## Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 ## Free Software Foundation, Inc. ## ## Process this file with automake to produce Makefile.in. @@ -33,7 +33,8 @@ noinst_LTLIBRARIES = libsupc++convenience.la headers = \ - exception new typeinfo cxxabi.h cxxabi-forced.h exception_defines.h + exception new typeinfo cxxabi.h cxxabi-forced.h exception_defines.h \ + initializer_list if GLIBCXX_HOSTED c_sources = \ |