2
0

mconfig.OpenBSD 690 B

123456789101112131415161718192021222324252627282930
  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_BASE=
  11. LDFLAGS=$(LDFLAGS_BASE)
  12. TEST_CXXFLAGS=$(CXXFLAGS)
  13. TEST_LDFLAGS_BASE=$(LDFLAGS_BASE)
  14. TEST_LDFLAGS=$(TEST_LDFLAGS_BASE)
  15. BUILD_SHUTDOWN=no
  16. # (shutdown command not available for OpenBSD yet).
  17. # Notes:
  18. # -fno-rtti (optional) : Dinit does not require C++ Run-time Type Information
  19. # Service defaults.
  20. DEFAULT_AUTO_RESTART=true
  21. DEFAULT_START_TIMEOUT=60
  22. DEFAULT_STOP_TIMEOUT=10