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

Commit

Permalink
travis5
Browse files Browse the repository at this point in the history
  • Loading branch information
TETYYS committed Oct 24, 2015
1 parent 18916e6 commit fe3b8a8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ project (LiveProxies)
set(CMAKE_BUILD_TYPE RelWithDebInfo)
set (CMAKE_C_FLAGS "-DDEBUG -g ${CMAKE_C_FLAGS}")

include(CheckIncludeFile)
check_include_file("valgrind/memcheck.h" HAVE_VALGRIND)

if (WIN32)
set (CMAKE_C_FLAGS "--std=gnu99 -Wall ${CMAKE_C_FLAGS}")
ELSE()
Expand Down
2 changes: 1 addition & 1 deletion Server.c
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
#include "HtmlTemplate.h"
#include "Websocket.h"
#include <stdio.h>
#if defined DEBUG && defined __linux__
#if defined DEBUG && defined HAVE_VALGRIND
#include <valgrind/memcheck.h>
#endif
#include <openssl/rand.h>
Expand Down
Binary file modified bin/win32_mingw/LiveProxies.exe
Binary file not shown.

0 comments on commit fe3b8a8

Please sign in to comment.