mirror of
https://github.com/opnsense/src.git
synced 2026-02-15 08:38:13 -05:00
38 lines
855 B
Text
38 lines
855 B
Text
# $Id: Linux,v 8.31 2009/01/22 02:15:42 guenther Exp $
|
|
|
|
dnl DO NOT EDIT THIS FILE.
|
|
dnl Place personal settings in devtools/Site/site.config.m4
|
|
|
|
define(`confDEPEND_TYPE', `CC-M')
|
|
define(`confCCOPTS_SO', `-fPIC')
|
|
define(`confSM_OS_HEADER', `sm_os_linux')
|
|
define(`confMANROOT', `/usr/man/man')
|
|
define(`confLIBS', `-ldl')
|
|
define(`confEBINDIR', `/usr/sbin')
|
|
APPENDDEF(`confLIBSEARCH', `crypt nsl')
|
|
|
|
define(`confLD', `ld')
|
|
define(`confMTCCOPTS', `-D_REENTRANT')
|
|
define(`confMTLDOPTS', `-lpthread')
|
|
define(`confLDOPTS_SO', `-shared')
|
|
define(`confSONAME',`-soname')
|
|
|
|
ifelse(confBLDVARIANT, `DEBUG',
|
|
dnl Debug build
|
|
`
|
|
define(`confOPTIMIZE',`-g -Wall')
|
|
',
|
|
dnl Optimized build
|
|
confBLDVARIANT, `OPTIMIZED',
|
|
`
|
|
define(`confOPTIMIZE',`-O2')
|
|
',
|
|
dnl Purify build
|
|
confBLDVARIANT, `PURIFY',
|
|
`
|
|
define(`confOPTIMIZE',`-g')
|
|
',
|
|
dnl default
|
|
`
|
|
define(`confOPTIMIZE',`-O2')
|
|
')
|