Changeset 1328
- Timestamp:
- 02/02/08 11:04:52 (7 months ago)
- Location:
- portaudio/branches/v19-devel
- Files:
-
- 2 modified
-
configure (modified) (2 diffs)
-
configure.in (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
portaudio/branches/v19-devel/configure
r1327 r1328 21263 21263 21264 21264 21265 if ( echo "${host_os}" | grep ^darwin >> /dev/null ) ; then21266 CFLAGS="-O2 -Wall -pedantic -pipe -fPIC"21267 C XXFLAGS="-O2"21265 if ( echo "${host_os}" | grep ^darwin >> /dev/null ) && 21266 [ "$enable_mac_debug" != "yes" ] ; then 21267 CFLAGS="-O2 -Wall -pedantic -pipe -fPIC -DNDEBUG" 21268 21268 else 21269 21269 CFLAGS=${CFLAGS:-"-g -O2 -Wall -pedantic -pipe -fPIC"} … … 21283 21283 _ACEOF 21284 21284 21285 if [ "$enable_mac_debug" = "yes" ] ; then21286 CFLAGS="$CFLAGS -g"21287 CXXFLAGS="$CXXFLAGS -g"21288 else21289 CFLAGS="$CFLAGS -DNDEBUG"21290 fi21291 21285 21292 21286 CFLAGS="$CFLAGS -Werror" -
portaudio/branches/v19-devel/configure.in
r1327 r1328 132 132 133 133 dnl -g is optional on darwin 134 if ( echo "${host_os}" | grep ^darwin >> /dev/null ) ; then135 CFLAGS="-O2 -Wall -pedantic -pipe -fPIC"136 C XXFLAGS="-O2"134 if ( echo "${host_os}" | grep ^darwin >> /dev/null ) && 135 [[ "$enable_mac_debug" != "yes" ]] ; then 136 CFLAGS="-O2 -Wall -pedantic -pipe -fPIC -DNDEBUG" 137 137 else 138 138 CFLAGS=${CFLAGS:-"-g -O2 -Wall -pedantic -pipe -fPIC"} … … 150 150 151 151 AC_DEFINE(PA_USE_COREAUDIO) 152 if [[ "$enable_mac_debug" = "yes" ]] ; then153 CFLAGS="$CFLAGS -g"154 CXXFLAGS="$CXXFLAGS -g"155 else156 CFLAGS="$CFLAGS -DNDEBUG"157 fi158 152 159 153 CFLAGS="$CFLAGS -Werror"
