# Configuration variables of Sherlock and their default values
-# (c) 2005 Martin Mares <mj@ucw.cz>
+# (c) 2005--2006 Martin Mares <mj@ucw.cz>
# Version of the whole package
-Set("SHERLOCK_VERSION" => "3.8");
+Set("SHERLOCK_VERSION" => "3.9");
# Installation directory for `make install'
-Set("INSTALL_DIR" => "~/run-3.8");
+Set("INSTALL_DIR" => "~/run-3.9");
# Compile everything with debug information and ASSERT's
UnSet("CONFIG_DEBUG");
void
handle_signal(int signum, struct sigaction *oldact)
{
-#if 0
struct sigaction act;
bzero(&act, sizeof(act));
act.sa_handler = signal_handler_internal;
act.sa_flags = SA_NOMASK;
if (sigaction(signum, &act, oldact) < 0)
die("sigaction: %m");
-#endif
}
void
unhandle_signal(int signum, struct sigaction *oldact)
{
-#if 0
if (sigaction(signum, oldact, NULL) < 0)
die("sigaction: %m");
-#endif
}