Skip to content
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

WIP: test removing declspec from thirdparty libs #4020

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion thirdparty/dill/dill/base.ops
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ print HOUT "#define dill_jalp(s, return_addr_reg, target) (s->j->jal)(s, return_

print HOUT "#define dill_special(s, type, param) if (s->j->special) (s->j->special)(s, type, param)\n";
print HOUT "#if defined(_MSC_VER) && !defined(DILL_SRC)\n";
print HOUT "#define DILL_DECLSPEC __declspec(dllimport)\n";
print HOUT "#define DILL_DECLSPEC\n";
print HOUT "#else\n";
print HOUT "#define DILL_DECLSPEC\n";
print HOUT "#endif\n";
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/ffs/ffs/cod/cod.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ extern "C" {

#ifndef FFS_DECL_SPEC
#if defined(_MSC_VER) && !defined(FFS_SRC)
#define FFS_DECLSPEC __declspec(dllimport)
#define FFS_DECLSPEC
#else
#define FFS_DECLSPEC
#endif
Expand Down
2 changes: 1 addition & 1 deletion thirdparty/ffs/ffs/fm/fm.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extern "C" {
typedef struct _FMContextStruct *FMContext;

#if defined(_MSC_VER) && !defined(FFS_SRC)
#define FFS_DECLSPEC __declspec(dllimport)
#define FFS_DECLSPEC
#else
#define FFS_DECLSPEC
#endif
Expand Down
Loading