Statistics
| Branch: | Revision:

root / configure @ 9f8df9c1

History | View | Annotate | Download (47.8 kB)

1
#!/bin/sh
2
#
3
# qemu configure script (c) 2003 Fabrice Bellard
4
#
5
# set temporary file name
6
if test ! -z "$TMPDIR" ; then
7
    TMPDIR1="${TMPDIR}"
8
elif test ! -z "$TEMPDIR" ; then
9
    TMPDIR1="${TEMPDIR}"
10
else
11
    TMPDIR1="/tmp"
12
fi
13

    
14
TMPC="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.c"
15
TMPO="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.o"
16
TMPE="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}"
17
TMPS="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.S"
18
TMPI="${TMPDIR1}/qemu-conf-${RANDOM}-$$-${RANDOM}.i"
19
TMPSDLLOG="${TMPDIR1}/qemu-conf-sdl-$$-${RANDOM}.log"
20

    
21
trap "rm -f $TMPC $TMPO $TMPE $TMPS $TMPI $TMPSDLLOG; exit" 0 2 3 15
22

    
23
# default parameters
24
prefix=""
25
interp_prefix="/usr/gnemul/qemu-%M"
26
static="no"
27
cross_prefix=""
28
cc="gcc"
29
audio_drv_list=""
30
audio_card_list="ac97 es1370 sb16"
31
audio_possible_cards="ac97 es1370 sb16 cs4231a adlib gus"
32
host_cc="gcc"
33
ar="ar"
34
make="make"
35
install="install"
36
strip="strip"
37

    
38
# parse CC options first
39
for opt do
40
  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
41
  case "$opt" in
42
  --cross-prefix=*) cross_prefix="$optarg"
43
  ;;
44
  --cc=*) cc="$optarg"
45
  ;;
46
  esac
47
done
48

    
49
# OS specific
50
# Using uname is really, really broken.  Once we have the right set of checks
51
# we can eliminate it's usage altogether
52

    
53
cc="${cross_prefix}${cc}"
54
ar="${cross_prefix}${ar}"
55
strip="${cross_prefix}${strip}"
56

    
57
# check that the C compiler works.
58
cat > $TMPC <<EOF
59
int main(void) {}
60
EOF
61

    
62
if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
63
  : C compiler works ok
64
else
65
    echo "ERROR: \"$cc\" either does not exist or does not work"
66
    exit 1
67
fi
68

    
69
check_define() {
70
cat > $TMPC <<EOF
71
#if !defined($1)
72
#error Not defined
73
#endif
74
int main(void) { return 0; }
75
EOF
76
  $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null
77
}
78

    
79
if check_define __i386__ ; then
80
  cpu="i386"
81
elif check_define __x86_64__ ; then
82
  cpu="x86_64"
83
elif check_define __sparc__ ; then
84
  # We can't check for 64 bit (when gcc is biarch) or V8PLUSA
85
  # They must be specified using --sparc_cpu
86
  if check_define __arch64__ ; then
87
    cpu="sparc64"
88
  else
89
    cpu="sparc"
90
  fi
91
elif check_define _ARCH_PPC ; then
92
  if check_define _ARCH_PPC64 ; then
93
    cpu="ppc64"
94
  else
95
    cpu="ppc"
96
  fi
97
else
98
  cpu=`uname -m`
99
fi
100

    
101
target_list=""
102
case "$cpu" in
103
  i386|i486|i586|i686|i86pc|BePC)
104
    cpu="i386"
105
  ;;
106
  x86_64|amd64)
107
    cpu="x86_64"
108
  ;;
109
  alpha)
110
    cpu="alpha"
111
  ;;
112
  armv*b)
113
    cpu="armv4b"
114
  ;;
115
  armv*l)
116
    cpu="armv4l"
117
  ;;
118
  cris)
119
    cpu="cris"
120
  ;;
121
  parisc|parisc64)
122
    cpu="hppa"
123
  ;;
124
  ia64)
125
    cpu="ia64"
126
  ;;
127
  m68k)
128
    cpu="m68k"
129
  ;;
130
  mips)
131
    cpu="mips"
132
  ;;
133
  mips64)
134
    cpu="mips64"
135
  ;;
136
  ppc)
137
    cpu="ppc"
138
  ;;
139
  ppc64)
140
    cpu="ppc64"
141
  ;;
142
  s390*)
143
    cpu="s390"
144
  ;;
145
  sparc|sun4[cdmuv])
146
    cpu="sparc"
147
  ;;
148
  sparc64)
149
    cpu="sparc64"
150
  ;;
151
  *)
152
    cpu="unknown"
153
  ;;
154
esac
155
gprof="no"
156
sparse="no"
157
bigendian="no"
158
mingw32="no"
159
EXESUF=""
160
gdbstub="yes"
161
slirp="yes"
162
vde="yes"
163
fmod_lib=""
164
fmod_inc=""
165
oss_lib=""
166
vnc_tls="yes"
167
bsd="no"
168
linux="no"
169
solaris="no"
170
kqemu="no"
171
profiler="no"
172
cocoa="no"
173
check_gfx="yes"
174
softmmu="yes"
175
linux_user="no"
176
darwin_user="no"
177
bsd_user="no"
178
build_docs="no"
179
uname_release=""
180
curses="yes"
181
aio="yes"
182
nptl="yes"
183
mixemu="no"
184
bluez="yes"
185
kvm="yes"
186
kerneldir=""
187
aix="no"
188
blobs="yes"
189
fdt="yes"
190

    
191
# OS specific
192
if check_define __linux__ ; then
193
  targetos="Linux"
194
elif check_define _WIN32 ; then
195
  targetos='MINGW32'
196
else
197
  targetos=`uname -s`
198
fi
199
case $targetos in
200
CYGWIN*)
201
mingw32="yes"
202
OS_CFLAGS="-mno-cygwin"
203
if [ "$cpu" = "i386" ] ; then
204
    kqemu="yes"
205
fi
206
audio_possible_drivers="sdl"
207
;;
208
MINGW32*)
209
mingw32="yes"
210
if [ "$cpu" = "i386" ] ; then
211
    kqemu="yes"
212
fi
213
audio_possible_drivers="dsound sdl fmod"
214
;;
215
GNU/kFreeBSD)
216
audio_drv_list="oss"
217
audio_possible_drivers="oss sdl esd pa"
218
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
219
    kqemu="yes"
220
fi
221
;;
222
FreeBSD)
223
bsd="yes"
224
audio_drv_list="oss"
225
audio_possible_drivers="oss sdl esd pa"
226
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
227
    kqemu="yes"
228
fi
229
;;
230
NetBSD)
231
bsd="yes"
232
audio_drv_list="oss"
233
audio_possible_drivers="oss sdl esd"
234
oss_lib="-lossaudio"
235
;;
236
OpenBSD)
237
bsd="yes"
238
openbsd="yes"
239
audio_drv_list="oss"
240
audio_possible_drivers="oss sdl esd"
241
oss_lib="-lossaudio"
242
;;
243
Darwin)
244
bsd="yes"
245
darwin="yes"
246
darwin_user="yes"
247
cocoa="yes"
248
audio_drv_list="coreaudio"
249
audio_possible_drivers="coreaudio sdl fmod"
250
OS_CFLAGS="-mdynamic-no-pic"
251
OS_LDFLAGS="-framework CoreFoundation -framework IOKit"
252
;;
253
SunOS)
254
    solaris="yes"
255
    make="gmake"
256
    install="ginstall"
257
    needs_libsunmath="no"
258
    solarisrev=`uname -r | cut -f2 -d.`
259
    # have to select again, because `uname -m` returns i86pc
260
    # even on an x86_64 box.
261
    solariscpu=`isainfo -k`
262
    if test "${solariscpu}" = "amd64" ; then
263
        cpu="x86_64"
264
    fi
265
    if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
266
        if test "$solarisrev" -le 9 ; then
267
            if test -f /opt/SUNWspro/prod/lib/libsunmath.so.1; then
268
                needs_libsunmath="yes"
269
            else
270
                echo "QEMU will not link correctly on Solaris 8/X86 or 9/x86 without"
271
                echo "libsunmath from the Sun Studio compilers tools, due to a lack of"
272
                echo "C99 math features in libm.so in Solaris 8/x86 and Solaris 9/x86"
273
                echo "Studio 11 can be downloaded from www.sun.com."
274
                exit 1
275
            fi
276
        fi
277
        if test "$solarisrev" -ge 9 ; then
278
            kqemu="yes"
279
        fi
280
    fi
281
    if test -f /usr/include/sys/soundcard.h ; then
282
        audio_drv_list="oss"
283
    fi
284
    audio_possible_drivers="oss sdl"
285
;;
286
AIX)
287
aix="yes"
288
make="gmake"
289
;;
290
*)
291
audio_drv_list="oss"
292
audio_possible_drivers="oss alsa sdl esd pa"
293
linux="yes"
294
linux_user="yes"
295
usb="linux"
296
if [ "$cpu" = "i386" -o "$cpu" = "x86_64" ] ; then
297
    kqemu="yes"
298
    audio_possible_drivers="$audio_possible_drivers fmod"
299
fi
300
;;
301
esac
302

    
303
if [ "$bsd" = "yes" ] ; then
304
  if [ "$darwin" != "yes" ] ; then
