mconfig.OpenBSD 734 B

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