Skip to content

Commit

Permalink
Merge pull request #511 from ShonFrazier/master
Browse files Browse the repository at this point in the history
Added empty search extension for loading framework binaries
  • Loading branch information
JeffBezanson committed Mar 4, 2012
2 parents f023f46 + 1e7611e commit c6472e3
Showing 1 changed file with 2 additions and 2 deletions.
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

0 comments on commit c6472e3

Please sign in to comment.