305
    make="gmake"
306
    usb="bsd"
307
  fi
308
  bsd_user="yes"
309
fi
310

    
311
# find source path
312
source_path=`dirname "$0"`
313
source_path_used="no"
314
workdir=`pwd`
315
if [ -z "$source_path" ]; then
316
    source_path=$workdir
317
else
318
    source_path=`cd "$source_path"; pwd`
319
fi
320
[ -f "$workdir/vl.c" ] || source_path_used="yes"
321

    
322
werror="no"
323
# generate compile errors on warnings for development builds
324
#if grep cvs $source_path/VERSION > /dev/null 2>&1 ; then
325
#werror="yes";
326
#fi
327

    
328
for opt do
329
  optarg=`expr "x$opt" : 'x[^=]*=\(.*\)'`
330
  case "$opt" in
331
  --help|-h) show_help=yes
332
  ;;
333
  --prefix=*) prefix="$optarg"
334
  ;;
335
  --interp-prefix=*) interp_prefix="$optarg"
336
  ;;
337
  --source-path=*) source_path="$optarg"
338
  source_path_used="yes"
339
  ;;
340
  --cross-prefix=*)
341
  ;;
342
  --cc=*)
343
  ;;
344
  --host-cc=*) host_cc="$optarg"
345
  ;;
346
  --make=*) make="$optarg"
347
  ;;
348
  --install=*) install="$optarg"
349
  ;;
350
  --extra-cflags=*) CFLAGS="$optarg"
351
  ;;
352
  --extra-ldflags=*) LDFLAGS="$optarg"
353
  ;;
354
  --cpu=*) cpu="$optarg"
355
  ;;
356
  --target-list=*) target_list="$optarg"
357
  ;;
358
  --enable-gprof) gprof="yes"
359
  ;;
360
  --static) static="yes"
361
  ;;
362
  --disable-sdl) sdl="no"
363
  ;;
364
  --fmod-lib=*) fmod_lib="$optarg"
365
  ;;
366
  --fmod-inc=*) fmod_inc="$optarg"
367
  ;;
368
  --oss-lib=*) oss_lib="$optarg"
369
  ;;
370
  --audio-card-list=*) audio_card_list=`echo "$optarg" | sed -e 's/,/ /g'`
371
  ;;
372
  --audio-drv-list=*) audio_drv_list="$optarg"
373
  ;;
374
  --enable-sparse) sparse="yes"
375
  ;;
376
  --disable-sparse) sparse="no"
377
  ;;
378
  --disable-vnc-tls) vnc_tls="no"
379
  ;;
380
  --disable-slirp) slirp="no"
381
  ;;
382
  --disable-vde) vde="no"
383
  ;;
384
  --disable-kqemu) kqemu="no"
385
  ;;
386
  --disable-brlapi) brlapi="no"
387
  ;;
388
  --disable-bluez) bluez="no"
389
  ;;
390
  --disable-kvm) kvm="no"
391
  ;;
392
  --enable-profiler) profiler="yes"
393
  ;;
394
  --enable-cocoa)
395
      cocoa="yes" ;
396
      sdl="no" ;
397
      audio_drv_list="coreaudio `echo $audio_drv_list | sed s,coreaudio,,g`"
398
  ;;
399
  --disable-gfx-check) check_gfx="no"
400
  ;;
401
  --disable-system) softmmu="no"
402
  ;;
403
  --enable-system) softmmu="yes"
404
  ;;
405
  --disable-linux-user) linux_user="no"
406
  ;;
407
  --enable-linux-user) linux_user="yes"
408
  ;;
409
  --disable-darwin-user) darwin_user="no"
410
  ;;
411
  --enable-darwin-user) darwin_user="yes"
412
  ;;
413
  --disable-bsd-user) bsd_user="no"
414
  ;;
415
  --enable-bsd-user) bsd_user="yes"
416
  ;;
417
  --enable-uname-release=*) uname_release="$optarg"
418
  ;;
419
  --sparc_cpu=*)
420
      sparc_cpu="$optarg"
421
      case $sparc_cpu in
422
        v7|v8) SP_CFLAGS="-m32 -mcpu=${sparc_cpu} -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
423
                 target_cpu="sparc"; cpu="sparc" ;;
424
        v8plus|v8plusa) SP_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m32"
425
                 target_cpu="sparc"; cpu="sparc" ;;
426
        v9)    SP_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_${sparc_cpu}__"; SP_LDFLAGS="-m64"
427
                 target_cpu="sparc64"; cpu="sparc64" ;;
428
        *)     echo "undefined SPARC architecture. Exiting";exit 1;;
429
      esac
430
  ;;
431
  --enable-werror) werror="yes"
432
  ;;
433
  --disable-werror) werror="no"
434
  ;;
435
  --disable-curses) curses="no"
436
  ;;
437
  --disable-nptl) nptl="no"
438
  ;;
439
  --enable-mixemu) mixemu="yes"
440
  ;;
441
  --disable-aio) aio="no"
442
  ;;
443
  --disable-blobs) blobs="no"
444
  ;;
445
  --kerneldir=*) kerneldir="$optarg"
446
  ;;
447
  *) echo "ERROR: unknown option $opt"; show_help="yes"
448
  ;;
449
  esac
450
done
451

    
452
# default flags for all hosts
453
CFLAGS="$CFLAGS -O2 -g -fno-strict-aliasing"
454
CFLAGS="$CFLAGS -Wall -Wundef -Wendif-labels -Wwrite-strings -Wmissing-prototypes -Wstrict-prototypes -Wredundant-decls"
455
LDFLAGS="$LDFLAGS -g"
456
if test "$werror" = "yes" ; then
457
CFLAGS="$CFLAGS -Werror"
458
fi
459

    
460
if test "$solaris" = "no" ; then
461
    if ld --version 2>/dev/null | grep "GNU ld" >/dev/null 2>/dev/null ; then
462
        LDFLAGS="$LDFLAGS -Wl,--warn-common"
463
    fi
464
fi
465

    
466
#
467
# If cpu ~= sparc and  sparc_cpu hasn't been defined, plug in the right
468
# ARCH_CFLAGS/ARCH_LDFLAGS (assume sparc_v8plus for 32-bit and sparc_v9 for 64-bit)
469
#
470
case "$cpu" in
471
    sparc) if test -z "$sparc_cpu" ; then
472
               ARCH_CFLAGS="-m32 -mcpu=ultrasparc -D__sparc_v8plus__"
473
               ARCH_LDFLAGS="-m32"
474
           else
475
               ARCH_CFLAGS="${SP_CFLAGS}"
476
               ARCH_LDFLAGS="${SP_LDFLAGS}"
477
           fi
478
           ;;
479
    sparc64) if test -z "$sparc_cpu" ; then
480
               ARCH_CFLAGS="-m64 -mcpu=ultrasparc -D__sparc_v9__"
481
               ARCH_LDFLAGS="-m64"
482
           else
483
               ARCH_CFLAGS="${SP_CFLAGS}"
484
               ARCH_LDFLAGS="${SP_LDFLAGS}"
485
           fi
486
           ;;
487
    s390)
488
           ARCH_CFLAGS="-march=z900"
489
           ;;
490
    i386)
491
           ARCH_CFLAGS="-m32"
492
           ARCH_LDFLAGS="-m32"
493
           ;;
494
    x86_64)
495
           ARCH_CFLAGS="-m64"
496
           ARCH_LDFLAGS="-m64"
497
           ;;
