Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(399)

Side by Side Diff: third_party/libevent/event-config.h

Issue 7238021: Solaris patch (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2009 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 // This file is Chromium-specific, and brings in the appropriate 5 // This file is Chromium-specific, and brings in the appropriate
6 // event-config.h depending on your platform. 6 // event-config.h depending on your platform.
7 7
8 #if defined(__APPLE__) 8 #if defined(__APPLE__)
9 #include "mac/event-config.h" 9 #include "mac/event-config.h"
10 #elif defined(__linux__) 10 #elif defined(__linux__)
11 #include "linux/event-config.h" 11 #include "linux/event-config.h"
12 #elif defined(__FreeBSD__) 12 #elif defined(__FreeBSD__)
13 #include "freebsd/event-config.h" 13 #include "freebsd/event-config.h"
14 #elif defined(__sun)
15 #include "solaris/event-config.h"
14 #else 16 #else
15 #error generate event-config.h for your platform 17 #error generate event-config.h for your platform
16 #endif 18 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698