Skip to content

Commit

Permalink
GCC 4.3 build fixes.
Browse files Browse the repository at this point in the history
BUG=241


git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1663 0039d316-1c4b-4281-b951-d872f2087c98
  • Loading branch information
evanm@google.com committed Sep 3, 2008
1 parent 040aa40 commit 43580bc
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions build/SConscript.main
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,8 @@ elif env['PLATFORM'] == 'posix':
]
env.Replace(
CCFLAGS = ['-m32', '-g', '-pthread', '-Wall', '-Werror'] + excluded_warnings,
# Needed for using ext/hash_map on GCC 4.3
CXXFLAGS = ['-Wno-deprecated'],
LINKFLAGS = ['-m32', '-pthread'],
# We need rt for clock_gettime.
LIBS = ['rt'],
Expand Down
1 change: 1 addition & 0 deletions chrome/AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
# Name or Organization <email address>

Google Inc.
Seo Sanghyeon <sanxiyn@gmail.com>
4 changes: 2 additions & 2 deletions webkit/pending/Page.h
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
typedef struct HINSTANCE__* HINSTANCE;
#endif

typedef enum TextCaseSensitivity {
enum TextCaseSensitivity {
TextCaseSensitive,
TextCaseInsensitive
};

typedef enum FindDirection {
enum FindDirection {
FindDirectionForward,
FindDirectionBackward
};
Expand Down

0 comments on commit 43580bc

Please sign in to comment.