mconfig.OpenBSD 617 B

12345678910111213141516171819202122232425262728
  1. # Installation path options.
  2. SBINDIR=/sbin
  3. MANDIR=/usr/share/man
  4. SYSCONTROLSOCKET=/var/run/dinitctl
  5. # General build options. Uncomment the options appropriate for your system.
  6. # OpenBSD, tested with GCC 4.9.3 / Clang++ 4/5 and gmake:
  7. CXX=clang++
  8. CXXFLAGS=-std=c++11 -Os -Wall -fno-rtti
  9. CPPFLAGS=
  10. LDFLAGS=
  11. TEST_CXXFLAGS=$(CXXFLAGS)
  12. TEST_LDFLAGS=$(LDFLAGS)
  13. BUILD_SHUTDOWN=no
  14. # (shutdown command not available for OpenBSD yet).
  15. # Notes:
  16. # -fno-rtti (optional) : Dinit does not require C++ Run-time Type Information
  17. # Service defaults.
  18. DEFAULT_AUTO_RESTART=true
  19. DEFAULT_START_TIMEOUT=60
  20. DEFAULT_STOP_TIMEOUT=10