diff options
Diffstat (limited to 'deque')
-rwxr-xr-x | deque/configure | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/deque/configure b/deque/configure index 2e20a07..eb8e3d8 100755 --- a/deque/configure +++ b/deque/configure @@ -3729,7 +3729,7 @@ echo "$as_me: WARNING: Unknown kernel type \"$uname_s\" defaults to \"Linux\"" > if test "$ENABLE_DEBUG" = "no" -a -z "$UCFLAGS"; then ##-- only set OFLAGS if user CFLAGS are empty PDEXT_OFLAGS="-O2 -pipe" - else + elif test "$ENABLE_DEBUG" = "yes"; then PDEXT_OFLAGS="-g" fi PDEXT_OFLAGS="$PDEXT_OFLAGS -fPIC" @@ -3746,7 +3746,7 @@ echo "$as_me: WARNING: Unknown kernel type \"$uname_s\" defaults to \"Linux\"" > if test "$ENABLE_DEBUG" = "no" -a -z "$UCFLAGS"; then ##-- only set OFLAGS if user CFLAGS are empty PDEXT_OFLAGS="-O2" - else + elif test "$ENABLE_DEBUG" = "yes"; then PDEXT_OFLAGS="-g" fi PDEXT=pd_darwin @@ -3786,7 +3786,7 @@ echo "$as_me: will use pd extension \".$PDEXT\" for pd externals" >&6;} ##-- add defaults to user flags CPPFLAGS="$UCPPFLAGS $PDEXT_IFLAGS $PDEXT_DFLAGS" - CFLAGS="$UCFLAGS $PDEXT_FLAGS $PDEXT_AFLAGS $PDEXT_WFLAGS" + CFLAGS="$UCFLAGS $PDEXT_OFLAGS $PDEXT_AFLAGS $PDEXT_WFLAGS" LDFLAGS="$ULDFLAGS $PDEXT_LFLAGS" ## END platform-dependent variables |