Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fix cmake breakage (thanks Marcus)
Browse files Browse the repository at this point in the history
My recent change broke the sdlcheck.cmake by not escaping some quotes properly.
Thanks to Marcus von Appen for pointing it out and providing the patch.
  • Loading branch information
jorgenpt committed Jul 26, 2013
1 parent 96cc254 commit 55ad7cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmake/sdlchecks.cmake
Expand Up @@ -19,7 +19,7 @@ macro(CheckDLOPEN)
check_c_source_compiles("
#include <dlfcn.h>
int main(int argc, char **argv) {
void *handle = dlopen("", RTLD_NOW);
void *handle = dlopen(\"\", RTLD_NOW);
const char *loaderror = (char *) dlerror();
}" HAVE_DLOPEN)
set(CMAKE_REQUIRED_LIBRARIES)
Expand Down

0 comments on commit 55ad7cc

Please sign in to comment.