]> git.pld-linux.org Git - packages/dosemu.git/blob - dosemu-make-new.patch
- package plugins (X and sdl in subpackages)
[packages/dosemu.git] / dosemu-make-new.patch
1 diff -urN dosemu-1.1.5.org/configure.ac dosemu-1.1.5/configure.ac
2 --- dosemu-1.1.5.org/configure.ac       2003-09-01 23:10:03.000000000 +0200
3 +++ dosemu-1.1.5/configure.ac   2003-09-01 23:10:53.000000000 +0200
4 @@ -428,9 +428,9 @@
5    if test "$enable_debug" = "yes"; then
6      CFLAGS="$CFLAGS -g"
7      AC_DEFINE(_DEBUG)
8 -    OPT="-O"
9 +    OPT="$OPTFLAGS"
10    else
11 -    OPT="-O2" # BIG NOTE: do _not_ use -O3,
12 +    OPT="$OPTFLAGS" # BIG NOTE: do _not_ use -O3,
13                # because in forces _inline_ at places where we don't want it !
14                # If we want _inline_, well then we 'code' it.
15      OPT="$OPT -fomit-frame-pointer"  # never omit the frame pointer when debugging!
16 @@ -517,38 +517,6 @@
17   fi
18  
19  
20 -  # -m486 is usually in the specs for the compiler
21 -  # but gcc-3.0 wants -mcpu=i486 instead
22 -  # and gcc-3.4 wants -mtune=i486 instead
23 -  # let the compiler options be dependent of the _target_
24 -  # where dosemu is compiled for, not the host
25 -  if test "$target_cpu" = "athlon" -a $GCC_VERSION_CODE -le 2095 ;  then
26 -    target_cpu="i686"
27 -  fi
28 -  if test "$target_cpu" = "x86_64"; then
29 -    target_cpu="k8"
30 -  fi
31 -  if test "$GCC_VERSION_CODE" -ge 3004 ; then
32 -     OPT="$OPT -mtune=$target_cpu"
33 -  elif test "$GCC_VERSION_CODE" -ge 2095 ; then
34 -     OPT="$OPT -mcpu=$target_cpu"
35 -  else
36 -     case "$target_cpu" in
37 -       i486)
38 -         OPT="$OPT -m486"
39 -         ;;
40 -       i386)
41 -         OPT="$OPT -m386"
42 -         ;;
43 -       *)
44 -         ;;
45 -     esac
46 -  fi
47 -  if test "$target_cpu" = "athlon"; then
48 -     OPT="$OPT -malign-functions=4 -fexpensive-optimizations"
49 -  elif test "$target_cpu" = "i486"; then
50 -     OPT="$OPT -malign-loops=2 -malign-jumps=2 -malign-functions=2"
51 -  fi
52  
53    AC_MSG_CHECKING(for glibc...)
54    set `printf '%b\n' '#include <features.h>\nXXAaZZ __GLIBC__ XXBbZZ __GLIBC_MINOR__'|gcc -E -|awk '/XXAaZZ/ {print $2 " " $4}'`
This page took 0.069141 seconds and 3 git commands to generate.