-
Notifications
You must be signed in to change notification settings - Fork 593
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bring DataStorm into Ice 3.8 #2902
Merged
Merged
Changes from 4 commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
ce85e2e
Integrate DataStorm into Ice 3.8
pepone afa87b9
GCC build fixes
pepone 4bd1bbd
Windows build fixes
pepone 59949e8
Additional Windows build fixes
pepone 2b4c22d
Formatting fixes
pepone ac5a485
whitespace cleanup
pepone f596327
Doxygen fixes
pepone 5e67e61
Clang format
pepone 1b55935
Run DataStorm tests on main thread
pepone c515751
Remove workaround for using "regex.h" with old GCC versions
pepone 8765229
Fix Win32 build
pepone efc3163
Do not use fixed ports for DataStorm tests
pepone c09b0cb
Avoid using fixed ports with DataStorm/reliability test
pepone File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
// | ||
// Copyright (c) ZeroC, Inc. All rights reserved. | ||
// | ||
|
||
#ifndef DATASTORM_CONFIG_H | ||
#define DATASTORM_CONFIG_H | ||
|
||
#include "Ice/Config.h" | ||
|
||
#if !defined(ICE_BUILDING_DATASTORM) && defined(DATASTORM_API_EXPORTS) | ||
# define ICE_BUILDING_DATASTORM | ||
#endif | ||
|
||
#if defined(_MSC_VER) && !defined(ICE_BUILDING_DATASTORM) | ||
# pragma comment(lib, ICE_LIBNAME("DataStorm")) // Automatically link with DataStorm[D].lib | ||
#endif | ||
|
||
#ifndef DATASTORM_API | ||
# if defined(DATASTORM_API_EXPORTS) | ||
# define DATASTORM_API ICE_DECLSPEC_EXPORT | ||
# else | ||
# define DATASTORM_API ICE_DECLSPEC_IMPORT | ||
# endif | ||
#endif | ||
|
||
#endif |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Simplified this file to align with other
Xxx/Config.h
in this repository.