mirror of
https://github.com/opnsense/src.git
synced 2026-03-12 05:32:15 -04:00
37 lines
822 B
Text
37 lines
822 B
Text
# $Id: Linux,v 8.30 2002/03/21 23:59:25 gshapiro Exp $
|
|
|
|
dnl DO NOT EDIT THIS FILE.
|
|
dnl Place personal settings in devtools/Site/site.config.m4
|
|
|
|
define(`confDEPEND_TYPE', `CC-M')
|
|
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')
|
|
')
|