@@ -10,7 +10,7 @@ dnl Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
10
10
dnl University of Stuttgart. All rights reserved.
11
11
dnl Copyright (c) 2004-2005 The Regents of the University of California.
12
12
dnl All rights reserved.
13
- dnl Copyright (c) 2006-2015 Cisco Systems, Inc. All rights reserved.
13
+ dnl Copyright (c) 2006-2016 Cisco Systems, Inc. All rights reserved.
14
14
dnl Copyright (c) 2007 Sun Microsystems, Inc. All rights reserved.
15
15
dnl Copyright (c) 2009 IBM Corporation. All rights reserved.
16
16
dnl Copyright (c) 2009 Los Alamos National Security, LLC. All rights
@@ -32,17 +32,6 @@ AC_DEFUN([OPAL_CONFIGURE_OPTIONS],[
32
32
opal_show_subtitle " OPAL Configuration options"
33
33
34
34
35
- #
36
- # Is this a developer copy?
37
- #
38
-
39
- if test -d .git; then
40
- OPAL_DEVEL=1
41
- else
42
- OPAL_DEVEL=0
43
- fi
44
-
45
-
46
35
#
47
36
# Code coverage options
48
37
#
100
89
AC_MSG_RESULT([no])
101
90
WANT_MEM_DEBUG=0
102
91
fi
103
- # ################### Early development override ####################
104
- if test " $WANT_MEM_DEBUG " = " 0" && test -z " $enable_mem_debug " && test " $OPAL_DEVEL " = 1; then
105
- WANT_MEM_DEBUG=1
106
- echo " --> developer override: enable mem profiling by default"
107
- fi
108
- # ################### Early development override ####################
109
92
AC_DEFINE_UNQUOTED(OPAL_ENABLE_MEM_DEBUG, $WANT_MEM_DEBUG ,
110
93
[Whether we want the memory profiling or not])
111
94
@@ -124,12 +107,6 @@ else
124
107
AC_MSG_RESULT([no])
125
108
WANT_MEM_PROFILE=0
126
109
fi
127
- # ################### Early development override ####################
128
- if test " $WANT_MEM_PROFILE " = " 0" && test -z " $enable_mem_profile " && test " $OPAL_DEVEL " = 1; then
129
- WANT_MEM_PROFILE=1
130
- echo " --> developer override: enable mem profiling by default"
131
- fi
132
- # ################### Early development override ####################
133
110
AC_DEFINE_UNQUOTED(OPAL_ENABLE_MEM_PROFILE, $WANT_MEM_PROFILE ,
134
111
[Whether we want the memory profiling or not])
135
112
@@ -148,12 +125,6 @@ else
148
125
AC_MSG_RESULT([no])
149
126
WANT_PICKY_COMPILER=0
150
127
fi
151
- # ################### Early development override ####################
152
- if test " $WANT_PICKY_COMPILER " = " 0" && test -z " $enable_picky " && test " $OPAL_DEVEL " = 1; then
153
- WANT_PICKY_COMPILER=1
154
- echo " --> developer override: enable picky compiler by default"
155
- fi
156
- # ################### Early development override ####################
157
128
158
129
#
159
130
# Developer debugging
@@ -190,13 +161,6 @@ AC_DEFINE_UNQUOTED(OPAL_ENABLE_TIMING, $WANT_TIMING,
190
161
AM_CONDITIONAL([OPAL_COMPILE_TIMING], [test " $WANT_TIMING " = " 1" ])
191
162
AM_CONDITIONAL([OPAL_INSTALL_TIMING_BINARIES], [test " $WANT_TIMING " = " 1" && test " $enable_binaries " != " no" ])
192
163
193
-
194
- # ################### Early development override ####################
195
- if test " $WANT_DEBUG " = " 0" && test -z " $enable_debug " && test " $OPAL_DEVEL " = 1; then
196
- WANT_DEBUG=1
197
- echo " --> developer override: enable debugging code by default"
198
- fi
199
- # ################### Early development override ####################
200
164
if test " $WANT_DEBUG " = " 0" ; then
201
165
CFLAGS=" -DNDEBUG $CFLAGS "
202
166
CXXFLAGS=" -DNDEBUG $CXXFLAGS "
0 commit comments