nandi/frqpublic Fork 0
2e24e647a7766c822d13d253777204c3bf92fb7a
Commits
Clone
git clone https://git.rickub.com/nandi/frq.git
git clone ssh://git@rickub.com/nandi/frq.git

Host key fingerprint (ed25519): SHA256:iycHnxEyq0Q7uyVpB7JlznP0G7JrTPXLYRcAU5CSLhc — verify it before your first connect.

A message in #test, from Nim 35994d4 · on 2e24e647a7766c822d13d253777204c3bf92fb7a · nandi · 20h ago
nim.cfg · 12 lines · 576 BINI Blame HistoryRaw
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
# Applies to every compile under nim/, so no recipe has to remember it.

# std/net's TLS is behind this define — without it `newContext` does not
# exist, which is a confusing way to be told that the socket cannot do 6697.
# Nim loads libssl by soname at run time rather than linking it, so this costs
# nothing at build and fails at connect on a machine with no OpenSSL.
-d:ssl

# The reader runs on its own thread; see src/frq/irc.nim for why nothing is
# shared with it but channels. On by default in Nim 2, stated anyway because
# the design depends on it.
--threads:on