498
esac
499

    
500
if test x"$show_help" = x"yes" ; then
501
cat << EOF
502

    
503
Usage: configure [options]
504
Options: [defaults in brackets after descriptions]
505

    
506
EOF
507
echo "Standard options:"
508
echo "  --help                   print this message"
509
echo "  --prefix=PREFIX          install in PREFIX [$prefix]"
510
echo "  --interp-prefix=PREFIX   where to find shared libraries, etc."
511
echo "                           use %M for cpu name [$interp_prefix]"
512
echo "  --target-list=LIST       set target list [$target_list]"
513
echo ""
514
echo "kqemu kernel acceleration support:"
515
echo "  --disable-kqemu          disable kqemu support"
516
echo ""
517
echo "Advanced options (experts only):"
518
echo "  --source-path=PATH       path of source code [$source_path]"
519
echo "  --cross-prefix=PREFIX    use PREFIX for compile tools [$cross_prefix]"
520
echo "  --cc=CC                  use C compiler CC [$cc]"
521
echo "  --host-cc=CC             use C compiler CC [$host_cc] for dyngen etc."
522
echo "  --make=MAKE              use specified make [$make]"
523
echo "  --install=INSTALL        use specified install [$install]"
524
echo "  --static                 enable static build [$static]"
525
echo "  --enable-sparse          enable sparse checker"
526
echo "  --disable-sparse         disable sparse checker (default)"
527
echo "  --disable-werror         disable compilation abort on warning"
528
echo "  --disable-sdl            disable SDL"
529
echo "  --enable-cocoa           enable COCOA (Mac OS X only)"
530
echo "  --audio-drv-list=LIST    set audio drivers list:"
531
echo "                           Available drivers: $audio_possible_drivers"
532
echo "  --audio-card-list=LIST   set list of emulated audio cards [$audio_card_list]"
533
echo "                           Available cards: $audio_possible_cards"
534
echo "  --enable-mixemu          enable mixer emulation"
535
echo "  --disable-brlapi         disable BrlAPI"
536
echo "  --disable-vnc-tls        disable TLS encryption for VNC server"
537
echo "  --disable-curses         disable curses output"
538
echo "  --disable-bluez          disable bluez stack connectivity"
539
echo "  --disable-kvm            disable KVM acceleration support"
540
echo "  --disable-nptl           disable usermode NPTL support"
541
echo "  --enable-system          enable all system emulation targets"
542
echo "  --disable-system         disable all system emulation targets"
543
echo "  --enable-linux-user      enable all linux usermode emulation targets"
544
echo "  --disable-linux-user     disable all linux usermode emulation targets"
545
echo "  --enable-darwin-user     enable all darwin usermode emulation targets"
546
echo "  --disable-darwin-user    disable all darwin usermode emulation targets"
547
echo "  --enable-bsd-user        enable all BSD usermode emulation targets"
548
echo "  --disable-bsd-user       disable all BSD usermode emulation targets"
549
echo "  --fmod-lib               path to FMOD library"
550
echo "  --fmod-inc               path to FMOD includes"
551
echo "  --oss-lib                path to OSS library"
552
echo "  --enable-uname-release=R Return R for uname -r in usermode emulation"
553
echo "  --sparc_cpu=V            Build qemu for Sparc architecture v7, v8, v8plus, v8plusa, v9"
554
echo "  --disable-vde            disable support for vde network"
555
echo "  --disable-aio            disable AIO support"
556
echo "  --disable-blobs          disable installing provided firmware blobs"
557
echo "  --kerneldir=PATH         look for kernel includes in PATH"
558
echo ""
559
echo "NOTE: The object files are built at the place where configure is launched"
560
exit 1
561
fi
562

    
563
if test "$mingw32" = "yes" ; then
564
    linux="no"
565
    EXESUF=".exe"
566
    oss="no"
567
    linux_user="no"
568
    bsd_user="no"
569
fi
570

    
571
if test ! -x "$(which cgcc 2>/dev/null)"; then
572
    sparse="no"
573
fi
574

    
575
#
576
# Solaris specific configure tool chain decisions
577
#
578
if test "$solaris" = "yes" ; then
579
  solinst=`which $install 2> /dev/null | /usr/bin/grep -v "no $install in"`
580
  if test -z "$solinst" ; then
581
    echo "Solaris install program not found. Use --install=/usr/ucb/install or"
582
    echo "install fileutils from www.blastwave.org using pkg-get -i fileutils"
583
    echo "to get ginstall which is used by default (which lives in /opt/csw/bin)"
584
    exit 1
585
  fi
586
  if test "$solinst" = "/usr/sbin/install" ; then
587
    echo "Error: Solaris /usr/sbin/install is not an appropriate install program."
588
    echo "try ginstall from the GNU fileutils available from www.blastwave.org"
589
    echo "using pkg-get -i fileutils, or use --install=/usr/ucb/install"
590
    exit 1
591
  fi
592
  sol_ar=`which ar 2> /dev/null | /usr/bin/grep -v "no ar in"`
593
  if test -z "$sol_ar" ; then
594
    echo "Error: No path includes ar"
595
    if test -f /usr/ccs/bin/ar ; then
596
      echo "Add /usr/ccs/bin to your path and rerun configure"
597
    fi
598
    exit 1
599
  fi
600
fi
601

    
602

    
603
if test -z "$target_list" ; then
604
# these targets are portable
605
    if [ "$softmmu" = "yes" ] ; then
606
        target_list="\
607
i386-softmmu \
608
x86_64-softmmu \
609
arm-softmmu \
610
cris-softmmu \
611
m68k-softmmu \
612
mips-softmmu \
613
mipsel-softmmu \
614
mips64-softmmu \
615
mips64el-softmmu \
616
ppc-softmmu \
617
ppcemb-softmmu \
618
ppc64-softmmu \
619
sh4-softmmu \
620
sh4eb-softmmu \
621
sparc-softmmu \
622
"
623
    fi
624
# the following are Linux specific
625
    if [ "$linux_user" = "yes" ] ; then
626
        target_list="${target_list}\
627
i386-linux-user \
628
x86_64-linux-user \
629
alpha-linux-user \
630
arm-linux-user \
631
armeb-linux-user \
632
cris-linux-user \
633
m68k-linux-user \
634
mips-linux-user \
635
mipsel-linux-user \
636
ppc-linux-user \
637
ppc64-linux-user \
638
ppc64abi32-linux-user \
639
sh4-linux-user \
640
sh4eb-linux-user \
641
sparc-linux-user \
642
sparc64-linux-user \
643
sparc32plus-linux-user \
644
"
645
    fi
646
# the following are Darwin specific
647
    if [ "$darwin_user" = "yes" ] ; then
648
        target_list="$target_list i386-darwin-user ppc-darwin-user "
649
    fi
650
# the following are BSD specific
651
    if [ "$bsd_user" = "yes" ] ; then
652
        target_list="${target_list}\
653
sparc64-bsd-user \
654
"
655
    fi
656
else
657
    target_list=`echo "$target_list" | sed -e 's/,/ /g'`
658
fi
659
if test -z "$target_list" ; then
660
    echo "No targets enabled"
661
    exit 1
662
fi
663

    
664
if test -z "$cross_prefix" ; then
665

    
666
# ---
667
# big/little endian test
668
cat > $TMPC << EOF
669
#include <inttypes.h>
670
int main(int argc, char ** argv){
671
        volatile uint32_t i=0x01234567;
672
        return (*((uint8_t*)(&i))) == 0x67;
673
}
674
EOF
675

    
676
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
677
$TMPE && bigendian="yes"
678
else
679
echo big/little test failed
680
fi
681

    
682
else
683

    
684
# if cross compiling, cannot launch a program, so make a static guess
685
if test "$cpu" = "armv4b" \
686
     -o "$cpu" = "hppa" \
687
     -o "$cpu" = "m68k" \
688
     -o "$cpu" = "mips" \
689
     -o "$cpu" = "mips64" \
690
     -o "$cpu" = "ppc" \
691
     -o "$cpu" = "ppc64" \
692
     -o "$cpu" = "s390" \
693
     -o "$cpu" = "sparc" \
694
     -o "$cpu" = "sparc64"; then
695
    bigendian="yes"
696
fi
697

    
698
fi
699

    
700
# host long bits test
701
hostlongbits="32"
702
if test "$cpu" = "x86_64" \
703
     -o "$cpu" = "alpha" \
704
     -o "$cpu" = "ia64" \
705
     -o "$cpu" = "sparc64" \
706
     -o "$cpu" = "ppc64"; then
707
    hostlongbits="64"
708
fi
709

    
710
# check gcc options support
711
cat > $TMPC <<EOF
712
int main(void) {
713
}
714
EOF
715

    
716
# Check host NPTL support
717
cat > $TMPC <<EOF
718
#include <sched.h>
719
#include <linux/futex.h>
720
void foo()
721
{
722
#if !defined(CLONE_SETTLS) || !defined(FUTEX_WAIT)
723
#error bork
724
#endif
725
}
726
EOF
727

    
728
if $cc $ARCH_CFLAGS -c -o $TMPO $TMPC > /dev/null 2> /dev/null ; then
729
  :
730
else
731
   nptl="no"
732
fi
733

    
734
##########################################
735
# zlib check
736

    
737
cat > $TMPC << EOF
738
#include <zlib.h>
739
int main(void) { zlibVersion(); return 0; }
740
EOF
741
if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lz > /dev/null 2> /dev/null ; then
742
    :
743
else
744
    echo
745
    echo "Error: zlib check failed"
746
    echo "Make sure to have the zlib libs and headers installed."
747
    echo
748
    exit 1
749
fi
750

    
751
##########################################
752
# SDL probe
753

    
754
sdl_too_old=no
755

    
756
if test -z "$sdl" ; then
757
    sdl_config="sdl-config"
758
    sdl=no
759
    sdl_static=no
760

    
761
cat > $TMPC << EOF
762
#include <SDL.h>
763
#undef main /* We don't want SDL to override our main() */
764
int main( void ) { return SDL_Init (SDL_INIT_VIDEO); }
765
EOF
766
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC `$sdl_config --libs 2> /dev/null` > $TMPSDLLOG 2>&1 ; then
767
        _sdlversion=`$sdl_config --version | sed 's/[^0-9]//g'`
768
        if test "$_sdlversion" -lt 121 ; then
769
            sdl_too_old=yes
770
        else
771
            if test "$cocoa" = "no" ; then
772
                sdl=yes
773
            fi
774
        fi
775

    
776
        # static link with sdl ?
777
        if test "$sdl" = "yes" ; then
778
            aa="no"
779
            `$sdl_config --static-libs 2>/dev/null | grep \\\-laa > /dev/null` && aa="yes"
780
            sdl_static_libs=`$sdl_config --static-libs 2>/dev/null`
781
            if [ "$aa" = "yes" ] ; then
782
                sdl_static_libs="$sdl_static_libs `aalib-config --static-libs`"
783
            fi
