~steve-sk2/mingw-w64/oneiric

« back to all changes in this revision

Viewing changes to mingw-w64-headers/configure

  • Committer: Bazaar Package Importer
  • Author(s): Stephen Kitt
  • Date: 2010-11-18 00:04:46 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20101118000446-xe24b423su55onyl
Tags: 1.0+20101003-1
* New maintainer. (Closes: #594371.)
* New upstream snapshot:
  - Includes getopt.h. (Closes: #569914.)
* Build g++ for Win64. (Closes: #600451.)
* Standards-Version 3.9.1 (new packaging).
* Include patch from
  http://mingw-w64.svn.sourceforge.net/viewvc/mingw-w64?view=revision&revision=3715
  as suggested by Rafaël Carré.

Show diffs side-by-side

added added

removed removed

Lines of Context:
556
556
PACKAGE_BUGREPORT='mingw-w64-public@lists.sourceforge.net'
557
557
PACKAGE_URL=''
558
558
 
559
 
ac_unique_file="crt/_mingw.h"
 
559
ac_unique_file="include/_mingw.h"
560
560
ac_subst_vars='LTLIBOBJS
561
561
LIBOBJS
562
 
MINGW_HAS_DDK
563
562
DDKHEAD_LIST
564
 
MINGW_HAS_DX
565
563
DXHEAD_LIST
566
 
ENABLE_CRT_FALSE
567
 
ENABLE_CRT_TRUE
568
564
SDKSHEAD_LIST
 
565
SECSYSHEAD_LIST
 
566
SECHEAD_LIST
 
567
SYSHEAD_LIST
 
568
MINGWHELPERHEAD_LIST
569
569
GLHEAD_LIST
570
570
BASEHEAD_LIST
571
571
host_os
576
576
build_vendor
577
577
build_cpu
578
578
build
 
579
MAINT
 
580
MAINTAINER_MODE_FALSE
 
581
MAINTAINER_MODE_TRUE
579
582
am__untar
580
583
am__tar
581
584
AMTAR
640
643
ac_subst_files=''
641
644
ac_user_opts='
642
645
enable_option_checking
643
 
enable_crt
644
 
enable_sdk
 
646
enable_maintainer_mode
 
647
with_sdk
645
648
'
646
649
      ac_precious_vars='build_alias
647
650
host_alias
1266
1269
  --disable-option-checking  ignore unrecognized --enable/--with options
1267
1270
  --disable-FEATURE       do not include FEATURE (same as --enable-FEATURE=no)
1268
1271
  --enable-FEATURE[=ARG]  include FEATURE [ARG=yes]
1269
 
  --disable-crt           Do not use the default crt headers
1270
 
  --enable-sdk=ARG        Add the desired SDK, where ARG can be one of ddk,
 
1272
  --enable-maintainer-mode  enable make rules and dependencies not useful
 
1273
                          (and sometimes confusing) to the casual installer
 
1274
 
 
1275
Optional Packages:
 
1276
  --with-PACKAGE[=ARG]    use PACKAGE [ARG=yes]
 
1277
  --without-PACKAGE       do not use PACKAGE (same as --with-PACKAGE=no)
 
1278
  --with-sdk=ARG          Add the desired SDK, where ARG can be one of ddk,
1271
1279
                          directx, or all
1272
1280
 
1273
1281
Report bugs to <mingw-w64-public@lists.sourceforge.net>.
2203
2211
 
2204
2212
 
2205
2213
 
 
2214
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to enable maintainer-specific portions of Makefiles" >&5
 
2215
$as_echo_n "checking whether to enable maintainer-specific portions of Makefiles... " >&6; }
 
2216
    # Check whether --enable-maintainer-mode was given.
 
2217
if test "${enable_maintainer_mode+set}" = set; then :
 
2218
  enableval=$enable_maintainer_mode; USE_MAINTAINER_MODE=$enableval
 
2219
else
 
2220
  USE_MAINTAINER_MODE=no
 
2221
fi
 
2222
 
 
2223
  { $as_echo "$as_me:${as_lineno-$LINENO}: result: $USE_MAINTAINER_MODE" >&5
 
2224
$as_echo "$USE_MAINTAINER_MODE" >&6; }
 
2225
   if test $USE_MAINTAINER_MODE = yes; then
 
2226
  MAINTAINER_MODE_TRUE=
 
2227
  MAINTAINER_MODE_FALSE='#'
 
2228
else
 
2229
  MAINTAINER_MODE_TRUE='#'
 
2230
  MAINTAINER_MODE_FALSE=
 
2231
fi
 
2232
 
 
2233
  MAINT=$MAINTAINER_MODE_TRUE
 
2234
 
 
2235
 
 
2236
 
2206
2237
# Make sure we can run config.sub.
2207
2238
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
2208
2239
  as_fn_error "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5
2281
2312
 
2282
2313
# Checks for header files.
2283
2314
 
2284
 
GLHEAD_LIST=$srcdir/include/GL/*.h
2285
2315
BASEHEAD_LIST=$srcdir/include/*.h
2286
 
for i in c dlg h16 hxx rh ver; do
 
2316
for i in dlg h16 hxx rh ver; do
2287
2317
  BASEHEAD_LIST="$BASEHEAD_LIST "$srcdir/include/*.$i
2288
2318
done
2289
2319
#FIXME: Add in base directx
2290
2320
 
2291
 
 
2292
 
 
2293
 
 
2294
 
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for c-runtime headers" >&5
2295
 
$as_echo_n "checking for c-runtime headers... " >&6; }
2296
 
# Check whether --enable-crt was given.
2297
 
if test "${enable_crt+set}" = set; then :
2298
 
  enableval=$enable_crt;
2299
 
else
2300
 
  enable_crt=yes
2301
 
fi
2302
 
 
2303
 
 if test x$enable_crt=xyes; then
2304
 
  ENABLE_CRT_TRUE=
2305
 
  ENABLE_CRT_FALSE='#'
2306
 
else
2307
 
  ENABLE_CRT_TRUE='#'
2308
 
  ENABLE_CRT_FALSE=
2309
 
fi
2310
 
 
2311
 
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_crt" >&5
2312
 
$as_echo "$enable_crt" >&6; }
 
2321
SYSHEAD_LIST=$srcdir/include/sys/*.h
 
2322
SECHEAD_LIST=$srcdir/include/sec_api/*.h
 
2323
SECSYSHEAD_LIST=$srcdir/include/sec_api/sys/*.h
 
2324
GLHEAD_LIST=$srcdir/include/GL/*.h
 
2325
MINGWHELPERHEAD_LIST=$srcdir/include/psdk_inc/*.h
 
2326
 
 
2327
 
 
2328
 
 
2329
 
 
2330
 
 
2331
 
 
2332
 
2313
2333
 
2314
2334
{ $as_echo "$as_me:${as_lineno-$LINENO}: checking for optional sdk headers" >&5
2315
2335
$as_echo_n "checking for optional sdk headers... " >&6; }
2316
 
# Check whether --enable-sdk was given.
2317
 
if test "${enable_sdk+set}" = set; then :
2318
 
  enableval=$enable_sdk;
 
2336
 
 
2337
# Check whether --with-sdk was given.
 
2338
if test "${with_sdk+set}" = set; then :
 
2339
  withval=$with_sdk;
2319
2340
else
2320
 
  enable_sdk=no
 
2341
  with_sdk=no
2321
2342
fi
2322
2343
 
2323
 
case $enable_sdk in #(
 
2344
case $with_sdk in #(
2324
2345
  all|yes) :
2325
2346
 
2326
 
    enable_sdk="ddk,directx"
2327
 
    enable_ddk=yes
2328
 
    enable_directx=yes ;; #(
 
2347
    with_sdk="ddk,directx"
 
2348
    with_ddk=yes
 
2349
    with_directx=yes ;; #(
2329
2350
  ddk) :
2330
2351
 
2331
 
    enable_ddk=yes
2332
 
    enable_directx=no ;; #(
 
2352
    with_ddk=yes
 
2353
    with_directx=no ;; #(
2333
2354
  directx) :
2334
2355
 
2335
 
    enable_ddk=no
2336
 
    enable_directx=yes ;; #(
 
2356
    with_ddk=no
 
2357
    with_directx=yes ;; #(
2337
2358
  no) :
2338
2359
 
2339
 
    enable_ddk=no
2340
 
    enable_directx=no ;; #(
 
2360
    with_ddk=no
 
2361
    with_directx=no ;; #(
2341
2362
  *) :
2342
 
    as_fn_error "Invalid option: $enable_sdk.  Please choose one of ddk, directx, or all." "$LINENO" 5 ;;
 
2363
    as_fn_error "Invalid option: $with_sdk.  Please choose one of ddk, directx, or all." "$LINENO" 5 ;;
2343
2364
esac
2344
 
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_sdk" >&5
2345
 
$as_echo "$enable_sdk" >&6; }
2346
 
 
2347
 
MINGW_HAS_DX=0
2348
 
MINGW_HAS_DDK=0
2349
 
 
2350
 
if test $enable_directx = yes; then :
 
2365
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_sdk" >&5
 
2366
$as_echo "$with_sdk" >&6; }
 
2367
 
 
2368
if test $with_directx = yes; then :
2351
2369
 
2352
2370
  DXHEAD_LIST=$srcdir/direct-x/include/*.[hi]*
2353
 
  MINGW_HAS_DX=1
 
2371
  SDKSHEAD_LIST=$srcdir/direct-x/include/sdks/*.h
 
2372
else
 
2373
  SDKSHEAD_LIST=$srcdir/include/sdks/*.h
2354
2374
fi
2355
2375
 
2356
2376
 
2357
 
 
2358
 
if test $enable_ddk = yes; then :
 
2377
if test $with_ddk = yes; then :
2359
2378
 
2360
2379
  DDKHEAD_LIST=$srcdir/ddk/include/ddk/*.h
2361
 
  MINGW_HAS_DDK=1
 
2380
  SDKSHEAD_LIST="$SDKSHEAD_LIST "$srcdir/ddk/include/sdks/*.h
2362
2381
fi
2363
2382
 
2364
2383
 
2367
2386
 
2368
2387
# Checks for library functions.
2369
2388
 
2370
 
ac_config_files="$ac_config_files Makefile crt/sdks/_mingw_directx.h crt/sdks/_mingw_ddk.h"
 
2389
ac_config_files="$ac_config_files Makefile"
2371
2390
 
2372
2391
cat >confcache <<\_ACEOF
2373
2392
# This file is a shell script that caches the results of configure
2467
2486
 
2468
2487
 
2469
2488
 
2470
 
if test -z "${ENABLE_CRT_TRUE}" && test -z "${ENABLE_CRT_FALSE}"; then
2471
 
  as_fn_error "conditional \"ENABLE_CRT\" was never defined.
 
2489
if test -z "${MAINTAINER_MODE_TRUE}" && test -z "${MAINTAINER_MODE_FALSE}"; then
 
2490
  as_fn_error "conditional \"MAINTAINER_MODE\" was never defined.
2472
2491
Usually this means the macro was only invoked conditionally." "$LINENO" 5
2473
2492
fi
2474
2493
 
3061
3080
  case $ac_config_target in
3062
3081
    "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;;
3063
3082
    "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;;
3064
 
    "crt/sdks/_mingw_directx.h") CONFIG_FILES="$CONFIG_FILES crt/sdks/_mingw_directx.h" ;;
3065
 
    "crt/sdks/_mingw_ddk.h") CONFIG_FILES="$CONFIG_FILES crt/sdks/_mingw_ddk.h" ;;
3066
3083
 
3067
3084
  *) as_fn_error "invalid argument: \`$ac_config_target'" "$LINENO" 5;;
3068
3085
  esac
3678
3695
$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
3679
3696
fi
3680
3697
 
 
3698