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

Added empty search extension for loading framework binaries #511

Merged
merged 1 commit into from
Mar 4, 2012
Merged
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
Added empty extension for loading framework binaries
  • Loading branch information
Shon Frazier committed Mar 4, 2012
commit 1e7611e0283ac21ffb39d0b0388de69138fb4cec
4 changes: 2 additions & 2 deletions src/dlload.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ static char *extensions[] = { ".so" };
#define GET_FUNCTION_FROM_MODULE dlsym
#define CLOSE_MODULE dlclose
typedef void * module_handle_t;
static char *extensions[] = { ".dylib", ".bundle" };
#define N_EXTENSIONS 2
static char *extensions[] = { "", ".dylib", ".bundle" };
#define N_EXTENSIONS 3
#endif

#include "julia.h"
Expand Down