784

    
785
            if $cc -o $TMPE ${OS_CFLAGS} `$sdl_config --cflags 2> /dev/null` $TMPC $sdl_static_libs > /dev/null 2> /dev/null; then
786
                sdl_static=yes
787
            fi
788
        fi # static link
789
    fi # sdl compile test
790
else
791
    # Make sure to disable cocoa if sdl was set
792
    if test "$sdl" = "yes" ; then
793
       cocoa="no"
794
       audio_drv_list="`echo $audio_drv_list | sed s,coreaudio,,g`"
795
    fi
796
fi # -z $sdl
797

    
798
##########################################
799
# VNC TLS detection
800
if test "$vnc_tls" = "yes" ; then
801
cat > $TMPC <<EOF
802
#include <gnutls/gnutls.h>
803
int main(void) { gnutls_session_t s; gnutls_init(&s, GNUTLS_SERVER); return 0; }
804
EOF
805
    vnc_tls_cflags=`pkg-config --cflags gnutls 2> /dev/null`
806
    vnc_tls_libs=`pkg-config --libs gnutls 2> /dev/null`
807
    if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $vnc_tls_cflags $TMPC \
808
           $vnc_tls_libs > /dev/null 2> /dev/null ; then
809
	:
810
    else
811
	vnc_tls="no"
812
    fi
813
fi
814

    
815
##########################################
816
# vde libraries probe
817
if test "$vde" = "yes" ; then
818
  cat > $TMPC << EOF
819
#include <libvdeplug.h>
820
int main(void)
821
{
822
    struct vde_open_args a = {0, 0, 0};
823
    vde_open("", "", &a);
824
    return 0;
825
}
826
EOF
827
    if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lvdeplug > /dev/null 2> /dev/null ; then
828
        :
829
    else
830
        vde="no"
831
    fi
832
fi
833

    
834
##########################################
835
# Sound support libraries probe
836

    
837
audio_drv_probe()
838
{
839
    drv=$1
840
    hdr=$2
841
    lib=$3
842
    exp=$4
843
    cfl=$5
844
        cat > $TMPC << EOF
845
#include <$hdr>
846
int main(void) { $exp }
847
EOF
848
    if $cc $ARCH_CFLAGS $cfl -o $TMPE $TMPC $lib > /dev/null 2> /dev/null ; then
849
        :
850
    else
851
        echo
852
        echo "Error: $drv check failed"
853
        echo "Make sure to have the $drv libs and headers installed."
854
        echo
855
        exit 1
856
    fi
857
}
858

    
859
audio_drv_list=`echo "$audio_drv_list" | sed -e 's/,/ /g'`
860
for drv in $audio_drv_list; do
861
    case $drv in
862
    alsa)
863
    audio_drv_probe $drv alsa/asoundlib.h -lasound \
864
        "snd_pcm_t **handle; return snd_pcm_close(*handle);"
865
    ;;
866

    
867
    fmod)
868
    if test -z $fmod_lib || test -z $fmod_inc; then
869
        echo
870
        echo "Error: You must specify path to FMOD library and headers"
871
        echo "Example: --fmod-inc=/path/include/fmod --fmod-lib=/path/lib/libfmod-3.74.so"
872
        echo
873
        exit 1
874
    fi
875
    audio_drv_probe $drv fmod.h $fmod_lib "return FSOUND_GetVersion();" "-I $fmod_inc"
876
    ;;
877

    
878
    esd)
879
    audio_drv_probe $drv esd.h -lesd 'return esd_play_stream(0, 0, "", 0);'
880
    ;;
881

    
882
    pa)
883
    audio_drv_probe $drv pulse/simple.h -lpulse-simple \
884
        "pa_simple *s = NULL; pa_simple_free(s); return 0;"
885
    ;;
886

    
887
    oss|sdl|core|wav|dsound)
888
    # XXX: Probes for CoreAudio, DirectSound, SDL(?)
889
    ;;
890

    
891
    *)
892
    echo "$audio_possible_drivers" | grep -q "\<$drv\>" || {
893
        echo
894
        echo "Error: Unknown driver '$drv' selected"
895
        echo "Possible drivers are: $audio_possible_drivers"
896
        echo
897
        exit 1
898
    }
899
    ;;
900
    esac
901
done
902

    
903
##########################################
904
# BrlAPI probe
905

    
906
if test -z "$brlapi" ; then
907
    brlapi=no
908
cat > $TMPC << EOF
909
#include <brlapi.h>
910
int main( void ) { return brlapi__openConnection (NULL, NULL, NULL); }
911
EOF
912
    if $cc ${ARCH_CFLAGS} -o $TMPE ${OS_CFLAGS} $TMPC -lbrlapi > /dev/null 2> /dev/null ; then
913
	    brlapi=yes
914
    fi # brlapi compile test
915
fi # -z $brlapi
916

    
917
##########################################
918
# curses probe
919

    
920
if test "$curses" = "yes" ; then
921
  curses=no
922
  cat > $TMPC << EOF
923
#include <curses.h>
924
int main(void) { return curses_version(); }
925
EOF
926
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC -lcurses > /dev/null 2> /dev/null ; then
927
    curses=yes
928
  fi
929
fi # test "$curses"
930

    
931
##########################################
932
# bluez support probe
933
if test "$bluez" = "yes" ; then
934
  `pkg-config bluez` || bluez="no"
935
fi
936
if test "$bluez" = "yes" ; then
937
  cat > $TMPC << EOF
938
#include <bluetooth/bluetooth.h>
939
int main(void) { return bt_error(0); }
940
EOF
941
  bluez_cflags=`pkg-config --cflags bluez`
942
  bluez_libs=`pkg-config --libs bluez`
943
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $bluez_cflags $TMPC \
944
      $bluez_libs > /dev/null 2> /dev/null ; then
945
    :
946
  else
947
    bluez="no"
948
  fi
949
fi
950

    
951
##########################################
952
# kvm probe
953
if test "$kvm" = "yes" ; then
954
    cat > $TMPC <<EOF
955
#include <linux/kvm.h>
956
#if !defined(KVM_API_VERSION) || KVM_API_VERSION < 12 || KVM_API_VERSION > 12
957
#error Invalid KVM version
958
#endif
959
#if !defined(KVM_CAP_USER_MEMORY)
960
#error Missing KVM capability KVM_CAP_USER_MEMORY
961
#endif
962
#if !defined(KVM_CAP_SET_TSS_ADDR)
963
#error Missing KVM capability KVM_CAP_SET_TSS_ADDR
964
#endif
965
#if !defined(KVM_CAP_DESTROY_MEMORY_REGION_WORKS)
966
#error Missing KVM capability KVM_CAP_DESTROY_MEMORY_REGION_WORKS
967
#endif
968
int main(void) { return 0; }
969
EOF
970
  if test "$kerneldir" != "" ; then
971
      kvm_cflags=-I"$kerneldir"/include
972
      if test \( "$cpu" = "i386" -o "$cpu" = "x86_64" \) \
973
         -a -d "$kerneldir/arch/x86/include" ; then
974
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/x86/include"
975
	elif test "$cpu" = "ppc" -a -d "$kerneldir/arch/powerpc/include" ; then
976
	    kvm_cflags="$kvm_cflags -I$kerneldir/arch/powerpc/include"
977
        elif test -d "$kerneldir/arch/$cpu/include" ; then
978
            kvm_cflags="$kvm_cflags -I$kerneldir/arch/$cpu/include"
979
      fi
980
  else
981
      kvm_cflags=""
982
  fi
983
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC \
984
      > /dev/null 2>/dev/null ; then
985
    :
986
  else
987
    kvm="no";
988
    if [ -x "`which awk 2>/dev/null`" ] && \
989
       [ -x "`which grep 2>/dev/null`" ]; then
990
      kvmerr=`$cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $kvm_cflags $TMPC 2>&1 \
991
	| grep "error: " \
992
	| awk -F "error: " '{if (NR>1) printf(", "); printf("%s",$2);}'`
993
      if test "$kvmerr" != "" ; then
994
        kvm="no - (${kvmerr})"
995
      fi
996
    fi
997
  fi
998
fi
999

    
1000
##########################################
1001
# AIO probe
1002
AIOLIBS=""
1003

    
1004
if test "$aio" = "yes" ; then
1005
  aio=no
1006
  cat > $TMPC << EOF
1007
#include <pthread.h>
1008
#include <signal.h>
1009
int main(void) { struct sigevent s; pthread_mutex_t lock;
1010
    return sigqueue(0, 0, s.sigev_value); }
1011
EOF
1012
  if $cc $ARCH_CFLAGS -o $TMPE $AIOLIBS $TMPC 2> /dev/null ; then
1013
    aio=yes
1014
    AIOLIBS="-lpthread"
1015
  fi
1016
fi
1017

    
1018
##########################################
1019
# iovec probe
1020
cat > $TMPC <<EOF
1021
#include <sys/types.h>
1022
#include <sys/uio.h>
1023
#include <unistd.h>
1024
int main(void) { struct iovec iov; return 0; }
1025
EOF
1026
iovec=no
1027
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1028
  iovec=yes
1029
fi
1030

    
1031
##########################################
1032
# fdt probe
1033
if test "$fdt" = "yes" ; then
1034
    fdt=no
1035
    cat > $TMPC << EOF
