summaryrefslogtreecommitdiff
path: root/devtools/OS/Linux
diff options
context:
space:
mode:
Diffstat (limited to 'devtools/OS/Linux')
-rw-r--r--devtools/OS/Linux37
1 files changed, 37 insertions, 0 deletions
diff --git a/devtools/OS/Linux b/devtools/OS/Linux
new file mode 100644
index 0000000000000..52418c8473aaf
--- /dev/null
+++ b/devtools/OS/Linux
@@ -0,0 +1,37 @@
+# $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')
+')