Commit 7b0a538b authored by unknown's avatar unknown
Browse files

- giving a range does not work for platform detection in configure.in

   - resorting to having to separate sections for darwin7 and darwin8


configure.in:
   - giving a range does not work here - resorting to having to
     separate sections for darwin7 and darwin8
parent 502dc70d
Loading
Loading
Loading
Loading
+10 −1
Original line number Diff line number Diff line
@@ -1047,7 +1047,16 @@ case $SYSTEM_TYPE in
      MAX_C_OPTIMIZE="-O"
    fi
    ;;
  *darwin[7-8]*)
  *darwin7*)
    if test "$ac_cv_prog_gcc" = "yes"
    then
      FLAGS="-DHAVE_DARWIN_THREADS -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ"
      CFLAGS="$CFLAGS $FLAGS"
      CXXFLAGS="$CXXFLAGS $FLAGS"
      MAX_C_OPTIMIZE="-O"
    fi
    ;;
  *darwin8*)
    if test "$ac_cv_prog_gcc" = "yes"
    then
      FLAGS="-DHAVE_DARWIN_THREADS -D_P1003_1B_VISIBLE -DSIGNAL_WITH_VIO_CLOSE -DSIGNALS_DONT_BREAK_READ"