1036
int main(void) { return 0; }
1037
EOF
1038
  if $cc $ARCH_CFLAGS -o $TMPE ${OS_CFLAGS} $TMPC -lfdt 2> /dev/null ; then
1039
    fdt=yes
1040
  fi
1041
fi
1042

    
1043
# Check if tools are available to build documentation.
1044
if [ -x "`which texi2html 2>/dev/null`" ] && \
1045
   [ -x "`which pod2man 2>/dev/null`" ]; then
1046
  build_docs="yes"
1047
fi
1048

    
1049
##########################################
1050
# Do we need librt
1051
cat > $TMPC <<EOF
1052
#include <signal.h>
1053
#include <time.h>
1054
int main(void) { clockid_t id; return clock_gettime(id, NULL); }
1055
EOF
1056

    
1057
rt=no
1058
if $cc $ARCH_CFLAGS -o $TMPE $TMPC > /dev/null 2> /dev/null ; then
1059
  :
1060
elif $cc $ARCH_CFLAGS -o $TMPE $TMPC -lrt > /dev/null 2> /dev/null ; then
1061
  rt=yes
1062
fi
1063

    
1064
if test "$rt" = "yes" ; then
1065
  # Hack, we should have a general purpose LIBS for this sort of thing
1066
  AIOLIBS="$AIOLIBS -lrt"
1067
fi
1068

    
1069
if test "$mingw32" = "yes" ; then
1070
  if test -z "$prefix" ; then
1071
      prefix="c:\\\\Program Files\\\\Qemu"
1072
  fi
1073
  mansuffix=""
1074
  datasuffix=""
1075
  docsuffix=""
1076
  binsuffix=""
1077
else
1078
  if test -z "$prefix" ; then
1079
      prefix="/usr/local"
1080
  fi
1081
  mansuffix="/share/man"
1082
  datasuffix="/share/qemu"
1083
  docsuffix="/share/doc/qemu"
1084
  binsuffix="/bin"
1085
fi
1086

    
1087
echo "Install prefix    $prefix"
1088
echo "BIOS directory    $prefix$datasuffix"
1089
echo "binary directory  $prefix$binsuffix"
1090
if test "$mingw32" = "no" ; then
1091
echo "Manual directory  $prefix$mansuffix"
1092
echo "ELF interp prefix $interp_prefix"
1093
fi
1094
echo "Source path       $source_path"
1095
echo "C compiler        $cc"
1096
echo "Host C compiler   $host_cc"
1097
echo "ARCH_CFLAGS       $ARCH_CFLAGS"
1098
echo "make              $make"
1099
echo "install           $install"
1100
echo "host CPU          $cpu"
1101
echo "host big endian   $bigendian"
1102
echo "target list       $target_list"
1103
echo "gprof enabled     $gprof"
1104
echo "sparse enabled    $sparse"
1105
echo "profiler          $profiler"
1106
echo "static build      $static"
1107
echo "-Werror enabled   $werror"
1108
if test "$darwin" = "yes" ; then
1109
    echo "Cocoa support     $cocoa"
1110
fi
1111
echo "SDL support       $sdl"
1112
if test "$sdl" != "no" ; then
1113
    echo "SDL static link   $sdl_static"
1114
fi
1115
echo "curses support    $curses"
1116
echo "mingw32 support   $mingw32"
1117
echo "Audio drivers     $audio_drv_list"
1118
echo "Extra audio cards $audio_card_list"
1119
echo "Mixer emulation   $mixemu"
1120
echo "VNC TLS support   $vnc_tls"
1121
if test "$vnc_tls" = "yes" ; then
1122
    echo "    TLS CFLAGS    $vnc_tls_cflags"
1123
    echo "    TLS LIBS      $vnc_tls_libs"
1124
fi
1125
if test -n "$sparc_cpu"; then
1126
    echo "Target Sparc Arch $sparc_cpu"
1127
fi
1128
echo "kqemu support     $kqemu"
1129
echo "brlapi support    $brlapi"
1130
echo "Documentation     $build_docs"
1131
[ ! -z "$uname_release" ] && \
1132
echo "uname -r          $uname_release"
1133
echo "NPTL support      $nptl"
1134
echo "vde support       $vde"
1135
echo "AIO support       $aio"
1136
echo "Install blobs     $blobs"
1137
echo "KVM support       $kvm"
1138
echo "fdt support       $fdt"
1139

    
1140
if test $sdl_too_old = "yes"; then
1141
echo "-> Your SDL version is too old - please upgrade to have SDL support"
1142
fi
1143
if [ -s $TMPSDLLOG ]; then
1144
  echo "The error log from compiling the libSDL test is: "
1145
  cat $TMPSDLLOG
1146
fi
1147
#if test "$sdl_static" = "no"; then
1148
#  echo "WARNING: cannot compile statically with SDL - qemu-fast won't have a graphical output"
1149
#fi
1150
config_mak="config-host.mak"
1151
config_h="config-host.h"
1152

    
1153
#echo "Creating $config_mak and $config_h"
1154

    
1155
test -f $config_h && mv $config_h ${config_h}~
1156

    
1157
echo "# Automatically generated by configure - do not modify" > $config_mak
1158
printf "# Configured with:" >> $config_mak
1159
printf " '%s'" "$0" "$@" >> $config_mak
1160
echo >> $config_mak
1161
echo "/* Automatically generated by configure - do not modify */" > $config_h
1162

    
1163
echo "prefix=$prefix" >> $config_mak
1164
echo "bindir=\${prefix}$binsuffix" >> $config_mak
1165
echo "mandir=\${prefix}$mansuffix" >> $config_mak
1166
echo "datadir=\${prefix}$datasuffix" >> $config_mak
1167
echo "docdir=\${prefix}$docsuffix" >> $config_mak
1168
echo "#define CONFIG_QEMU_SHAREDIR \"$prefix$datasuffix\"" >> $config_h
1169
echo "MAKE=$make" >> $config_mak
1170
echo "INSTALL=$install" >> $config_mak
1171
echo "CC=$cc" >> $config_mak
1172
echo "HOST_CC=$host_cc" >> $config_mak
1173
echo "AR=$ar" >> $config_mak
1174
echo "STRIP=$strip -s -R .comment -R .note" >> $config_mak
1175
# XXX: only use CFLAGS and LDFLAGS ?  
1176
# XXX: should export HOST_CFLAGS and HOST_LDFLAGS for cross
1177
# compilation of dyngen tool (useful for win32 build on Linux host)
1178
echo "OS_CFLAGS=$OS_CFLAGS" >> $config_mak
1179
echo "OS_LDFLAGS=$OS_LDFLAGS" >> $config_mak
1180
echo "ARCH_CFLAGS=$ARCH_CFLAGS" >> $config_mak
1181
echo "ARCH_LDFLAGS=$ARCH_LDFLAGS" >> $config_mak
1182
echo "CFLAGS=$CFLAGS" >> $config_mak
1183
echo "LDFLAGS=$LDFLAGS" >> $config_mak
1184
echo "EXESUF=$EXESUF" >> $config_mak
1185
echo "AIOLIBS=$AIOLIBS" >> $config_mak
1186
case "$cpu" in
1187
  i386)
1188
    echo "ARCH=i386" >> $config_mak
1189
    echo "#define HOST_I386 1" >> $config_h
1190
  ;;
1191
  x86_64)
1192
    echo "ARCH=x86_64" >> $config_mak
1193
    echo "#define HOST_X86_64 1" >> $config_h
1194
  ;;
1195
  alpha)
1196
    echo "ARCH=alpha" >> $config_mak
1197
    echo "#define HOST_ALPHA 1" >> $config_h
1198
  ;;
1199
  armv4b)
1200
    echo "ARCH=arm" >> $config_mak
1201
    echo "#define HOST_ARM 1" >> $config_h
1202
  ;;
1203
  armv4l)
1204
    echo "ARCH=arm" >> $config_mak
1205
    echo "#define HOST_ARM 1" >> $config_h
1206
  ;;
1207
  cris)
1208
    echo "ARCH=cris" >> $config_mak
1209
    echo "#define HOST_CRIS 1" >> $config_h
1210
  ;;
1211
  hppa)
1212
    echo "ARCH=hppa" >> $config_mak
1213
    echo "#define HOST_HPPA 1" >> $config_h
1214
  ;;
1215
  ia64)
1216
    echo "ARCH=ia64" >> $config_mak
1217
    echo "#define HOST_IA64 1" >> $config_h
1218
  ;;
1219
  m68k)
1220
    echo "ARCH=m68k" >> $config_mak
1221
    echo "#define HOST_M68K 1" >> $config_h
1222
  ;;
1223
  mips)
1224
    echo "ARCH=mips" >> $config_mak
1225
    echo "#define HOST_MIPS 1" >> $config_h
1226
  ;;
1227
  mips64)
1228
    echo "ARCH=mips64" >> $config_mak
1229
    echo "#define HOST_MIPS64 1" >> $config_h
1230
  ;;
1231
  ppc)
1232
    echo "ARCH=ppc" >> $config_mak
1233
    echo "#define HOST_PPC 1" >> $config_h
1234
  ;;
1235
  ppc64)
1236
    echo "ARCH=ppc64" >> $config_mak
1237
    echo "#define HOST_PPC64 1" >> $config_h
1238
  ;;
