Subject | Hash | Author | Date (UTC) |
---|---|---|---|
Remove -O0 used for debugging | b9799033b2d62c30647eceb9d175d9fbafca0fdf | GDR! | 2017-10-28 12:40:54 |
Fix use-after-free in server code (SIGBUS) | 3b5f9f9a42c637c4e699c0278318b97d277722af | GDR! | 2017-10-28 12:39:35 |
Update BUILD.md | 5ee6f6f015d4b462df4bdd11a2f64d2fbf2369c1 | GDR! | 2017-10-28 11:18:01 |
Travis - fix apt-get for ubuntu 14.04 | 83706eb59257fa069353ef2a2f2c12ab45d7c3f2 | GDR! | 2017-10-20 20:54:23 |
Rename -P to -W for consistency with SSH client | a2ad73a5b544459a3d0ee8c7e408ac058c040dc0 | GDR! | 2017-10-20 20:53:03 |
Bump versions and new deps in Travis | 77177d357b5bcb2e7fedabcceab3df085b73e9f0 | GDR! | 2017-10-20 20:50:10 |
Make build instructions more clear about dependencies | 55271d0f76bcb15cb70c50ac58c4cc1d865be459 | your_name_here | 2017-10-20 20:38:43 |
Makefile compatible with c-toxcore 0.1.10 | 00e059f854254cc7bc9722e3cc4f8450398f3ccc | GDR! | 2017-10-20 20:31:46 |
New bootstrap nodes | 5339a624aba30799494c876a970d1d9fd010ec1b | GDR! | 2017-10-20 20:03:06 |
Rename rtmp to more readable temp_rule | d41a65bc350a151075dba23729727d8f44cb76ce | GDR! | 2017-10-20 19:47:11 |
Fix warning - control reaches end of non-void function | e36cd56347fd88d4943faf3edbbdefc72435db23 | GDR! | 2017-10-20 19:41:28 |
Clarify PSK | 8498602e68a73b56675d1a022f9f84aa3d504b9b | GDR! | 2017-06-28 13:42:56 |
Close Issue #42 | c1a04ae71aa9dd7a590035326d5dabac31645fca | Andrzej Godziuk | 2017-05-04 10:17:49 |
Configurable TCP and UDP listen ports | 3acdcaaa65badbf3feb7d5438fdf1f66e1faa955 | Andrzej Godziuk | 2017-04-19 20:30:10 |
Fix Travis build | 38678c2c0a3c03acece160a05a771dd10ee20277 | Andrzej Godziuk | 2017-04-19 12:09:33 |
Fix Travis build | f12ed68c482d08681b6be2e2045c1840a52d1e97 | Andrzej Godziuk | 2017-04-19 12:03:22 |
Fix Travis build | 1931c1218b24612724c2da679199c786e6a30652 | Andrzej Godziuk | 2017-04-19 11:52:34 |
Update VPN.md | 8bacf02a4bd50eaded5d9c86fc8b7ff103d16341 | GDR! | 2017-04-18 16:40:38 |
Improve data transfer speed and latency | fe1b53fd47ffd5a527d9e072ad179028e0330d2c | ValdikSS | 2017-04-16 18:19:07 |
tokssh: add missing secret option to cmd line 🤦 | 65243979ba7216b32045c5da98c98f2686a97f7a | fabrixxm | 2017-04-07 19:11:12 |
File | Lines added | Lines deleted |
---|---|---|
Makefile | 2 | 2 |
File Makefile changed (mode: 100644) (index a9e7080..141af4f) | |||
1 | 1 | SOURCES = $(wildcard *.c) | SOURCES = $(wildcard *.c) |
2 | 2 | DEPS=libtoxcore libsodium libevent_pthreads | DEPS=libtoxcore libsodium libevent_pthreads |
3 | 3 | CC=gcc | CC=gcc |
4 | CFLAGS=-g -O0 -Wall #-std=c99 | ||
4 | CFLAGS=-g -Wall #-std=c99 | ||
5 | 5 | CFLAGS += $(shell pkg-config --cflags $(DEPS)) | CFLAGS += $(shell pkg-config --cflags $(DEPS)) |
6 | LDFLAGS=-g -O0 -pthread -lm -static -lrt | ||
6 | LDFLAGS=-g -pthread -lm -static -lrt | ||
7 | 7 | LDFLAGS += $(shell pkg-config --static --libs $(DEPS)) | LDFLAGS += $(shell pkg-config --static --libs $(DEPS)) |
8 | 8 | DSO_LDFLAGS=-g -pthread -lm -lrt | DSO_LDFLAGS=-g -pthread -lm -lrt |
9 | 9 | DSO_LDFLAGS += $(shell pkg-config --libs $(DEPS)) | DSO_LDFLAGS += $(shell pkg-config --libs $(DEPS)) |