diff options
author | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-01-23 13:56:05 +0000 |
---|---|---|
committer | Johnny Willemsen <jwillemsen@remedy.nl> | 2005-01-23 13:56:05 +0000 |
commit | 2b99d3e92bb01246c3b871c7908a89943fcebb53 (patch) | |
tree | db62dd3c6ae4db020bfd44faad63a68adb9d0ed9 /include/makeinclude/wrapper_macros.GNU | |
parent | b5011ceb4e87754f321b298cccf6d1f5d53059e3 (diff) | |
download | ATCD-2b99d3e92bb01246c3b871c7908a89943fcebb53.tar.gz |
ChangeLogTag: Sun Jan 23 13:50:12 UTC 2005 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'include/makeinclude/wrapper_macros.GNU')
-rw-r--r-- | include/makeinclude/wrapper_macros.GNU | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/include/makeinclude/wrapper_macros.GNU b/include/makeinclude/wrapper_macros.GNU index bba2a928b83..6818cb29ddc 100644 --- a/include/makeinclude/wrapper_macros.GNU +++ b/include/makeinclude/wrapper_macros.GNU @@ -286,20 +286,17 @@ ifeq ($(threads),0) endif # threads #### -#### Defaults are exceptions off (0), fast off (0), rtti off (0), and +#### Defaults are exceptions off (0), fast off (0), rtti on (1), and #### versioned_so on (1). #### exceptions ?= 0 fast ?= 0 -# @@@ Should this really be the default? Or should we let the -# compiler choose? -rtti ?= 0 +rtti ?= 1 + +versioned_so ?= 1 -ifeq (,$(versioned_so)) - versioned_so = 1 -endif SOVERSION ?= SONAME ?= |