1239
  s390)
1240
    echo "ARCH=s390" >> $config_mak
1241
    echo "#define HOST_S390 1" >> $config_h
1242
  ;;
1243
  sparc)
1244
    echo "ARCH=sparc" >> $config_mak
1245
    echo "#define HOST_SPARC 1" >> $config_h
1246
  ;;
1247
  sparc64)
1248
    echo "ARCH=sparc64" >> $config_mak
1249
    echo "#define HOST_SPARC64 1" >> $config_h
1250
  ;;
1251
  *)
1252
    echo "Unsupported CPU = $cpu"
1253
    exit 1
1254
  ;;
1255
esac
1256
if test "$sparse" = "yes" ; then
1257
  echo "CC      := REAL_CC=\"\$(CC)\" cgcc"       >> $config_mak
1258
  echo "HOST_CC := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_mak
1259
  echo "CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_mak
1260
fi
1261
if test "$bigendian" = "yes" ; then
1262
  echo "WORDS_BIGENDIAN=yes" >> $config_mak
1263
  echo "#define WORDS_BIGENDIAN 1" >> $config_h
1264
fi
1265
echo "#define HOST_LONG_BITS $hostlongbits" >> $config_h
1266
if test "$mingw32" = "yes" ; then
1267
  echo "CONFIG_WIN32=yes" >> $config_mak
1268
  echo "#define CONFIG_WIN32 1" >> $config_h
1269
else
1270
  cat > $TMPC << EOF
1271
#include <byteswap.h>
1272
int main(void) { return bswap_32(0); }
1273
EOF
1274
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1275
    echo "#define HAVE_BYTESWAP_H 1" >> $config_h
1276
  fi
1277
  cat > $TMPC << EOF
1278
#include <sys/endian.h>
1279
#include <sys/types.h>
1280
#include <machine/bswap.h>
1281
int main(void) { return bswap32(0); }
1282
EOF
1283
  if $cc $ARCH_CFLAGS -o $TMPE $TMPC >/dev/null 2> /dev/null ; then
1284
    echo "#define HAVE_MACHINE_BSWAP_H 1" >> $config_h
1285
  fi
1286
fi
1287

    
1288
if [ "$openbsd" = "yes" ] ; then
1289
  echo "#define ENOTSUP 4096" >> $config_h
1290
fi
1291

    
1292
if test "$darwin" = "yes" ; then
1293
  echo "CONFIG_DARWIN=yes" >> $config_mak
1294
  echo "#define CONFIG_DARWIN 1" >> $config_h
1295
fi
1296

    
1297
if test "$aix" = "yes" ; then
1298
  echo "CONFIG_AIX=yes" >> $config_mak
1299
  echo "#define CONFIG_AIX 1" >> $config_h
1300
fi
1301

    
1302
if test "$solaris" = "yes" ; then
1303
  echo "CONFIG_SOLARIS=yes" >> $config_mak
1304
  echo "#define HOST_SOLARIS $solarisrev" >> $config_h
1305
  if test "$needs_libsunmath" = "yes" ; then
1306
    echo "NEEDS_LIBSUNMATH=yes" >> $config_mak
1307
    echo "#define NEEDS_LIBSUNMATH 1" >> $config_h
1308
  fi
1309
fi
1310
if test -n "$sparc_cpu"; then
1311
  echo "CONFIG__sparc_${sparc_cpu}__=yes" >> $config_mak
1312
  echo "#define __sparc_${sparc_cpu}__ 1" >> $config_h
1313
fi
1314
if test "$gdbstub" = "yes" ; then
1315
  echo "CONFIG_GDBSTUB=yes" >> $config_mak
1316
  echo "#define CONFIG_GDBSTUB 1" >> $config_h
1317
fi
1318
if test "$gprof" = "yes" ; then
1319
  echo "TARGET_GPROF=yes" >> $config_mak
1320
  echo "#define HAVE_GPROF 1" >> $config_h
1321
fi
1322
if test "$static" = "yes" ; then
1323
  echo "CONFIG_STATIC=yes" >> $config_mak
1324
  echo "#define CONFIG_STATIC 1" >> $config_h
1325
fi
1326
if test $profiler = "yes" ; then
1327
  echo "#define CONFIG_PROFILER 1" >> $config_h
1328
fi
1329
if test "$slirp" = "yes" ; then
1330
  echo "CONFIG_SLIRP=yes" >> $config_mak
1331
  echo "#define CONFIG_SLIRP 1" >> $config_h
1332
fi
1333
if test "$vde" = "yes" ; then
1334
  echo "CONFIG_VDE=yes" >> $config_mak
1335
  echo "#define CONFIG_VDE 1" >> $config_h
1336
  echo "VDE_LIBS=-lvdeplug" >> $config_mak
1337
fi
1338
for card in $audio_card_list; do
1339
    def=CONFIG_`echo $card | tr '[:lower:]' '[:upper:]'`
1340
    echo "$def=yes" >> $config_mak
1341
    echo "#define $def 1" >> $config_h
1342
done
1343
echo "#define AUDIO_DRIVERS \\" >> $config_h
1344
for drv in $audio_drv_list; do
1345
    echo "    &${drv}_audio_driver, \\" >>$config_h
1346
    def=CONFIG_`echo $drv | tr '[:lower:]' '[:upper:]'`
1347
    echo "$def=yes" >> $config_mak
1348
    if test "$drv" = "fmod"; then
1349
        echo "CONFIG_FMOD_LIB=$fmod_lib" >> $config_mak
1350
        echo "CONFIG_FMOD_INC=$fmod_inc" >> $config_mak
1351
    elif test "$drv" = "oss"; then
1352
        echo "CONFIG_OSS_LIB=$oss_lib" >> $config_mak
1353
    fi
1354
done
1355
echo "" >>$config_h
1356
if test "$mixemu" = "yes" ; then
1357
  echo "CONFIG_MIXEMU=yes" >> $config_mak
1358
  echo "#define CONFIG_MIXEMU 1" >> $config_h
1359
fi
1360
if test "$vnc_tls" = "yes" ; then
1361
  echo "CONFIG_VNC_TLS=yes" >> $config_mak
1362
  echo "CONFIG_VNC_TLS_CFLAGS=$vnc_tls_cflags" >> $config_mak
1363
  echo "CONFIG_VNC_TLS_LIBS=$vnc_tls_libs" >> $config_mak
1364
  echo "#define CONFIG_VNC_TLS 1" >> $config_h
1365
fi
1366
qemu_version=`head $source_path/VERSION`
1367
echo "VERSION=$qemu_version" >>$config_mak
1368
echo "#define QEMU_VERSION \"$qemu_version\"" >> $config_h
1369

    
1370
echo "SRC_PATH=$source_path" >> $config_mak
1371
if [ "$source_path_used" = "yes" ]; then
1372
  echo "VPATH=$source_path" >> $config_mak
1373
fi
1374
echo "TARGET_DIRS=$target_list" >> $config_mak
1375
if [ "$build_docs" = "yes" ] ; then
1376
  echo "BUILD_DOCS=yes" >> $config_mak
1377
fi
1378
if test "$static" = "yes"; then
1379
  sdl1=$sdl_static
1380
else
1381
  sdl1=$sdl
1382
fi
1383
if test "$sdl1" = "yes" ; then
1384
  echo "#define CONFIG_SDL 1" >> $config_h
1385
  echo "CONFIG_SDL=yes" >> $config_mak
1386
  if test "$target_softmmu" = "no" -o "$static" = "yes"; then
1387
    echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
1388
  else
1389
    echo "SDL_LIBS=`$sdl_config --libs`" >> $config_mak
1390
  fi
1391
  if [ "${aa}" = "yes" ] ; then
1392
    echo "SDL_CFLAGS=`$sdl_config --cflags` `aalib-config --cflags`" >> $config_mak
1393
  else
1394
    echo "SDL_CFLAGS=`$sdl_config --cflags`" >> $config_mak
1395
  fi
1396
fi
1397
if test "$cocoa" = "yes" ; then
1398
  echo "#define CONFIG_COCOA 1" >> $config_h
1399
  echo "CONFIG_COCOA=yes" >> $config_mak
1400
fi
1401
if test "$curses" = "yes" ; then
1402
  echo "#define CONFIG_CURSES 1" >> $config_h
1403
  echo "CONFIG_CURSES=yes" >> $config_mak
1404
  echo "CURSES_LIBS=-lcurses" >> $config_mak
1405
fi
1406
if test "$brlapi" = "yes" ; then
1407
  echo "CONFIG_BRLAPI=yes" >> $config_mak
1408
  echo "#define CONFIG_BRLAPI 1" >> $config_h
1409
  echo "BRLAPI_LIBS=-lbrlapi" >> $config_mak
1410
fi
1411
if test "$bluez" = "yes" ; then
1412
  echo "CONFIG_BLUEZ=yes" >> $config_mak
1413
  echo "CONFIG_BLUEZ_CFLAGS=$bluez_cflags" >> $config_mak
1414
  echo "CONFIG_BLUEZ_LIBS=$bluez_libs" >> $config_mak
1415
  echo "#define CONFIG_BLUEZ 1" >> $config_h
1416
fi
1417
if test "$aio" = "yes" ; then
1418
  echo "#define CONFIG_AIO 1" >> $config_h
1419
  echo "CONFIG_AIO=yes" >> $config_mak
1420
fi
1421
if test "$blobs" = "yes" ; then
1422
  echo "INSTALL_BLOBS=yes" >> $config_mak
1423
fi
1424
if test "$iovec" = "yes" ; then
1425
  echo "#define HAVE_IOVEC 1" >> $config_h
1426
fi
1427
if test "$fdt" = "yes" ; then
1428
  echo "#define HAVE_FDT 1" >> $config_h
1429
  echo "FDT_LIBS=-lfdt" >> $config_mak
1430
fi
1431

    
1432
# XXX: suppress that
1433
if [ "$bsd" = "yes" ] ; then
1434
  echo "#define O_LARGEFILE 0" >> $config_h
1435
  echo "#define MAP_ANONYMOUS MAP_ANON" >> $config_h
1436
  echo "#define _BSD 1" >> $config_h
1437
fi
1438

    
1439
echo "#define CONFIG_UNAME_RELEASE \"$uname_release\"" >> $config_h
1440

    
1441
# USB host support
1442
case "$usb" in
1443
linux)
1444
  echo "HOST_USB=linux" >> $config_mak
1445
;;
1446
bsd)
1447
  echo "HOST_USB=bsd" >> $config_mak
1448
;;
1449
*)
1450
  echo "HOST_USB=stub" >> $config_mak
1451
;;
1452
esac
1453

    
1454
tools=
1455
if test `expr "$target_list" : ".*softmmu.*"` != 0 ; then
1456
  tools="qemu-img\$(EXESUF) $tools"
1457
  if [ "$linux" = "yes" ] ; then
1458
      tools="qemu-nbd\$(EXESUF) $tools"
1459
  fi
1460
fi
1461
echo "TOOLS=$tools" >> $config_mak
1462

    
1463
test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1464

    
1465
for target in $target_list; do
1466
target_dir="$target"
1467
config_mak=$target_dir/config.mak
1468
config_h=$target_dir/config.h
1469
target_cpu=`echo $target | cut -d '-' -f 1`
1470
target_bigendian="no"
1471
[ "$target_cpu" = "armeb" ] && target_bigendian=yes
1472
[ "$target_cpu" = "m68k" ] && target_bigendian=yes
1473
[ "$target_cpu" = "mips" ] && target_bigendian=yes
1474
[ "$target_cpu" = "mipsn32" ] && target_bigendian=yes
1475
[ "$target_cpu" = "mips64" ] && target_bigendian=yes
1476
[ "$target_cpu" = "ppc" ] && target_bigendian=yes
1477
[ "$target_cpu" = "ppcemb" ] && target_bigendian=yes
1478
[ "$target_cpu" = "ppc64" ] && target_bigendian=yes
1479
[ "$target_cpu" = "ppc64abi32" ] && target_bigendian=yes
1480
[ "$target_cpu" = "sh4eb" ] && target_bigendian=yes
1481
[ "$target_cpu" = "sparc" ] && target_bigendian=yes
1482
[ "$target_cpu" = "sparc64" ] && target_bigendian=yes
1483
[ "$target_cpu" = "sparc32plus" ] && target_bigendian=yes
1484
target_softmmu="no"
1485
target_user_only="no"
1486
target_linux_user="no"
1487
target_darwin_user="no"
1488
target_bsd_user="no"
1489
case "$target" in
1490
  ${target_cpu}-softmmu)
1491
    target_softmmu="yes"
1492
    ;;
1493
  ${target_cpu}-linux-user)
1494
    target_user_only="yes"
1495
    target_linux_user="yes"
1496
    ;;
1497
  ${target_cpu}-darwin-user)
1498
    target_user_only="yes"
1499
    target_darwin_user="yes"
1500
    ;;
1501
  ${target_cpu}-bsd-user)
1502
    target_user_only="yes"
1503
    target_bsd_user="yes"
1504
    ;;
1505
  *)
1506
    echo "ERROR: Target '$target' not recognised"
1507
    exit 1
1508
    ;;
1509
esac
1510

    
1511
if test "$target_user_only" = "no" -a "$check_gfx" = "yes" \
1512
        -a "$sdl" = "no" -a "$cocoa" = "no" ; then
1513
    echo "ERROR: QEMU requires SDL or Cocoa for graphical output"
1514
    echo "To build QEMU without graphical output configure with --disable-gfx-check"
1515
    echo "Note that this will disable all output from the virtual graphics card"
1516
    echo "except through VNC or curses."
1517
    exit 1;
1518
fi
1519

    
1520
#echo "Creating $config_mak, $config_h and $target_dir/Makefile"
1521

    
1522
test -f $config_h && mv $config_h ${config_h}~
1523

    
1524
mkdir -p $target_dir
1525
mkdir -p $target_dir/fpu
1526
mkdir -p $target_dir/tcg
1527
if test "$target" = "arm-linux-user" -o "$target" = "armeb-linux-user" -o "$target" = "arm-bsd-user" -o "$target" = "armeb-bsd-user" ; then
1528
  mkdir -p $target_dir/nwfpe
1529
fi
1530

    
1531
#
1532
# don't use ln -sf as not all "ln -sf" over write the file/link
1533
#
1534
rm -f $target_dir/Makefile
1535
ln -s $source_path/Makefile.target $target_dir/Makefile
1536

    
1537

    
1538
echo "# Automatically generated by configure - do not modify" > $config_mak
1539
echo "/* Automatically generated by configure - do not modify */" > $config_h
1540

    
1541

    
1542
echo "include ../config-host.mak" >> $config_mak
1543
echo "#include \"../config-host.h\"" >> $config_h
1544

    
1545
bflt="no"
1546
elfload32="no"
1547
target_nptl="no"
1548
interp_prefix1=`echo "$interp_prefix" | sed "s/%M/$target_cpu/g"`
1549
echo "#define CONFIG_QEMU_PREFIX \"$interp_prefix1\"" >> $config_h
1550
gdb_xml_files=""
1551

    
1552
# Make sure the target and host cpus are compatible
1553
if test "$kvm" = "yes" -a ! \( "$target_cpu" = "$cpu" -o \
1554
  \( "$target_cpu" = "ppcemb" -a "$cpu" = "ppc" \) -o \
1555
  \( "$target_cpu" = "x86_64" -a "$cpu" = "i386"   \) -o \
1556
  \( "$target_cpu" = "i386"   -a "$cpu" = "x86_64" \) \) ; then
1557
  kvm="no"
1558
fi
1559
# Disable KVM for linux-user
1560
if test "$kvm" = "yes" -a "$target_softmmu" = "no" ; then
1561
  kvm="no"
1562
fi
1563

    
1564
case "$target_cpu" in
1565
  i386)
1566
    echo "TARGET_ARCH=i386" >> $config_mak
1567
    echo "#define TARGET_ARCH \"i386\"" >> $config_h
1568
    echo "#define TARGET_I386 1" >> $config_h
1569
    if test $kqemu = "yes" -a "$target_softmmu" = "yes"
1570
    then
1571
      echo "#define USE_KQEMU 1" >> $config_h
1572
    fi
1573
    if test "$kvm" = "yes" ; then
1574
      echo "CONFIG_KVM=yes" >> $config_mak
1575
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1576
      echo "#define CONFIG_KVM 1" >> $config_h
1577
    fi
1578
  ;;
1579
  x86_64)
1580
    echo "TARGET_ARCH=x86_64" >> $config_mak
1581
    echo "#define TARGET_ARCH \"x86_64\"" >> $config_h
1582
    echo "#define TARGET_I386 1" >> $config_h
1583
    echo "#define TARGET_X86_64 1" >> $config_h
1584
    if test $kqemu = "yes" -a "$target_softmmu" = "yes" -a $cpu = "x86_64"
1585
    then
1586
      echo "#define USE_KQEMU 1" >> $config_h
1587
    fi
1588
    if test "$kvm" = "yes" ; then
1589
      echo "CONFIG_KVM=yes" >> $config_mak
1590
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1591
      echo "#define CONFIG_KVM 1" >> $config_h
1592
    fi
1593
  ;;
1594
  alpha)
1595
    echo "TARGET_ARCH=alpha" >> $config_mak
1596
    echo "#define TARGET_ARCH \"alpha\"" >> $config_h
1597
    echo "#define TARGET_ALPHA 1" >> $config_h
1598
  ;;
1599
  arm|armeb)
1600
    echo "TARGET_ARCH=arm" >> $config_mak
1601
    echo "#define TARGET_ARCH \"arm\"" >> $config_h
1602
    echo "#define TARGET_ARM 1" >> $config_h
1603
    bflt="yes"
1604
    target_nptl="yes"
1605
    gdb_xml_files="arm-core.xml arm-vfp.xml arm-vfp3.xml arm-neon.xml"
1606
  ;;
1607
  cris)
1608
    echo "TARGET_ARCH=cris" >> $config_mak
1609
    echo "#define TARGET_ARCH \"cris\"" >> $config_h
1610
    echo "#define TARGET_CRIS 1" >> $config_h
1611
    target_nptl="yes"
1612
  ;;
1613
  m68k)
1614
    echo "TARGET_ARCH=m68k" >> $config_mak
1615
    echo "#define TARGET_ARCH \"m68k\"" >> $config_h
1616
    echo "#define TARGET_M68K 1" >> $config_h
1617
    bflt="yes"
1618
    gdb_xml_files="cf-core.xml cf-fp.xml"
1619
  ;;
1620
  mips|mipsel)
1621
    echo "TARGET_ARCH=mips" >> $config_mak
1622
    echo "#define TARGET_ARCH \"mips\"" >> $config_h
1623
    echo "#define TARGET_MIPS 1" >> $config_h
1624
    echo "#define TARGET_ABI_MIPSO32 1" >> $config_h
1625
  ;;
1626
  mipsn32|mipsn32el)
1627
    echo "TARGET_ARCH=mipsn32" >> $config_mak
1628
    echo "#define TARGET_ARCH \"mipsn32\"" >> $config_h
1629
    echo "#define TARGET_MIPS 1" >> $config_h
1630
    echo "#define TARGET_ABI_MIPSN32 1" >> $config_h
1631
  ;;
1632
  mips64|mips64el)
1633
    echo "TARGET_ARCH=mips64" >> $config_mak
1634
    echo "#define TARGET_ARCH \"mips64\"" >> $config_h
1635
    echo "#define TARGET_MIPS 1" >> $config_h
1636
    echo "#define TARGET_MIPS64 1" >> $config_h
1637
    echo "#define TARGET_ABI_MIPSN64 1" >> $config_h
1638
  ;;
1639
  ppc)
1640
    echo "TARGET_ARCH=ppc" >> $config_mak
1641
    echo "#define TARGET_ARCH \"ppc\"" >> $config_h
1642
    echo "#define TARGET_PPC 1" >> $config_h
1643
  ;;
1644
  ppcemb)
1645
    echo "TARGET_ARCH=ppcemb" >> $config_mak
1646
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1647
    echo "#define TARGET_ARCH \"ppcemb\"" >> $config_h
1648
    echo "#define TARGET_PPC 1" >> $config_h
1649
    echo "#define TARGET_PPCEMB 1" >> $config_h
1650
    if test "$kvm" = "yes" ; then
1651
      echo "CONFIG_KVM=yes" >> $config_mak
1652
      echo "KVM_CFLAGS=$kvm_cflags" >> $config_mak
1653
      echo "#define CONFIG_KVM 1" >> $config_h
1654
    fi
1655
  ;;
1656
  ppc64)
1657
    echo "TARGET_ARCH=ppc64" >> $config_mak
1658
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1659
    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1660
    echo "#define TARGET_PPC 1" >> $config_h
1661
    echo "#define TARGET_PPC64 1" >> $config_h
1662
  ;;
1663
  ppc64abi32)
1664
    echo "TARGET_ARCH=ppc64" >> $config_mak
1665
    echo "TARGET_ABI_DIR=ppc" >> $config_mak
1666
    echo "TARGET_ARCH2=ppc64abi32" >> $config_mak
1667
    echo "#define TARGET_ARCH \"ppc64\"" >> $config_h
1668
    echo "#define TARGET_PPC 1" >> $config_h
1669
    echo "#define TARGET_PPC64 1" >> $config_h
1670
    echo "#define TARGET_ABI32 1" >> $config_h
1671
  ;;
1672
  sh4|sh4eb)
1673
    echo "TARGET_ARCH=sh4" >> $config_mak
1674
    echo "#define TARGET_ARCH \"sh4\"" >> $config_h
1675
    echo "#define TARGET_SH4 1" >> $config_h
1676
    bflt="yes"
1677
    target_nptl="yes"
1678
  ;;
1679
  sparc)
1680
    echo "TARGET_ARCH=sparc" >> $config_mak
1681
    echo "#define TARGET_ARCH \"sparc\"" >> $config_h
1682
    echo "#define TARGET_SPARC 1" >> $config_h
1683
  ;;
1684
  sparc64)
1685
    echo "TARGET_ARCH=sparc64" >> $config_mak
1686
    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1687
    echo "#define TARGET_SPARC 1" >> $config_h
1688
    echo "#define TARGET_SPARC64 1" >> $config_h
1689
    elfload32="yes"
1690
  ;;
1691
  sparc32plus)
1692
    echo "TARGET_ARCH=sparc64" >> $config_mak
1693
    echo "TARGET_ABI_DIR=sparc" >> $config_mak
1694
    echo "TARGET_ARCH2=sparc32plus" >> $config_mak
1695
    echo "#define TARGET_ARCH \"sparc64\"" >> $config_h
1696
    echo "#define TARGET_SPARC 1" >> $config_h
1697
    echo "#define TARGET_SPARC64 1" >> $config_h
1698
    echo "#define TARGET_ABI32 1" >> $config_h
1699
  ;;
1700
  *)
1701
    echo "Unsupported target CPU"
1702
    exit 1
1703
  ;;
1704
esac
1705
if test "$target_bigendian" = "yes" ; then
1706
  echo "TARGET_WORDS_BIGENDIAN=yes" >> $config_mak
1707
  echo "#define TARGET_WORDS_BIGENDIAN 1" >> $config_h
1708
fi
1709
if test "$target_softmmu" = "yes" ; then
1710
  echo "CONFIG_SOFTMMU=yes" >> $config_mak
1711
  echo "#define CONFIG_SOFTMMU 1" >> $config_h
1712
fi
1713
if test "$target_user_only" = "yes" ; then
1714
  echo "CONFIG_USER_ONLY=yes" >> $config_mak
1715
  echo "#define CONFIG_USER_ONLY 1" >> $config_h
1716
fi
1717
if test "$target_linux_user" = "yes" ; then
1718
  echo "CONFIG_LINUX_USER=yes" >> $config_mak
1719
  echo "#define CONFIG_LINUX_USER 1" >> $config_h
1720
fi
1721
if test "$target_darwin_user" = "yes" ; then
1722
  echo "CONFIG_DARWIN_USER=yes" >> $config_mak
1723
  echo "#define CONFIG_DARWIN_USER 1" >> $config_h
1724
fi
1725
list=""
1726
if test ! -z "$gdb_xml_files" ; then
1727
  for x in $gdb_xml_files; do
1728
    list="$list $source_path/gdb-xml/$x"
1729
  done
1730
fi
1731
echo "TARGET_XML_FILES=$list" >> $config_mak
1732

    
1733
if test "$target_cpu" = "arm" \
1734
     -o "$target_cpu" = "armeb" \
1735
     -o "$target_cpu" = "m68k" \
1736
     -o "$target_cpu" = "mips" \
1737
     -o "$target_cpu" = "mipsel" \
1738
     -o "$target_cpu" = "mipsn32" \
1739
     -o "$target_cpu" = "mipsn32el" \
1740
     -o "$target_cpu" = "mips64" \
1741
     -o "$target_cpu" = "mips64el" \
1742
     -o "$target_cpu" = "ppc" \
1743
     -o "$target_cpu" = "ppc64" \
1744
     -o "$target_cpu" = "ppc64abi32" \
1745
     -o "$target_cpu" = "ppcemb" \
1746
     -o "$target_cpu" = "sparc" \
1747
     -o "$target_cpu" = "sparc64" \
1748
     -o "$target_cpu" = "sparc32plus"; then
1749
  echo "CONFIG_SOFTFLOAT=yes" >> $config_mak
1750
  echo "#define CONFIG_SOFTFLOAT 1" >> $config_h
1751
fi
1752
if test "$target_user_only" = "yes" -a "$bflt" = "yes"; then
1753
  echo "TARGET_HAS_BFLT=yes" >> $config_mak
1754
  echo "#define TARGET_HAS_BFLT 1" >> $config_h
1755
fi
1756
if test "$target_user_only" = "yes" \
1757
        -a "$nptl" = "yes" -a "$target_nptl" = "yes"; then
1758
  echo "#define USE_NPTL 1" >> $config_h
1759
fi
1760
# 32 bit ELF loader in addition to native 64 bit loader?
1761
if test "$target_user_only" = "yes" -a "$elfload32" = "yes"; then
1762
  echo "TARGET_HAS_ELFLOAD32=yes" >> $config_mak
1763
  echo "#define TARGET_HAS_ELFLOAD32 1" >> $config_h
1764
fi
1765
if test "$target_bsd_user" = "yes" ; then
1766
  echo "CONFIG_BSD_USER=yes" >> $config_mak
1767
  echo "#define CONFIG_BSD_USER 1" >> $config_h
1768
fi
1769

    
1770
test -f ${config_h}~ && cmp -s $config_h ${config_h}~ && mv ${config_h}~ $config_h
1771

    
1772
done # for target in $targets
1773

    
1774
# build tree in object directory if source path is different from current one
1775
if test "$source_path_used" = "yes" ; then
1776
    DIRS="tests tests/cris slirp audio"
1777
    FILES="Makefile tests/Makefile"
1778
    FILES="$FILES tests/cris/Makefile tests/cris/.gdbinit"
1779
    FILES="$FILES tests/test-mmap.c"
1780
    for dir in $DIRS ; do
1781
            mkdir -p $dir
1782
    done
1783
    # remove the link and recreate it, as not all "ln -sf" overwrite the link
1784
    for f in $FILES ; do
1785
        rm -f $f
1786
        ln -s $source_path/$f $f
1787
    done
1788
fi