15438 lines
512 KiB
Plaintext
15438 lines
512 KiB
Plaintext
----------------------------------------------------------------------
|
|
Patch name: patch.perf-regparm-cclark
|
|
Author: Conn Clark
|
|
Date: Mon Mar 3 01:46:10 CET 2003
|
|
Status: Applied to main code
|
|
|
|
Detailed description:
|
|
|
|
Here is the patch for my modifications to source in bochs-2.0.1.tar.gz.
|
|
All my changes were done to this code except I did update the vga.cc and
|
|
vga.h files from the CVS tree in a failed attempt to 8 bit color
|
|
working. The patch was generated by using the command "diff -u" if it
|
|
wasn't done right let me know and I will try again. (I have only created
|
|
a patch once before in my life and I did it wrong)
|
|
|
|
Basicly I have found that Bochs, like all other large properly written
|
|
well organized programs (No offense), spends a good portion of its time
|
|
just passing parameters from one function to another. To reduce the
|
|
effect of this I have used the GCC function atribute "regparm(n)" to
|
|
declare that certain functions use the register calling convention. The
|
|
"n" in "regparm(n)" is the number of variables to pass in registers.
|
|
All other code and logic in bochs were left untouched. Note that as far
|
|
as I know this only works on GCC 3.2.X for X86 processors. Also note
|
|
that there is a trick to using it that is not well documented in the gcc
|
|
man pages. See examples below for implementation details.
|
|
|
|
|
|
/**** Normal code ****/
|
|
|
|
/* funct declaration */
|
|
int foo(int a, int b, int c, int d);
|
|
|
|
/* function */
|
|
int
|
|
foo( int a, int b, int c, int d)
|
|
{
|
|
int e;
|
|
|
|
e = a + b + c + d;
|
|
|
|
return e;
|
|
}
|
|
|
|
|
|
|
|
/**** Code using function attribute ****/
|
|
|
|
/* funct declaration */
|
|
int foo(int a, int b, int c, int d) __attribute__((regparm(3)));
|
|
|
|
/* function */
|
|
int __attribute__((regparm(3)))
|
|
foo( int a, int b, int c, int d)
|
|
{
|
|
int e;
|
|
|
|
e = a + b + c;
|
|
e -= d;
|
|
|
|
return e;
|
|
}
|
|
|
|
The trick is you put the function attribute after the function
|
|
declaration and before its terminating semi-colon. However in the
|
|
function you place it after the return type and before the function name.
|
|
|
|
The behavior of the above example is as follows varables a, b, and c
|
|
are passed in registers and d is passed on the stack (I think, if I'm
|
|
wrong a is passed on the stack). The best canidates to apply this
|
|
optimization to are functions that make immeadiate use of the registered
|
|
variables. functions that do not use the registered variables right away
|
|
may have to store the variables to the stack temporarily which may(but
|
|
not always) result in slower code for the function. This may still
|
|
create an overall benefit because using the register calling convention
|
|
may speed up the function calling this one offsetting the penalty.
|
|
|
|
The one place in Bochs where I think the register calling convention
|
|
may do some real good is the individual functions for each instruction
|
|
and the Resolve??Mod?Rm functions. I did not get this to work succesfuly
|
|
when I attempted it the first time so I gave up and applied the
|
|
optimization to everything else I could. It should be possible though I
|
|
just am not quite familiar with the code to pull it off yet.
|
|
|
|
|
|
Here are the extra compiler flags I used to create my executable with.
|
|
|
|
-O2 -march=pentium2 -mmmx -fthread-jumps -fexpensive-optimizations
|
|
-frename-registers -fomit-frame-pointer -finline-functions
|
|
-minline-all-stringops
|
|
|
|
This may effect which functions it pays to use the register calling
|
|
convention with. The only real way to tell is to look at the assembly
|
|
code generated for the function and mabey the calling function or to
|
|
benchmark bochs for each function changed. It tends to help more than
|
|
hinder.
|
|
|
|
Here are some details on the machine I used.
|
|
All the work I did was on an overclocked 416 MHz dual processor ( I
|
|
know the second processor doesn't help) pentium2 with 512MB of 75Mhz
|
|
SDRAM and a PCI Diamond stealth 3D 3000 (Ancient I know, but in its day
|
|
it rocked). The Os is Red hat 8.0 patched up to date as of 1/10/03 .
|
|
Redhat 8.0 uses GCC 3.2.1 .
|
|
|
|
My IPS was about 4000000 before I tampered with the source and now its
|
|
about 5000000.
|
|
|
|
I don't know how you think this could be implemented in a way that looks
|
|
nice and works for every one not using Linux on an X86, but good luck. I
|
|
just hope this helps somebody.
|
|
|
|
If you have any questions let me know,
|
|
|
|
Conn
|
|
|
|
-----------------------------
|
|
|
|
In reading through this one more time I have noticed that I forgot to
|
|
mention what options I specified for ./configure . This patch may not
|
|
work with some of the other configurations. Here they are.
|
|
|
|
--enable-new-pit --enable-ne2000 --enable-pci --enable-4meg-pages
|
|
--enable-pae --enable-guest2host-tlb --enable-repeat-speedups
|
|
--enable-icache --enable-global-pages --enable-host-specific-asms
|
|
--enable-vbe --enable-mmx --enable-fpu --enable-cdrom --enable-sse
|
|
--enable-sb16=linux --with-x11 --enable-all-optimizations --disable-plugins
|
|
|
|
|
|
-----------------------------
|
|
|
|
Notes from cbothamy :
|
|
- added a "--enable-fast-function-call" to configure
|
|
- enable-fast-function-call if --enable-all-optimizations
|
|
- changed all __attribute__((regparm(X))) to BX_CPP_AttrRegparmN(X)
|
|
- #define BX_CPP_AttrRegparmN(X) to __attribute__((regparm(X))) only on x86 with gcc > 2.95
|
|
- performance improvement is about 6%
|
|
|
|
Patch was created with:
|
|
cvs diff -u
|
|
Apply patch to what version:
|
|
cvs checked out on Mon Mar 3 01:26:38 CET 2003
|
|
Instructions:
|
|
To patch, go to main bochs directory.
|
|
Type "patch -p0 < THIS_PATCH_FILE".
|
|
----------------------------------------------------------------------
|
|
Index: pc_system.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/pc_system.cc,v
|
|
retrieving revision 1.32
|
|
diff -u -r1.32 pc_system.cc
|
|
--- pc_system.cc 14 Feb 2003 04:22:16 -0000 1.32
|
|
+++ pc_system.cc 2 Mar 2003 23:28:03 -0000
|
|
@@ -128,7 +128,7 @@
|
|
// Read from the IO memory address space
|
|
//
|
|
|
|
- Bit32u
|
|
+ Bit32u BX_CPP_AttrRegparmN(2)
|
|
bx_pc_system_c::inp(Bit16u addr, unsigned io_len)
|
|
{
|
|
Bit32u ret;
|
|
@@ -143,13 +143,13 @@
|
|
// Write to the IO memory address space.
|
|
//
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
bx_pc_system_c::outp(Bit16u addr, Bit32u value, unsigned io_len)
|
|
{
|
|
bx_devices.outp(addr, value, io_len);
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
bx_pc_system_c::set_enable_a20(Bit8u value)
|
|
{
|
|
#if BX_CPU_LEVEL < 2
|
|
Index: pc_system.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/pc_system.h,v
|
|
retrieving revision 1.24
|
|
diff -u -r1.24 pc_system.h
|
|
--- pc_system.h 14 Feb 2003 04:22:16 -0000 1.24
|
|
+++ pc_system.h 2 Mar 2003 23:28:03 -0000
|
|
@@ -190,9 +190,9 @@
|
|
|
|
bx_pc_system_c(void);
|
|
|
|
- Bit32u inp(Bit16u addr, unsigned io_len);
|
|
- void outp(Bit16u addr, Bit32u value, unsigned io_len);
|
|
- void set_enable_a20(Bit8u value);
|
|
+ Bit32u inp(Bit16u addr, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
|
+ void outp(Bit16u addr, Bit32u value, unsigned io_len) BX_CPP_AttrRegparmN(3);
|
|
+ void set_enable_a20(Bit8u value) BX_CPP_AttrRegparmN(1);
|
|
bx_bool get_enable_a20(void);
|
|
void exit(void);
|
|
|
|
Index: cpu/access.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/access.cc,v
|
|
retrieving revision 1.38
|
|
diff -u -r1.38 access.cc
|
|
--- cpu/access.cc 28 Feb 2003 20:50:54 -0000 1.38
|
|
+++ cpu/access.cc 2 Mar 2003 23:28:07 -0000
|
|
@@ -46,7 +46,7 @@
|
|
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::write_virtual_checks(bx_segment_reg_t *seg, bx_address offset,
|
|
unsigned length)
|
|
{
|
|
@@ -139,7 +139,7 @@
|
|
}
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_virtual_checks(bx_segment_reg_t *seg, bx_address offset,
|
|
unsigned length)
|
|
{
|
|
@@ -261,7 +261,7 @@
|
|
|
|
|
|
|
|
- char *
|
|
+ char * BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::strseg(bx_segment_reg_t *seg)
|
|
{
|
|
if (seg == &BX_CPU_THIS_PTR sregs[0]) return("ES");
|
|
@@ -277,7 +277,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::write_virtual_byte(unsigned s, bx_address offset, Bit8u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -342,7 +342,7 @@
|
|
goto accessOK;
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::write_virtual_word(unsigned s, bx_address offset, Bit16u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -409,7 +409,7 @@
|
|
goto accessOK;
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::write_virtual_dword(unsigned s, bx_address offset, Bit32u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -477,7 +477,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_virtual_byte(unsigned s, bx_address offset, Bit8u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -529,7 +529,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_virtual_word(unsigned s, bx_address offset, Bit16u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -583,7 +583,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_virtual_dword(unsigned s, bx_address offset, Bit32u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -642,7 +642,7 @@
|
|
// address translation info is kept across read/write calls //
|
|
//////////////////////////////////////////////////////////////
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_RMW_virtual_byte(unsigned s, bx_address offset, Bit8u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -711,7 +711,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_RMW_virtual_word(unsigned s, bx_address offset, Bit16u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -779,7 +779,7 @@
|
|
goto accessOK;
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_RMW_virtual_dword(unsigned s, bx_address offset, Bit32u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -847,7 +847,7 @@
|
|
goto accessOK;
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::write_RMW_virtual_byte(Bit8u val8)
|
|
{
|
|
if (BX_CPU_THIS_PTR address_xlation.pages > 2) {
|
|
@@ -862,7 +862,7 @@
|
|
}
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::write_RMW_virtual_word(Bit16u val16)
|
|
{
|
|
if (BX_CPU_THIS_PTR address_xlation.pages > 2) {
|
|
@@ -925,7 +925,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::write_virtual_qword(unsigned s, bx_address offset, Bit64u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -993,7 +993,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_virtual_qword(unsigned s, bx_address offset, Bit64u *data)
|
|
{
|
|
bx_address laddr;
|
|
@@ -1081,7 +1081,7 @@
|
|
}
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::read_RMW_virtual_qword(unsigned s, bx_address offset, Bit64u *data)
|
|
{
|
|
bx_address laddr;
|
|
Index: cpu/cpu.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/cpu.h,v
|
|
retrieving revision 1.131
|
|
diff -u -r1.131 cpu.h
|
|
--- cpu/cpu.h 28 Feb 2003 02:37:18 -0000 1.131
|
|
+++ cpu/cpu.h 2 Mar 2003 23:28:18 -0000
|
|
@@ -2687,23 +2687,23 @@
|
|
BX_CPU_THIS_PTR eipPageWindowSize = 0;
|
|
}
|
|
|
|
- BX_SMF void write_virtual_checks(bx_segment_reg_t *seg, bx_address offset, unsigned length);
|
|
- BX_SMF void read_virtual_checks(bx_segment_reg_t *seg, bx_address offset, unsigned length);
|
|
- BX_SMF void write_virtual_byte(unsigned seg, bx_address offset, Bit8u *data);
|
|
- BX_SMF void write_virtual_word(unsigned seg, bx_address offset, Bit16u *data);
|
|
- BX_SMF void write_virtual_dword(unsigned seg, bx_address offset, Bit32u *data);
|
|
- BX_SMF void write_virtual_qword(unsigned seg, bx_address offset, Bit64u *data);
|
|
- BX_SMF void read_virtual_byte(unsigned seg, bx_address offset, Bit8u *data);
|
|
- BX_SMF void read_virtual_word(unsigned seg, bx_address offset, Bit16u *data);
|
|
- BX_SMF void read_virtual_dword(unsigned seg, bx_address offset, Bit32u *data);
|
|
- BX_SMF void read_virtual_qword(unsigned seg, bx_address offset, Bit64u *data);
|
|
-
|
|
- BX_SMF void read_RMW_virtual_byte(unsigned seg, bx_address offset, Bit8u *data);
|
|
- BX_SMF void read_RMW_virtual_word(unsigned seg, bx_address offset, Bit16u *data);
|
|
- BX_SMF void read_RMW_virtual_dword(unsigned seg, bx_address offset, Bit32u *data);
|
|
- BX_SMF void read_RMW_virtual_qword(unsigned seg, bx_address offset, Bit64u *data);
|
|
- BX_SMF void write_RMW_virtual_byte(Bit8u val8);
|
|
- BX_SMF void write_RMW_virtual_word(Bit16u val16);
|
|
+ BX_SMF void write_virtual_checks(bx_segment_reg_t *seg, bx_address offset, unsigned length) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_virtual_checks(bx_segment_reg_t *seg, bx_address offset, unsigned length) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void write_virtual_byte(unsigned seg, bx_address offset, Bit8u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void write_virtual_word(unsigned seg, bx_address offset, Bit16u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void write_virtual_dword(unsigned seg, bx_address offset, Bit32u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void write_virtual_qword(unsigned seg, bx_address offset, Bit64u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_virtual_byte(unsigned seg, bx_address offset, Bit8u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_virtual_word(unsigned seg, bx_address offset, Bit16u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_virtual_dword(unsigned seg, bx_address offset, Bit32u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_virtual_qword(unsigned seg, bx_address offset, Bit64u *data) BX_CPP_AttrRegparmN(3);
|
|
+
|
|
+ BX_SMF void read_RMW_virtual_byte(unsigned seg, bx_address offset, Bit8u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_RMW_virtual_word(unsigned seg, bx_address offset, Bit16u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_RMW_virtual_dword(unsigned seg, bx_address offset, Bit32u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void read_RMW_virtual_qword(unsigned seg, bx_address offset, Bit64u *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void write_RMW_virtual_byte(Bit8u val8) BX_CPP_AttrRegparmN(1);
|
|
+ BX_SMF void write_RMW_virtual_word(Bit16u val16) BX_CPP_AttrRegparmN(1);
|
|
BX_SMF void write_RMW_virtual_dword(Bit32u val32);
|
|
BX_SMF void write_RMW_virtual_qword(Bit64u val64);
|
|
|
|
@@ -2721,13 +2721,13 @@
|
|
|
|
|
|
BX_SMF void access_linear(bx_address address, unsigned length, unsigned pl,
|
|
- unsigned rw, void *data);
|
|
- BX_SMF Bit32u itranslate_linear(bx_address laddr, unsigned pl);
|
|
- BX_SMF Bit32u dtranslate_linear(bx_address laddr, unsigned pl, unsigned rw);
|
|
+ unsigned rw, void *data) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF Bit32u itranslate_linear(bx_address laddr, unsigned pl) BX_CPP_AttrRegparmN(2);
|
|
+ BX_SMF Bit32u dtranslate_linear(bx_address laddr, unsigned pl, unsigned rw) BX_CPP_AttrRegparmN(3);
|
|
BX_SMF void TLB_flush(bx_bool invalidateGlobal);
|
|
BX_SMF void TLB_init(void);
|
|
BX_SMF void set_INTR(bx_bool value);
|
|
- BX_SMF char *strseg(bx_segment_reg_t *seg);
|
|
+ BX_SMF char *strseg(bx_segment_reg_t *seg) BX_CPP_AttrRegparmN(1);
|
|
BX_SMF void interrupt(Bit8u vector, bx_bool is_INT, bx_bool is_error_code,
|
|
Bit16u error_code);
|
|
#if BX_CPU_LEVEL >= 2
|
|
@@ -2736,17 +2736,17 @@
|
|
#endif
|
|
BX_SMF int int_number(bx_segment_reg_t *seg);
|
|
BX_SMF void shutdown_cpu(void);
|
|
- BX_SMF void CR3_change(bx_address value);
|
|
- BX_SMF void pagingCR0Changed(Bit32u oldCR0, Bit32u newCR0);
|
|
- BX_SMF void pagingCR4Changed(Bit32u oldCR4, Bit32u newCR4);
|
|
+ BX_SMF void CR3_change(bx_address value) BX_CPP_AttrRegparmN(1);
|
|
+ BX_SMF void pagingCR0Changed(Bit32u oldCR0, Bit32u newCR0) BX_CPP_AttrRegparmN(2);
|
|
+ BX_SMF void pagingCR4Changed(Bit32u oldCR4, Bit32u newCR4) BX_CPP_AttrRegparmN(2);
|
|
BX_SMF void pagingA20Changed(void);
|
|
|
|
BX_SMF void reset(unsigned source);
|
|
|
|
- BX_SMF void jump_protected(bxInstruction_c *, Bit16u cs, bx_address disp);
|
|
- BX_SMF void call_protected(bxInstruction_c *, Bit16u cs, bx_address disp);
|
|
- BX_SMF void return_protected(bxInstruction_c *, Bit16u pop_bytes);
|
|
- BX_SMF void iret_protected(bxInstruction_c *);
|
|
+ BX_SMF void jump_protected(bxInstruction_c *, Bit16u cs, bx_address disp) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void call_protected(bxInstruction_c *, Bit16u cs, bx_address disp) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void return_protected(bxInstruction_c *, Bit16u pop_bytes) BX_CPP_AttrRegparmN(2);
|
|
+ BX_SMF void iret_protected(bxInstruction_c *) BX_CPP_AttrRegparmN(1);
|
|
BX_SMF void validate_seg_regs(void);
|
|
BX_SMF void stack_return_to_v86(Bit32u new_eip, Bit32u raw_cs_selector,
|
|
Bit32u flags32);
|
|
@@ -2761,38 +2761,38 @@
|
|
#if BX_SUPPORT_X86_64
|
|
BX_SMF void get_RSP_from_TSS(unsigned pl, Bit64u *rsp);
|
|
#endif
|
|
- BX_SMF void write_flags(Bit16u flags, bx_bool change_IOPL, bx_bool change_IF);
|
|
+ BX_SMF void write_flags(Bit16u flags, bx_bool change_IOPL, bx_bool change_IF) BX_CPP_AttrRegparmN(3);
|
|
BX_SMF void write_eflags(Bit32u eflags, bx_bool change_IOPL, bx_bool change_IF,
|
|
bx_bool change_VM, bx_bool change_RF);
|
|
- BX_SMF void writeEFlags(Bit32u eflags, Bit32u changeMask); // Newer variant.
|
|
+ BX_SMF void writeEFlags(Bit32u eflags, Bit32u changeMask) BX_CPP_AttrRegparmN(2); // Newer variant.
|
|
BX_SMF Bit16u read_flags(void);
|
|
BX_SMF Bit32u read_eflags(void);
|
|
BX_SMF Bit32u get_segment_base(unsigned seg);
|
|
|
|
- BX_SMF Bit8u inp8(Bit16u addr);
|
|
- BX_SMF void outp8(Bit16u addr, Bit8u value);
|
|
- BX_SMF Bit16u inp16(Bit16u addr);
|
|
- BX_SMF void outp16(Bit16u addr, Bit16u value);
|
|
- BX_SMF Bit32u inp32(Bit16u addr);
|
|
- BX_SMF void outp32(Bit16u addr, Bit32u value);
|
|
+ BX_SMF Bit8u inp8(Bit16u addr) BX_CPP_AttrRegparmN(1);
|
|
+ BX_SMF void outp8(Bit16u addr, Bit8u value) BX_CPP_AttrRegparmN(2);
|
|
+ BX_SMF Bit16u inp16(Bit16u addr) BX_CPP_AttrRegparmN(1);
|
|
+ BX_SMF void outp16(Bit16u addr, Bit16u value) BX_CPP_AttrRegparmN(2);
|
|
+ BX_SMF Bit32u inp32(Bit16u addr) BX_CPP_AttrRegparmN(1);
|
|
+ BX_SMF void outp32(Bit16u addr, Bit32u value) BX_CPP_AttrRegparmN(2);
|
|
BX_SMF bx_bool allow_io(Bit16u addr, unsigned len);
|
|
BX_SMF void enter_protected_mode(void);
|
|
BX_SMF void enter_real_mode(void);
|
|
- BX_SMF void parse_selector(Bit16u raw_selector, bx_selector_t *selector);
|
|
- BX_SMF void parse_descriptor(Bit32u dword1, Bit32u dword2, bx_descriptor_t *temp);
|
|
+ BX_SMF void parse_selector(Bit16u raw_selector, bx_selector_t *selector) BX_CPP_AttrRegparmN(2);
|
|
+ BX_SMF void parse_descriptor(Bit32u dword1, Bit32u dword2, bx_descriptor_t *temp) BX_CPP_AttrRegparmN(3);
|
|
BX_SMF void load_ldtr(bx_selector_t *selector, bx_descriptor_t *descriptor);
|
|
- BX_SMF void load_cs(bx_selector_t *selector, bx_descriptor_t *descriptor, Bit8u cpl);
|
|
- BX_SMF void load_ss(bx_selector_t *selector, bx_descriptor_t *descriptor, Bit8u cpl);
|
|
+ BX_SMF void load_cs(bx_selector_t *selector, bx_descriptor_t *descriptor, Bit8u cpl) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void load_ss(bx_selector_t *selector, bx_descriptor_t *descriptor, Bit8u cpl) BX_CPP_AttrRegparmN(3);
|
|
BX_SMF void fetch_raw_descriptor(bx_selector_t *selector,
|
|
- Bit32u *dword1, Bit32u *dword2, Bit8u exception);
|
|
- BX_SMF void load_seg_reg(bx_segment_reg_t *seg, Bit16u new_value);
|
|
+ Bit32u *dword1, Bit32u *dword2, Bit8u exception) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void load_seg_reg(bx_segment_reg_t *seg, Bit16u new_value) BX_CPP_AttrRegparmN(2);
|
|
#if BX_SUPPORT_X86_64
|
|
BX_SMF void loadSRegLMNominal(unsigned seg, unsigned selector,
|
|
bx_address base, unsigned dpl);
|
|
#endif
|
|
BX_SMF bx_bool fetch_raw_descriptor2(bx_selector_t *selector,
|
|
- Bit32u *dword1, Bit32u *dword2);
|
|
- BX_SMF void push_16(Bit16u value16);
|
|
+ Bit32u *dword1, Bit32u *dword2) BX_CPP_AttrRegparmN(3);
|
|
+ BX_SMF void push_16(Bit16u value16) BX_CPP_AttrRegparmN(1);
|
|
BX_SMF void push_32(Bit32u value32);
|
|
#if BX_SUPPORT_X86_64
|
|
BX_SMF void push_64(Bit64u value64);
|
|
@@ -2802,7 +2802,7 @@
|
|
#if BX_SUPPORT_X86_64
|
|
BX_SMF void pop_64(Bit64u *value64_ptr);
|
|
#endif
|
|
- BX_SMF bx_bool can_push(bx_descriptor_t *descriptor, Bit32u esp, Bit32u bytes);
|
|
+ BX_SMF bx_bool can_push(bx_descriptor_t *descriptor, Bit32u esp, Bit32u bytes) BX_CPP_AttrRegparmN(3);
|
|
BX_SMF bx_bool can_pop(Bit32u bytes);
|
|
BX_SMF void sanity_checks(void);
|
|
|
|
Index: cpu/ctrl_xfer_pro.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/ctrl_xfer_pro.cc,v
|
|
retrieving revision 1.21
|
|
diff -u -r1.21 ctrl_xfer_pro.cc
|
|
--- cpu/ctrl_xfer_pro.cc 3 Oct 2002 04:49:47 -0000 1.21
|
|
+++ cpu/ctrl_xfer_pro.cc 2 Mar 2003 23:28:23 -0000
|
|
@@ -41,7 +41,7 @@
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::jump_protected(bxInstruction_c *i, Bit16u cs_raw, bx_address dispBig)
|
|
{
|
|
bx_descriptor_t descriptor;
|
|
@@ -456,7 +456,7 @@
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::call_protected(bxInstruction_c *i, Bit16u cs_raw, bx_address dispBig)
|
|
{
|
|
bx_selector_t cs_selector;
|
|
@@ -1041,7 +1041,7 @@
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::return_protected(bxInstruction_c *i, Bit16u pop_bytes)
|
|
{
|
|
Bit16u raw_cs_selector, raw_ss_selector;
|
|
@@ -1379,7 +1379,7 @@
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::iret_protected(bxInstruction_c *i)
|
|
{
|
|
Bit16u raw_cs_selector, raw_ss_selector;
|
|
Index: cpu/flag_ctrl_pro.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/flag_ctrl_pro.cc,v
|
|
retrieving revision 1.13
|
|
diff -u -r1.13 flag_ctrl_pro.cc
|
|
--- cpu/flag_ctrl_pro.cc 25 Oct 2002 11:44:35 -0000 1.13
|
|
+++ cpu/flag_ctrl_pro.cc 2 Mar 2003 23:28:24 -0000
|
|
@@ -32,7 +32,7 @@
|
|
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::writeEFlags(Bit32u flags, Bit32u changeMask)
|
|
{
|
|
Bit32u supportMask, newEFlags;
|
|
@@ -58,7 +58,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::write_flags(Bit16u flags, bx_bool change_IOPL, bx_bool change_IF)
|
|
{
|
|
Bit32u changeMask = 0x0dd5;
|
|
Index: cpu/io_pro.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/io_pro.cc,v
|
|
retrieving revision 1.11
|
|
diff -u -r1.11 io_pro.cc
|
|
--- cpu/io_pro.cc 25 Oct 2002 11:44:35 -0000 1.11
|
|
+++ cpu/io_pro.cc 2 Mar 2003 23:28:24 -0000
|
|
@@ -37,7 +37,7 @@
|
|
|
|
|
|
|
|
- Bit16u
|
|
+ Bit16u BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::inp16(Bit16u addr)
|
|
{
|
|
Bit16u ret16;
|
|
@@ -54,7 +54,7 @@
|
|
return( ret16 );
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::outp16(Bit16u addr, Bit16u value)
|
|
{
|
|
/* If CPL <= IOPL, then all IO addresses are accessible.
|
|
@@ -72,7 +72,7 @@
|
|
BX_OUTP(addr, value, 2);
|
|
}
|
|
|
|
- Bit32u
|
|
+ Bit32u BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::inp32(Bit16u addr)
|
|
{
|
|
Bit32u ret32;
|
|
@@ -89,7 +89,7 @@
|
|
return( ret32 );
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::outp32(Bit16u addr, Bit32u value)
|
|
{
|
|
/* If CPL <= IOPL, then all IO addresses are accessible.
|
|
@@ -107,7 +107,7 @@
|
|
BX_OUTP(addr, value, 4);
|
|
}
|
|
|
|
- Bit8u
|
|
+ Bit8u BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::inp8(Bit16u addr)
|
|
{
|
|
Bit8u ret8;
|
|
@@ -125,7 +125,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::outp8(Bit16u addr, Bit8u value)
|
|
{
|
|
/* If CPL <= IOPL, then all IO addresses are accessible.
|
|
Index: cpu/mmx.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/mmx.cc,v
|
|
retrieving revision 1.28
|
|
diff -u -r1.28 mmx.cc
|
|
--- cpu/mmx.cc 9 Jan 2003 05:21:22 -0000 1.28
|
|
+++ cpu/mmx.cc 2 Mar 2003 23:28:29 -0000
|
|
@@ -27,7 +27,8 @@
|
|
|
|
#if BX_SUPPORT_MMX || BX_SUPPORT_SSE != 0
|
|
|
|
-Bit8s SaturateWordSToByteS(Bit16s value)
|
|
+Bit8s BX_CPP_AttrRegparmN(1)
|
|
+SaturateWordSToByteS(Bit16s value)
|
|
{
|
|
/*
|
|
SaturateWordSToByteS converts a signed 16-bit value to a
|
|
@@ -40,7 +41,8 @@
|
|
return value;
|
|
}
|
|
|
|
-Bit16s SaturateDwordSToWordS(Bit32s value)
|
|
+Bit16s BX_CPP_AttrRegparmN(1)
|
|
+SaturateDwordSToWordS(Bit32s value)
|
|
{
|
|
/*
|
|
SaturateDwordSToWordS converts a signed 32-bit value to a
|
|
@@ -54,7 +56,8 @@
|
|
return value;
|
|
}
|
|
|
|
-Bit8u SaturateWordSToByteU(Bit16s value)
|
|
+Bit8u BX_CPP_AttrRegparmN(1)
|
|
+SaturateWordSToByteU(Bit16s value)
|
|
{
|
|
/*
|
|
SaturateWordSToByteU converts a signed 16-bit value to an
|
|
@@ -67,7 +70,8 @@
|
|
return value;
|
|
}
|
|
|
|
-Bit16u SaturateDwordSToWordU(Bit32s value)
|
|
+Bit16u BX_CPP_AttrRegparmN(1)
|
|
+SaturateDwordSToWordU(Bit32s value)
|
|
{
|
|
/*
|
|
SaturateDwordSToWordU converts a signed 32-bit value
|
|
Index: cpu/paging.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/paging.cc,v
|
|
retrieving revision 1.41
|
|
diff -u -r1.41 paging.cc
|
|
--- cpu/paging.cc 28 Feb 2003 02:37:18 -0000 1.41
|
|
+++ cpu/paging.cc 2 Mar 2003 23:28:33 -0000
|
|
@@ -387,7 +387,7 @@
|
|
// ==============================================================
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::pagingCR0Changed(Bit32u oldCR0, Bit32u newCR0)
|
|
{
|
|
// Modification of PG,PE flushes TLB cache according to docs.
|
|
@@ -400,7 +400,7 @@
|
|
BX_INFO(("pagingCR0Changed(0x%x -> 0x%x):", oldCR0, newCR0));
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::pagingCR4Changed(Bit32u oldCR4, Bit32u newCR4)
|
|
{
|
|
// Modification of PGE,PAE,PSE flushes TLB cache according to docs.
|
|
@@ -411,7 +411,7 @@
|
|
BX_INFO(("pagingCR4Changed(0x%x -> 0x%x):", oldCR4, newCR4));
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::CR3_change(bx_address value)
|
|
{
|
|
if (bx_dbg.paging) {
|
|
@@ -570,7 +570,7 @@
|
|
// Translate a linear address to a physical address, for
|
|
// a data access (D)
|
|
|
|
- Bit32u
|
|
+ Bit32u BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::dtranslate_linear(bx_address laddr, unsigned pl, unsigned rw)
|
|
{
|
|
bx_address lpf;
|
|
@@ -994,7 +994,7 @@
|
|
// Translate a linear address to a physical address, for
|
|
// an instruction fetch access (I)
|
|
|
|
- Bit32u
|
|
+ Bit32u BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::itranslate_linear(bx_address laddr, unsigned pl)
|
|
{
|
|
return dtranslate_linear(laddr, pl, BX_READ);
|
|
@@ -1069,7 +1069,7 @@
|
|
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::access_linear(bx_address laddr, unsigned length, unsigned pl,
|
|
unsigned rw, void *data)
|
|
{
|
|
Index: cpu/segment_ctrl_pro.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/segment_ctrl_pro.cc,v
|
|
retrieving revision 1.23
|
|
diff -u -r1.23 segment_ctrl_pro.cc
|
|
--- cpu/segment_ctrl_pro.cc 25 Oct 2002 11:44:35 -0000 1.23
|
|
+++ cpu/segment_ctrl_pro.cc 2 Mar 2003 23:28:35 -0000
|
|
@@ -37,7 +37,7 @@
|
|
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::load_seg_reg(bx_segment_reg_t *seg, Bit16u new_value)
|
|
{
|
|
#if BX_CPU_LEVEL >= 3
|
|
@@ -376,7 +376,7 @@
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::parse_selector(Bit16u raw_selector, bx_selector_t *selector)
|
|
{
|
|
selector->value = raw_selector;
|
|
@@ -386,7 +386,7 @@
|
|
}
|
|
#endif
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::parse_descriptor(Bit32u dword1, Bit32u dword2, bx_descriptor_t *temp)
|
|
{
|
|
Bit8u AR_byte;
|
|
@@ -504,7 +504,7 @@
|
|
}
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
BX_CPU_C::load_ldtr(bx_selector_t *selector, bx_descriptor_t *descriptor)
|
|
{
|
|
/* check for null selector, if so invalidate LDTR */
|
|
@@ -527,7 +527,7 @@
|
|
BX_CPU_THIS_PTR ldtr.cache.valid = 1;
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::load_cs(bx_selector_t *selector, bx_descriptor_t *descriptor,
|
|
Bit8u cpl)
|
|
{
|
|
@@ -559,7 +559,7 @@
|
|
#endif
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::load_ss(bx_selector_t *selector, bx_descriptor_t *descriptor, Bit8u cpl)
|
|
{
|
|
BX_CPU_THIS_PTR sregs[BX_SEG_REG_SS].selector = *selector;
|
|
@@ -581,7 +581,7 @@
|
|
}
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::fetch_raw_descriptor(bx_selector_t *selector,
|
|
Bit32u *dword1, Bit32u *dword2, Bit8u exception_no)
|
|
{
|
|
@@ -624,7 +624,7 @@
|
|
|
|
|
|
|
|
- bx_bool
|
|
+ bx_bool BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::fetch_raw_descriptor2(bx_selector_t *selector,
|
|
Bit32u *dword1, Bit32u *dword2)
|
|
{
|
|
Index: cpu/stack_pro.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/stack_pro.cc,v
|
|
retrieving revision 1.13
|
|
diff -u -r1.13 stack_pro.cc
|
|
--- cpu/stack_pro.cc 26 Feb 2003 00:59:31 -0000 1.13
|
|
+++ cpu/stack_pro.cc 2 Mar 2003 23:28:36 -0000
|
|
@@ -36,7 +36,7 @@
|
|
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
BX_CPU_C::push_16(Bit16u value16)
|
|
{
|
|
BailBigRSP("push_16");
|
|
@@ -240,7 +240,7 @@
|
|
|
|
|
|
#if BX_CPU_LEVEL >= 2
|
|
- bx_bool
|
|
+ bx_bool BX_CPP_AttrRegparmN(3)
|
|
BX_CPU_C::can_push(bx_descriptor_t *descriptor, Bit32u esp, Bit32u bytes)
|
|
{
|
|
#if BX_SUPPORT_X86_64
|
|
Index: cpu/xmm.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/cpu/xmm.h,v
|
|
retrieving revision 1.8
|
|
diff -u -r1.8 xmm.h
|
|
--- cpu/xmm.h 23 Jan 2003 18:33:35 -0000 1.8
|
|
+++ cpu/xmm.h 2 Mar 2003 23:28:37 -0000
|
|
@@ -89,7 +89,7 @@
|
|
is represented by the saturated value -128 (0x80). If it is greater
|
|
than 127, it is represented by the saturated value 127 (0x7F).
|
|
*/
|
|
-Bit8s SaturateWordSToByteS(Bit16s value);
|
|
+Bit8s SaturateWordSToByteS(Bit16s value) BX_CPP_AttrRegparmN(1);
|
|
|
|
/*
|
|
SaturateDwordSToWordS converts a signed 32-bit value to a
|
|
@@ -98,7 +98,7 @@
|
|
greater than 32767, it is represented by the saturated value 32767
|
|
(0x7FFF).
|
|
*/
|
|
-Bit16s SaturateDwordSToWordS(Bit32s value);
|
|
+Bit16s SaturateDwordSToWordS(Bit32s value) BX_CPP_AttrRegparmN(1);
|
|
|
|
/*
|
|
SaturateWordSToByteU converts a signed 16-bit value to an
|
|
@@ -106,7 +106,7 @@
|
|
is represented by the saturated value zero (0x00).If it is greater
|
|
than 255 it is represented by the saturated value 255 (0xFF).
|
|
*/
|
|
-Bit8u SaturateWordSToByteU(Bit16s value);
|
|
+Bit8u SaturateWordSToByteU(Bit16s value) BX_CPP_AttrRegparmN(1);
|
|
|
|
/*
|
|
SaturateDwordSToWordU converts a signed 32-bit value
|
|
@@ -115,6 +115,6 @@
|
|
(0x0000). If it is greater than 65535, it is represented by
|
|
the saturated value 65535 (0xFFFF).
|
|
*/
|
|
-Bit16u SaturateDwordSToWordU(Bit32s value);
|
|
+Bit16u SaturateDwordSToWordU(Bit32s value) BX_CPP_AttrRegparmN(1);
|
|
|
|
#endif
|
|
Index: fpu/fpu_proto.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/fpu/fpu_proto.h,v
|
|
retrieving revision 1.4
|
|
diff -u -r1.4 fpu_proto.h
|
|
--- fpu/fpu_proto.h 6 Oct 2001 04:35:13 -0000 1.4
|
|
+++ fpu/fpu_proto.h 2 Mar 2003 23:28:38 -0000
|
|
@@ -93,20 +93,20 @@
|
|
extern void FPU_etc(void);
|
|
/* fpu_tags.c */
|
|
extern int FPU_gettag0(void);
|
|
-extern int FPU_gettagi(int stnr);
|
|
-extern int FPU_gettag(int regnr);
|
|
-extern void FPU_settag0(int tag);
|
|
-extern void FPU_settagi(int stnr, int tag);
|
|
-extern void FPU_settag(int regnr, int tag);
|
|
-extern int FPU_Special(FPU_REG const *ptr);
|
|
-extern int isNaN(FPU_REG const *ptr);
|
|
+extern int FPU_gettagi(int stnr) BX_CPP_AttrRegparmN(1);
|
|
+extern int FPU_gettag(int regnr) BX_CPP_AttrRegparmN(1);
|
|
+extern void FPU_settag0(int tag) BX_CPP_AttrRegparmN(1);
|
|
+extern void FPU_settagi(int stnr, int tag) BX_CPP_AttrRegparmN(2);
|
|
+extern void FPU_settag(int regnr, int tag) BX_CPP_AttrRegparmN(2);
|
|
+extern int FPU_Special(FPU_REG const *ptr) BX_CPP_AttrRegparmN(1);
|
|
+extern int isNaN(FPU_REG const *ptr) BX_CPP_AttrRegparmN(1);
|
|
extern void FPU_pop(void);
|
|
-extern int FPU_empty_i(int stnr);
|
|
+extern int FPU_empty_i(int stnr) BX_CPP_AttrRegparmN(1);
|
|
extern int FPU_stackoverflow(FPU_REG **st_new_ptr);
|
|
extern void FPU_sync_tags(void);
|
|
-extern void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr);
|
|
-extern void FPU_copy_to_reg1(FPU_REG const *r, u_char tag);
|
|
-extern void FPU_copy_to_reg0(FPU_REG const *r, u_char tag);
|
|
+extern void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr) BX_CPP_AttrRegparmN(3);
|
|
+extern void FPU_copy_to_reg1(FPU_REG const *r, u_char tag) BX_CPP_AttrRegparmN(2);
|
|
+extern void FPU_copy_to_reg0(FPU_REG const *r, u_char tag) BX_CPP_AttrRegparmN(2);
|
|
/* fpu_trig.c */
|
|
extern void FPU_triga(void);
|
|
extern void FPU_trigb(void);
|
|
@@ -146,32 +146,32 @@
|
|
/* reg_constant.c */
|
|
extern void fconst(void);
|
|
/* reg_ld_str.c */
|
|
-extern int FPU_load_extended(long double *s, int stnr);
|
|
-extern int FPU_load_double(double *dfloat, FPU_REG *loaded_data);
|
|
-extern int FPU_load_single(float *single, FPU_REG *loaded_data);
|
|
-extern int FPU_load_int64(s64 *_s);
|
|
-extern int FPU_load_int32(s32 *_s, FPU_REG *loaded_data);
|
|
-extern int FPU_load_int16(s16 *_s, FPU_REG *loaded_data);
|
|
-extern int FPU_load_bcd(u_char *s);
|
|
+extern int FPU_load_extended(long double *s, int stnr) BX_CPP_AttrRegparmN(2);
|
|
+extern int FPU_load_double(double *dfloat, FPU_REG *loaded_data) BX_CPP_AttrRegparmN(2);
|
|
+extern int FPU_load_single(float *single, FPU_REG *loaded_data) BX_CPP_AttrRegparmN(2);
|
|
+extern int FPU_load_int64(s64 *_s) BX_CPP_AttrRegparmN(1);
|
|
+extern int FPU_load_int32(s32 *_s, FPU_REG *loaded_data) BX_CPP_AttrRegparmN(2);
|
|
+extern int FPU_load_int16(s16 *_s, FPU_REG *loaded_data) BX_CPP_AttrRegparmN(2);
|
|
+extern int FPU_load_bcd(u_char *s) BX_CPP_AttrRegparmN(1);
|
|
extern int FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag,
|
|
- long double *d);
|
|
-extern int FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag, double *dfloat);
|
|
-extern int FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag, float *single);
|
|
-extern int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, s64 *d);
|
|
-extern int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, s32 *d);
|
|
-extern int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, s16 *d);
|
|
-extern int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char *d);
|
|
-extern int FPU_round_to_int(FPU_REG *r, u_char tag);
|
|
-extern u_char *fldenv(fpu_addr_modes addr_modes, u_char *s);
|
|
-extern void frstor(fpu_addr_modes addr_modes, u_char *data_address);
|
|
-extern u_char *fstenv(fpu_addr_modes addr_modes, u_char *d);
|
|
-extern void fsave(fpu_addr_modes addr_modes, u_char *data_address);
|
|
-extern int FPU_tagof(FPU_REG *ptr);
|
|
+ long double *d) BX_CPP_AttrRegparmN(3);
|
|
+extern int FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag, double *dfloat) BX_CPP_AttrRegparmN(3);
|
|
+extern int FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag, float *single) BX_CPP_AttrRegparmN(3);
|
|
+extern int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, s64 *d) BX_CPP_AttrRegparmN(3);
|
|
+extern int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, s32 *d) BX_CPP_AttrRegparmN(3);
|
|
+extern int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, s16 *d) BX_CPP_AttrRegparmN(3);
|
|
+extern int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char *d) BX_CPP_AttrRegparmN(3);
|
|
+extern int FPU_round_to_int(FPU_REG *r, u_char tag) BX_CPP_AttrRegparmN(2);
|
|
+extern u_char *fldenv(fpu_addr_modes addr_modes, u_char *s) BX_CPP_AttrRegparmN(2);
|
|
+extern void frstor(fpu_addr_modes addr_modes, u_char *data_address) BX_CPP_AttrRegparmN(2);
|
|
+extern u_char *fstenv(fpu_addr_modes addr_modes, u_char *d) BX_CPP_AttrRegparmN(2);
|
|
+extern void fsave(fpu_addr_modes addr_modes, u_char *data_address) BX_CPP_AttrRegparmN(2);
|
|
+extern int FPU_tagof(FPU_REG *ptr) BX_CPP_AttrRegparmN(1);
|
|
/* reg_mul.c */
|
|
extern int FPU_mul(FPU_REG const *b, u_char tagb, int deststnr, int control_w);
|
|
|
|
extern int FPU_div(int flags, FPU_REG *regrm, int control_w); // bbd: changed arg2 from int to FPU_REG*
|
|
/* reg_convert.c */
|
|
-extern int FPU_to_exp16(FPU_REG const *a, FPU_REG *x);
|
|
+extern int FPU_to_exp16(FPU_REG const *a, FPU_REG *x) BX_CPP_AttrRegparmN(2);
|
|
#endif /* _FPU_PROTO_H */
|
|
|
|
Index: fpu/fpu_system.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/fpu/fpu_system.h,v
|
|
retrieving revision 1.5
|
|
diff -u -r1.5 fpu_system.h
|
|
--- fpu/fpu_system.h 23 Jan 2003 18:33:35 -0000 1.5
|
|
+++ fpu/fpu_system.h 2 Mar 2003 23:28:38 -0000
|
|
@@ -115,10 +115,10 @@
|
|
#endif
|
|
|
|
|
|
-extern unsigned fpu_get_user(void *ptr, unsigned len);
|
|
-extern void fpu_put_user(unsigned val, void *ptr, unsigned len);
|
|
+extern unsigned fpu_get_user(void *ptr, unsigned len) BX_CPP_AttrRegparmN(2);
|
|
+extern void fpu_put_user(unsigned val, void *ptr, unsigned len) BX_CPP_AttrRegparmN(2);
|
|
|
|
-extern void fpu_verify_area(unsigned what, void *ptr, unsigned n);
|
|
+extern void fpu_verify_area(unsigned what, void *ptr, unsigned n) BX_CPP_AttrRegparmN(3);
|
|
extern void math_emulate_init(void);
|
|
extern unsigned fpu_get_ds(void);
|
|
extern void fpu_set_ax(u16);
|
|
Index: fpu/fpu_tags.c
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/fpu/fpu_tags.c,v
|
|
retrieving revision 1.2
|
|
diff -u -r1.2 fpu_tags.c
|
|
--- fpu/fpu_tags.c 6 Oct 2001 03:53:46 -0000 1.2
|
|
+++ fpu/fpu_tags.c 2 Mar 2003 23:28:38 -0000
|
|
@@ -29,19 +29,22 @@
|
|
}
|
|
|
|
|
|
-int FPU_gettagi(int stnr)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_gettagi(int stnr)
|
|
{
|
|
return (fpu_tag_word >> (((top+stnr) & 7)*2)) & 3;
|
|
}
|
|
|
|
|
|
-int FPU_gettag(int regnr)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_gettag(int regnr)
|
|
{
|
|
return (fpu_tag_word >> ((regnr & 7)*2)) & 3;
|
|
}
|
|
|
|
|
|
-void FPU_settag0(int tag)
|
|
+void __attribute__((regparm(1)))
|
|
+FPU_settag0(int tag)
|
|
{
|
|
int regnr = top;
|
|
regnr &= 7;
|
|
@@ -50,7 +53,8 @@
|
|
}
|
|
|
|
|
|
-void FPU_settagi(int stnr, int tag)
|
|
+void __attribute__((regparm(2)))
|
|
+FPU_settagi(int stnr, int tag)
|
|
{
|
|
int regnr = stnr+top;
|
|
regnr &= 7;
|
|
@@ -59,7 +63,8 @@
|
|
}
|
|
|
|
|
|
-void FPU_settag(int regnr, int tag)
|
|
+void __attribute__((regparm(2)))
|
|
+FPU_settag(int regnr, int tag)
|
|
{
|
|
regnr &= 7;
|
|
fpu_tag_word &= ~(3 << (regnr*2));
|
|
@@ -67,7 +72,8 @@
|
|
}
|
|
|
|
|
|
-int FPU_Special(FPU_REG const *ptr)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_Special(FPU_REG const *ptr)
|
|
{
|
|
int exp = exponent(ptr);
|
|
|
|
@@ -81,14 +87,16 @@
|
|
}
|
|
|
|
|
|
-int isNaN(FPU_REG const *ptr)
|
|
+int __attribute__((regparm(1)))
|
|
+isNaN(FPU_REG const *ptr)
|
|
{
|
|
return ( (exponent(ptr) == EXP_BIAS+EXP_OVER)
|
|
&& !((ptr->sigh == 0x80000000) && (ptr->sigl == 0)) );
|
|
}
|
|
|
|
|
|
-int FPU_empty_i(int stnr)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_empty_i(int stnr)
|
|
{
|
|
int regnr = (top+stnr) & 7;
|
|
|
|
@@ -104,19 +112,22 @@
|
|
}
|
|
|
|
|
|
-void FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr)
|
|
+void __attribute__((regparm(3)))
|
|
+FPU_copy_to_regi(FPU_REG const *r, u_char tag, int stnr)
|
|
{
|
|
reg_copy(r, &st(stnr));
|
|
FPU_settagi(stnr, tag);
|
|
}
|
|
|
|
-void FPU_copy_to_reg1(FPU_REG const *r, u_char tag)
|
|
+void __attribute__((regparm(2)))
|
|
+FPU_copy_to_reg1(FPU_REG const *r, u_char tag)
|
|
{
|
|
reg_copy(r, &st(1));
|
|
FPU_settagi(1, tag);
|
|
}
|
|
|
|
-void FPU_copy_to_reg0(FPU_REG const *r, u_char tag)
|
|
+void __attribute__((regparm(2)))
|
|
+FPU_copy_to_reg0(FPU_REG const *r, u_char tag)
|
|
{
|
|
int regnr = top;
|
|
regnr &= 7;
|
|
Index: fpu/reg_convert.c
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/fpu/reg_convert.c,v
|
|
retrieving revision 1.2
|
|
diff -u -r1.2 reg_convert.c
|
|
--- fpu/reg_convert.c 6 Oct 2001 03:53:46 -0000 1.2
|
|
+++ fpu/reg_convert.c 2 Mar 2003 23:28:39 -0000
|
|
@@ -15,7 +15,8 @@
|
|
#include "fpu_emu.h"
|
|
|
|
|
|
-int FPU_to_exp16(FPU_REG const *a, FPU_REG *x)
|
|
+int __attribute__((regparm(2)))
|
|
+FPU_to_exp16(FPU_REG const *a, FPU_REG *x)
|
|
{
|
|
int sign = getsign(a);
|
|
|
|
Index: fpu/reg_ld_str.c
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/fpu/reg_ld_str.c,v
|
|
retrieving revision 1.5
|
|
diff -u -r1.5 reg_ld_str.c
|
|
--- fpu/reg_ld_str.c 26 Dec 2002 14:47:02 -0000 1.5
|
|
+++ fpu/reg_ld_str.c 2 Mar 2003 23:28:42 -0000
|
|
@@ -38,7 +38,8 @@
|
|
#define SINGLE_Emin (-126) /* smallest valid exponent */
|
|
|
|
|
|
-static u_char normalize_no_excep(FPU_REG *r, int exp, int sign)
|
|
+static u_char __attribute__((regparm(3)))
|
|
+normalize_no_excep(FPU_REG *r, int exp, int sign)
|
|
{
|
|
u_char tag;
|
|
|
|
@@ -53,7 +54,8 @@
|
|
}
|
|
|
|
|
|
-int FPU_tagof(FPU_REG *ptr)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_tagof(FPU_REG *ptr)
|
|
{
|
|
int exp;
|
|
|
|
@@ -87,7 +89,8 @@
|
|
|
|
|
|
/* Get a long double from user memory */
|
|
-int FPU_load_extended(long double *s, int stnr)
|
|
+int __attribute__((regparm(2)))
|
|
+FPU_load_extended(long double *s, int stnr)
|
|
{
|
|
FPU_REG *sti_ptr = &st(stnr);
|
|
|
|
@@ -107,7 +110,8 @@
|
|
|
|
|
|
/* Get a double from user memory */
|
|
-int FPU_load_double(double *dfloat, FPU_REG *loaded_data)
|
|
+int __attribute__((regparm(2)))
|
|
+FPU_load_double(double *dfloat, FPU_REG *loaded_data)
|
|
{
|
|
int exp, tag, negative;
|
|
u32 m64, l64;
|
|
@@ -179,7 +183,8 @@
|
|
|
|
|
|
/* Get a float from user memory */
|
|
-int FPU_load_single(float *single, FPU_REG *loaded_data)
|
|
+int __attribute__((regparm(2)))
|
|
+FPU_load_single(float *single, FPU_REG *loaded_data)
|
|
{
|
|
u32 m32;
|
|
int exp, tag, negative;
|
|
@@ -243,7 +248,8 @@
|
|
|
|
|
|
/* Get a 64bit quantity from user memory */
|
|
-int FPU_load_int64(s64 *_s)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_load_int64(s64 *_s)
|
|
{
|
|
s64 s;
|
|
int sign;
|
|
@@ -285,7 +291,8 @@
|
|
|
|
|
|
/* Get a long from user memory */
|
|
-int FPU_load_int32(s32 *_s, FPU_REG *loaded_data)
|
|
+int __attribute__((regparm(2)))
|
|
+FPU_load_int32(s32 *_s, FPU_REG *loaded_data)
|
|
{
|
|
s32 s;
|
|
int negative;
|
|
@@ -314,7 +321,8 @@
|
|
|
|
|
|
/* Get a short from user memory */
|
|
-int FPU_load_int16(s16 *_s, FPU_REG *loaded_data)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_load_int16(s16 *_s, FPU_REG *loaded_data)
|
|
{
|
|
s16 s, negative;
|
|
|
|
@@ -343,7 +351,8 @@
|
|
|
|
|
|
/* Get a packed bcd array from user memory */
|
|
-int FPU_load_bcd(u_char *s)
|
|
+int __attribute__((regparm(1)))
|
|
+FPU_load_bcd(u_char *s)
|
|
{
|
|
FPU_REG *st0_ptr = &st(0);
|
|
int pos;
|
|
@@ -386,7 +395,8 @@
|
|
/*===========================================================================*/
|
|
|
|
/* Put a long double into user memory */
|
|
-int FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag, long double *d)
|
|
+int __attribute__((regparm(3)))
|
|
+FPU_store_extended(FPU_REG *st0_ptr, u_char st0_tag, long double *d)
|
|
{
|
|
/*
|
|
The only exception raised by an attempt to store to an
|
|
@@ -428,7 +438,8 @@
|
|
|
|
|
|
/* Put a double into user memory */
|
|
-int FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag, double *dfloat)
|
|
+int __attribute__((regparm(3)))
|
|
+FPU_store_double(FPU_REG *st0_ptr, u_char st0_tag, double *dfloat)
|
|
{
|
|
u32 l[2];
|
|
u32 increment = 0; /* avoid gcc warnings */
|
|
@@ -647,7 +658,8 @@
|
|
|
|
|
|
/* Put a float into user memory */
|
|
-int FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag, float *single)
|
|
+int __attribute__((regparm(3)))
|
|
+FPU_store_single(FPU_REG *st0_ptr, u_char st0_tag, float *single)
|
|
{
|
|
s32 templ;
|
|
u32 increment = 0; /* avoid gcc warnings */
|
|
@@ -871,7 +883,8 @@
|
|
|
|
|
|
/* Put a 64bit quantity into user memory */
|
|
-int FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, s64 *d)
|
|
+int __attribute__((regparm(3)))
|
|
+FPU_store_int64(FPU_REG *st0_ptr, u_char st0_tag, s64 *d)
|
|
{
|
|
FPU_REG t;
|
|
s64 tll;
|
|
@@ -942,7 +955,8 @@
|
|
|
|
|
|
/* Put a long into user memory */
|
|
-int FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, s32 *d)
|
|
+int __attribute__((regparm(3)))
|
|
+FPU_store_int32(FPU_REG *st0_ptr, u_char st0_tag, s32 *d)
|
|
{
|
|
FPU_REG t;
|
|
int precision_loss;
|
|
@@ -999,7 +1013,8 @@
|
|
|
|
|
|
/* Put a short into user memory */
|
|
-int FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, s16 *d)
|
|
+int __attribute__((regparm(3)))
|
|
+FPU_store_int16(FPU_REG *st0_ptr, u_char st0_tag, s16 *d)
|
|
{
|
|
FPU_REG t;
|
|
int precision_loss;
|
|
@@ -1056,7 +1071,8 @@
|
|
|
|
|
|
/* Put a packed bcd array into user memory */
|
|
-int FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char *d)
|
|
+int __attribute__((regparm(3)))
|
|
+FPU_store_bcd(FPU_REG *st0_ptr, u_char st0_tag, u_char *d)
|
|
{
|
|
FPU_REG t;
|
|
u64 ll;
|
|
@@ -1142,7 +1158,8 @@
|
|
/* Overflow is signalled by a non-zero return value (in eax).
|
|
In the case of overflow, the returned significand always has the
|
|
largest possible value */
|
|
-int FPU_round_to_int(FPU_REG *r, u_char tag)
|
|
+int __attribute__((regparm(2)))
|
|
+FPU_round_to_int(FPU_REG *r, u_char tag)
|
|
{
|
|
u_char very_big;
|
|
unsigned eax;
|
|
@@ -1206,7 +1223,8 @@
|
|
|
|
/*===========================================================================*/
|
|
|
|
-u_char *fldenv(fpu_addr_modes addr_modes, u_char *s)
|
|
+u_char __attribute__((regparm(2)))
|
|
+*fldenv(fpu_addr_modes addr_modes, u_char *s)
|
|
{
|
|
u16 tag_word = 0;
|
|
u_char tag;
|
|
@@ -1297,7 +1315,8 @@
|
|
}
|
|
|
|
|
|
-void frstor(fpu_addr_modes addr_modes, u_char *data_address)
|
|
+void __attribute__((regparm(2)))
|
|
+frstor(fpu_addr_modes addr_modes, u_char *data_address)
|
|
{
|
|
int i, regnr;
|
|
u_char *s = fldenv(addr_modes, data_address);
|
|
@@ -1347,7 +1366,8 @@
|
|
}
|
|
|
|
|
|
-u_char *fstenv(fpu_addr_modes addr_modes, u_char *d)
|
|
+u_char __attribute__((regparm(2)))
|
|
+*fstenv(fpu_addr_modes addr_modes, u_char *d)
|
|
{
|
|
if ( (addr_modes.default_mode == VM86) ||
|
|
((addr_modes.default_mode == PM16)
|
|
@@ -1414,7 +1434,8 @@
|
|
}
|
|
|
|
|
|
-void fsave(fpu_addr_modes addr_modes, u_char *data_address)
|
|
+void __attribute__((regparm(2)))
|
|
+fsave(fpu_addr_modes addr_modes, u_char *data_address)
|
|
{
|
|
u_char *d;
|
|
int offset = (top & 7) * sizeof(FPU_REG), other = 8*sizeof(FPU_REG) - offset;
|
|
Index: fpu/wmFPUemu_glue.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/fpu/wmFPUemu_glue.cc,v
|
|
retrieving revision 1.17
|
|
diff -u -r1.17 wmFPUemu_glue.cc
|
|
--- fpu/wmFPUemu_glue.cc 6 Jan 2003 02:20:46 -0000 1.17
|
|
+++ fpu/wmFPUemu_glue.cc 2 Mar 2003 23:28:42 -0000
|
|
@@ -189,7 +189,7 @@
|
|
//BX_DEBUG(( "fpu_set_ax(0x%04x)", (unsigned) val16));
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
fpu_verify_area(unsigned what, void *ptr, unsigned n)
|
|
{
|
|
bx_segment_reg_t *seg;
|
|
@@ -213,7 +213,7 @@
|
|
}
|
|
|
|
|
|
- unsigned
|
|
+ unsigned BX_CPP_AttrRegparmN(2)
|
|
fpu_get_user(void *ptr, unsigned len)
|
|
{
|
|
Bit32u val32;
|
|
@@ -238,7 +238,7 @@
|
|
return(val32);
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
fpu_put_user(unsigned val, void *ptr, unsigned len)
|
|
{
|
|
Bit32u val32;
|
|
Index: iodev/Makefile.in
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/Makefile.in,v
|
|
retrieving revision 1.38
|
|
diff -u -r1.38 Makefile.in
|
|
--- iodev/Makefile.in 17 Feb 2003 03:58:29 -0000 1.38
|
|
+++ iodev/Makefile.in 2 Mar 2003 23:28:48 -0000
|
|
@@ -172,1139 +172,1037 @@
|
|
# and then again with an identical .lo rule. The .lo rules are used when
|
|
# building plugins.
|
|
###########################################
|
|
-biosdev.o: biosdev.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+biosdev.o: biosdev.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-cdrom.o: cdrom.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+cdrom.o: cdrom.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-cdrom_amigaos.o: cdrom_amigaos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+cdrom_amigaos.o: cdrom_amigaos.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h scsi_commands.h
|
|
-cdrom_beos.o: cdrom_beos.@CPP_SUFFIX@ cdrom_beos.h
|
|
-cmos.o: cmos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+cdrom_beos.o: cdrom_beos.cc cdrom_beos.h
|
|
+cmos.o: cmos.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-crc32.o: crc32.@CPP_SUFFIX@ crc32.h ../bochs.h ../config.h ../osdep.h \
|
|
+crc32.o: crc32.cc crc32.h ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-devices.o: devices.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+devices.o: devices.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-dma.o: dma.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+dma.o: dma.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth.o: eth.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+eth.o: eth.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_arpback.o: eth_arpback.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_arpback.o: eth_arpback.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_fbsd.o: eth_fbsd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_fbsd.o: eth_fbsd.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_linux.o: eth_linux.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_linux.o: eth_linux.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_null.o: eth_null.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_null.o: eth_null.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+eth_packetmaker.o: eth_packetmaker.cc ../bochs.h ../config.h \
|
|
+ ../osdep.h ../debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
+ ../state_file.h ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h \
|
|
+ ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
+ ../gui/gui.h ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/virt_timer.h \
|
|
+ ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_packetmaker.o: eth_packetmaker.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_tap.o: eth_tap.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
- ../instrument/stubs/instrument.h
|
|
-eth_tap.o: eth_tap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_tuntap.o: eth_tuntap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_tuntap.o: eth_tuntap.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_win32.o: eth_win32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_win32.o: eth_win32.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-extfpuirq.o: extfpuirq.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+extfpuirq.o: extfpuirq.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-floppy.o: floppy.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+floppy.o: floppy.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-guest2host.o: guest2host.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+guest2host.o: guest2host.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
- ../instrument/stubs/instrument.h
|
|
-harddrv.o: harddrv.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-ioapic.o: ioapic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+harddrv.o: harddrv.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-iodebug.o: iodebug.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+ioapic.o: ioapic.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+iodebug.o: iodebug.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-keyboard.o: keyboard.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+keyboard.o: keyboard.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h scancodes.h
|
|
-ne2k.o: ne2k.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+ne2k.o: ne2k.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-parallel.o: parallel.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+parallel.o: parallel.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
- ../instrument/stubs/instrument.h
|
|
-pci.o: pci.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pci2isa.o: pci2isa.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pci.o: pci.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+pci2isa.o: pci2isa.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pciusb.o: pciusb.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pciusb.o: pciusb.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pcivga.o: pcivga.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pcivga.o: pcivga.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pic.o: pic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pic.o: pic.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pit.o: pit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pit.o: pit.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pit82c54.o: pit82c54.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+pit82c54.o: pit82c54.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h pit82c54.h
|
|
-pit_wrap.o: pit_wrap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+pit_wrap.o: pit_wrap.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h pit_wrap.h
|
|
-sb16.o: sb16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+sb16.o: sb16.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-scancodes.o: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+scancodes.o: scancodes.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h scancodes.h
|
|
-serial.o: serial.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+serial.o: serial.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-serial_raw.o: serial_raw.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+serial_raw.o: serial_raw.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-slowdown_timer.o: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+slowdown_timer.o: slowdown_timer.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-soundlnx.o: soundlnx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+soundlnx.o: soundlnx.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-soundwin.o: soundwin.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+soundwin.o: soundwin.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-unmapped.o: unmapped.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+unmapped.o: unmapped.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-vga.o: vga.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+vga.o: vga.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+virt_timer.o: virt_timer.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-biosdev.lo: biosdev.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+biosdev.lo: biosdev.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-cdrom.lo: cdrom.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+cdrom.lo: cdrom.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-cdrom_amigaos.lo: cdrom_amigaos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+cdrom_amigaos.lo: cdrom_amigaos.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h scsi_commands.h
|
|
-cdrom_beos.lo: cdrom_beos.@CPP_SUFFIX@ cdrom_beos.h
|
|
-cmos.lo: cmos.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+cdrom_beos.lo: cdrom_beos.cc cdrom_beos.h
|
|
+cmos.lo: cmos.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-crc32.lo: crc32.@CPP_SUFFIX@ crc32.h ../bochs.h ../config.h ../osdep.h \
|
|
+crc32.lo: crc32.cc crc32.h ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-devices.lo: devices.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+devices.lo: devices.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-dma.lo: dma.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+dma.lo: dma.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth.lo: eth.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+eth.lo: eth.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_arpback.lo: eth_arpback.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_arpback.lo: eth_arpback.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_fbsd.lo: eth_fbsd.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_fbsd.lo: eth_fbsd.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_linux.lo: eth_linux.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_linux.lo: eth_linux.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_null.lo: eth_null.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_null.lo: eth_null.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+eth_packetmaker.lo: eth_packetmaker.cc ../bochs.h ../config.h \
|
|
+ ../osdep.h ../debug/debug.h ../bxversion.h ../gui/siminterface.h \
|
|
+ ../state_file.h ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h \
|
|
+ ../memory/memory.h ../pc_system.h ../plugin.h ../extplugin.h \
|
|
+ ../gui/gui.h ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h \
|
|
+ ../iodev/vga.h ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h \
|
|
+ ../iodev/floppy.h ../iodev/harddrv.h ../iodev/cdrom.h \
|
|
+ ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h \
|
|
+ ../iodev/pit_wrap.h ../iodev/pit82c54.h ../iodev/virt_timer.h \
|
|
+ ../iodev/serial.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_packetmaker.lo: eth_packetmaker.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_tap.lo: eth_tap.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
- ../instrument/stubs/instrument.h
|
|
-eth_tap.lo: eth_tap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_tuntap.lo: eth_tuntap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_tuntap.lo: eth_tuntap.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-eth_win32.lo: eth_win32.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+eth_win32.lo: eth_win32.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-extfpuirq.lo: extfpuirq.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+extfpuirq.lo: extfpuirq.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-floppy.lo: floppy.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+floppy.lo: floppy.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-guest2host.lo: guest2host.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+guest2host.lo: guest2host.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
- ../instrument/stubs/instrument.h
|
|
-harddrv.lo: harddrv.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-ioapic.lo: ioapic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+harddrv.lo: harddrv.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-iodebug.lo: iodebug.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+ioapic.lo: ioapic.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+iodebug.lo: iodebug.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-keyboard.lo: keyboard.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+keyboard.lo: keyboard.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h scancodes.h
|
|
-ne2k.lo: ne2k.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+ne2k.lo: ne2k.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-parallel.lo: parallel.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+parallel.lo: parallel.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
- ../instrument/stubs/instrument.h
|
|
-pci.lo: pci.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
- ../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
- ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
- ../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
- ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pci2isa.lo: pci2isa.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pci.lo: pci.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+pci2isa.lo: pci2isa.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pciusb.lo: pciusb.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pciusb.lo: pciusb.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pcivga.lo: pcivga.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pcivga.lo: pcivga.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pic.lo: pic.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pic.lo: pic.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pit.lo: pit.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+pit.lo: pit.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-pit82c54.lo: pit82c54.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+pit82c54.lo: pit82c54.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h pit82c54.h
|
|
-pit_wrap.lo: pit_wrap.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+pit_wrap.lo: pit_wrap.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h pit_wrap.h
|
|
-sb16.lo: sb16.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+sb16.lo: sb16.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-scancodes.lo: scancodes.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+scancodes.lo: scancodes.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h scancodes.h
|
|
-serial.lo: serial.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+serial.lo: serial.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
- ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-serial_raw.lo: serial_raw.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+serial_raw.lo: serial_raw.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-slowdown_timer.lo: slowdown_timer.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+slowdown_timer.lo: slowdown_timer.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-soundlnx.lo: soundlnx.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+soundlnx.lo: soundlnx.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-soundwin.lo: soundwin.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+soundwin.lo: soundwin.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-unmapped.lo: unmapped.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h \
|
|
+unmapped.lo: unmapped.cc ../bochs.h ../config.h ../osdep.h \
|
|
../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
- ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h \
|
|
- ../iodev/pci2isa.h ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
- ../iodev/pit82c54.h ../iodev/serial.h ../iodev/sb16.h \
|
|
- ../iodev/soundlnx.h ../iodev/soundwin.h ../iodev/unmapped.h \
|
|
- ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
- ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
-vga.lo: vga.@CPP_SUFFIX@ ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
+vga.lo: vga.cc ../bochs.h ../config.h ../osdep.h ../debug/debug.h \
|
|
../bxversion.h ../gui/siminterface.h ../state_file.h ../cpu/cpu.h \
|
|
../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h ../pc_system.h \
|
|
../plugin.h ../extplugin.h ../gui/gui.h ../gui/textconfig.h \
|
|
- ../gui/keymap.h ../iodev/iodev.h ../iodev/pci.h ../iodev/pci2isa.h \
|
|
- ../iodev/pcivga.h ../iodev/pciusb.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
+ ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h ../iodev/biosdev.h \
|
|
../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h ../iodev/harddrv.h \
|
|
- ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h ../iodev/pic.h \
|
|
- ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
- ../iodev/serial.h ../iodev/sb16.h ../iodev/soundlnx.h \
|
|
- ../iodev/soundwin.h ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
+ ../iodev/cdrom.h ../iodev/keyboard.h ../iodev/parallel.h \
|
|
+ ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h ../iodev/pit82c54.h \
|
|
+ ../iodev/virt_timer.h ../iodev/serial.h ../iodev/unmapped.h \
|
|
+ ../iodev/eth.h ../iodev/ne2k.h ../iodev/guest2host.h \
|
|
+ ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
+ ../instrument/stubs/instrument.h
|
|
+virt_timer.lo: virt_timer.cc ../bochs.h ../config.h ../osdep.h \
|
|
+ ../debug/debug.h ../bxversion.h ../gui/siminterface.h ../state_file.h \
|
|
+ ../cpu/cpu.h ../cpu/lazy_flags.h ../cpu/i387.h ../memory/memory.h \
|
|
+ ../pc_system.h ../plugin.h ../extplugin.h ../gui/gui.h \
|
|
+ ../gui/textconfig.h ../gui/keymap.h ../iodev/iodev.h ../iodev/vga.h \
|
|
+ ../iodev/biosdev.h ../iodev/cmos.h ../iodev/dma.h ../iodev/floppy.h \
|
|
+ ../iodev/harddrv.h ../iodev/cdrom.h ../iodev/keyboard.h \
|
|
+ ../iodev/parallel.h ../iodev/pic.h ../iodev/pit.h ../iodev/pit_wrap.h \
|
|
+ ../iodev/pit82c54.h ../iodev/virt_timer.h ../iodev/serial.h \
|
|
+ ../iodev/unmapped.h ../iodev/eth.h ../iodev/ne2k.h \
|
|
../iodev/guest2host.h ../iodev/slowdown_timer.h ../iodev/extfpuirq.h \
|
|
../instrument/stubs/instrument.h
|
|
Index: iodev/cdrom.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/cdrom.cc,v
|
|
retrieving revision 1.58
|
|
diff -u -r1.58 cdrom.cc
|
|
--- iodev/cdrom.cc 30 Jan 2003 20:44:32 -0000 1.58
|
|
+++ iodev/cdrom.cc 2 Mar 2003 23:28:51 -0000
|
|
@@ -1250,7 +1250,7 @@
|
|
#endif
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
cdrom_interface::read_block(uint8* buf, int lba)
|
|
{
|
|
// Read a single block from the CD
|
|
Index: iodev/cdrom.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/cdrom.h,v
|
|
retrieving revision 1.11
|
|
diff -u -r1.11 cdrom.h
|
|
--- iodev/cdrom.h 25 Oct 2002 11:44:38 -0000 1.11
|
|
+++ iodev/cdrom.h 2 Mar 2003 23:28:51 -0000
|
|
@@ -47,7 +47,7 @@
|
|
uint32 capacity();
|
|
|
|
// Read a single block from the CD
|
|
- void read_block(uint8* buf, int lba);
|
|
+ void read_block(uint8* buf, int lba) BX_CPP_AttrRegparmN(2);
|
|
|
|
private:
|
|
int fd;
|
|
Index: iodev/devices.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/devices.cc,v
|
|
retrieving revision 1.51
|
|
diff -u -r1.51 devices.cc
|
|
--- iodev/devices.cc 18 Feb 2003 03:38:03 -0000 1.51
|
|
+++ iodev/devices.cc 2 Mar 2003 23:28:53 -0000
|
|
@@ -601,7 +601,7 @@
|
|
* Read a byte of data from the IO memory address space
|
|
*/
|
|
|
|
- Bit32u
|
|
+ Bit32u BX_CPP_AttrRegparmN(2)
|
|
bx_devices_c::inp(Bit16u addr, unsigned io_len)
|
|
{
|
|
Bit8u handle;
|
|
@@ -623,7 +623,7 @@
|
|
* Write a byte of data to the IO memory address space.
|
|
*/
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
bx_devices_c::outp(Bit16u addr, Bit32u value, unsigned io_len)
|
|
{
|
|
Bit8u handle;
|
|
Index: iodev/dma.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/dma.cc,v
|
|
retrieving revision 1.26
|
|
diff -u -r1.26 dma.cc
|
|
--- iodev/dma.cc 4 Nov 2002 17:29:12 -0000 1.26
|
|
+++ iodev/dma.cc 2 Mar 2003 23:28:55 -0000
|
|
@@ -212,7 +212,7 @@
|
|
// static IO port read callback handler
|
|
// redirects to non-static class handler to avoid virtual functions
|
|
|
|
- Bit32u
|
|
+ Bit32u BX_CPP_AttrRegparmN(3)
|
|
bx_dma_c::read_handler(void *this_ptr, Bit32u address, unsigned io_len)
|
|
{
|
|
#if !BX_USE_DMA_SMF
|
|
@@ -222,7 +222,7 @@
|
|
}
|
|
|
|
/* 8237 DMA controller */
|
|
- Bit32u
|
|
+ Bit32u BX_CPP_AttrRegparmN(2)
|
|
bx_dma_c::read( Bit32u address, unsigned io_len)
|
|
{
|
|
#else
|
|
@@ -343,7 +343,7 @@
|
|
// static IO port write callback handler
|
|
// redirects to non-static class handler to avoid virtual functions
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
bx_dma_c::write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len)
|
|
{
|
|
#if !BX_USE_DMA_SMF
|
|
@@ -354,7 +354,7 @@
|
|
|
|
|
|
/* 8237 DMA controller */
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
bx_dma_c::write(Bit32u address, Bit32u value, unsigned io_len)
|
|
{
|
|
#else
|
|
Index: iodev/dma.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/dma.h,v
|
|
retrieving revision 1.12
|
|
diff -u -r1.12 dma.h
|
|
--- iodev/dma.h 25 Oct 2002 11:44:39 -0000 1.12
|
|
+++ iodev/dma.h 2 Mar 2003 23:28:55 -0000
|
|
@@ -63,11 +63,11 @@
|
|
|
|
private:
|
|
|
|
- static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len);
|
|
- static void write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len);
|
|
+ static Bit32u read_handler(void *this_ptr, Bit32u address, unsigned io_len) BX_CPP_AttrRegparmN(3);
|
|
+ static void write_handler(void *this_ptr, Bit32u address, Bit32u value, unsigned io_len) BX_CPP_AttrRegparmN(3);
|
|
#if !BX_USE_DMA_SMF
|
|
- Bit32u read( Bit32u address, unsigned io_len);
|
|
- void write(Bit32u address, Bit32u value, unsigned io_len);
|
|
+ Bit32u read( Bit32u address, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
|
+ void write(Bit32u address, Bit32u value, unsigned io_len) BX_CPP_AttrRegparmN(1);
|
|
#endif
|
|
BX_DMA_SMF void control_HRQ(bx_bool ma_sl);
|
|
BX_DMA_SMF void reset_controller(unsigned num);
|
|
Index: iodev/harddrv.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/harddrv.cc,v
|
|
retrieving revision 1.95
|
|
diff -u -r1.95 harddrv.cc
|
|
--- iodev/harddrv.cc 1 Feb 2003 12:21:43 -0000 1.95
|
|
+++ iodev/harddrv.cc 2 Mar 2003 23:29:06 -0000
|
|
@@ -2388,7 +2388,7 @@
|
|
}
|
|
|
|
|
|
- bx_bool
|
|
+ bx_bool BX_CPP_AttrRegparmN(2)
|
|
bx_hard_drive_c::calculate_logical_address(Bit8u channel, off_t *sector)
|
|
{
|
|
off_t logical_sector;
|
|
@@ -2418,7 +2418,7 @@
|
|
return true;
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
bx_hard_drive_c::increment_address(Bit8u channel)
|
|
{
|
|
BX_SELECTED_CONTROLLER(channel).sector_count--;
|
|
@@ -2887,7 +2887,7 @@
|
|
}
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
bx_hard_drive_c::init_send_atapi_command(Bit8u channel, Bit8u command, int req_length, int alloc_length, bool lazy)
|
|
{
|
|
// BX_SELECTED_CONTROLLER(channel).byte_count is a union of BX_SELECTED_CONTROLLER(channel).cylinder_no;
|
|
@@ -2961,7 +2961,7 @@
|
|
BX_SELECTED_DRIVE(channel).sense.ascq = 0;
|
|
}
|
|
|
|
-void
|
|
+void BX_CPP_AttrRegparmN(1)
|
|
bx_hard_drive_c::atapi_cmd_nop(Bit8u channel)
|
|
{
|
|
BX_SELECTED_CONTROLLER(channel).interrupt_reason.i_o = 1;
|
|
@@ -2990,13 +2990,13 @@
|
|
memcpy(BX_SELECTED_CONTROLLER(channel).buffer + 8, src, size);
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
bx_hard_drive_c::ready_to_send_atapi(Bit8u channel)
|
|
{
|
|
raise_interrupt(channel);
|
|
}
|
|
|
|
-void
|
|
+void BX_CPP_AttrRegparmN(1)
|
|
bx_hard_drive_c::raise_interrupt(Bit8u channel)
|
|
{
|
|
BX_DEBUG(("raise_interrupt called, disable_irq = %02x", BX_SELECTED_CONTROLLER(channel).control.disable_irq));
|
|
@@ -3387,12 +3387,14 @@
|
|
data[7] = 0x00;
|
|
}
|
|
|
|
-uint16 read_16bit(const uint8* buf)
|
|
+uint16 BX_CPP_AttrRegparmN(1)
|
|
+read_16bit(const uint8* buf)
|
|
{
|
|
return (buf[0] << 8) | buf[1];
|
|
}
|
|
|
|
-uint32 read_32bit(const uint8* buf)
|
|
+uint32 BX_CPP_AttrRegparmN(1)
|
|
+read_32bit(const uint8* buf)
|
|
{
|
|
return (buf[0] << 24) | (buf[1] << 16) | (buf[2] << 8) | buf[3];
|
|
}
|
|
Index: iodev/harddrv.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/harddrv.h,v
|
|
retrieving revision 1.18
|
|
diff -u -r1.18 harddrv.h
|
|
--- iodev/harddrv.h 25 Oct 2002 11:44:40 -0000 1.18
|
|
+++ iodev/harddrv.h 2 Mar 2003 23:29:07 -0000
|
|
@@ -241,8 +241,8 @@
|
|
error_recovery_t ();
|
|
};
|
|
|
|
-uint16 read_16bit(const uint8* buf);
|
|
-uint32 read_32bit(const uint8* buf);
|
|
+uint16 read_16bit(const uint8* buf) BX_CPP_AttrRegparmN(1);
|
|
+uint32 read_32bit(const uint8* buf) BX_CPP_AttrRegparmN(1);
|
|
|
|
|
|
#ifdef LOWLEVEL_CDROM
|
|
@@ -315,18 +315,18 @@
|
|
|
|
private:
|
|
|
|
- BX_HD_SMF bx_bool calculate_logical_address(Bit8u channel, off_t *sector);
|
|
- BX_HD_SMF void increment_address(Bit8u channel);
|
|
+ BX_HD_SMF bx_bool calculate_logical_address(Bit8u channel, off_t *sector) BX_CPP_AttrRegparmN(2);
|
|
+ BX_HD_SMF void increment_address(Bit8u channel) BX_CPP_AttrRegparmN(1);
|
|
BX_HD_SMF void identify_drive(Bit8u channel);
|
|
BX_HD_SMF void identify_ATAPI_drive(Bit8u channel);
|
|
BX_HD_SMF void command_aborted(Bit8u channel, unsigned command);
|
|
|
|
- BX_HD_SMF void init_send_atapi_command(Bit8u channel, Bit8u command, int req_length, int alloc_length, bool lazy = false);
|
|
- BX_HD_SMF void ready_to_send_atapi(Bit8u channel);
|
|
- BX_HD_SMF void raise_interrupt(Bit8u channel);
|
|
+ BX_HD_SMF void init_send_atapi_command(Bit8u channel, Bit8u command, int req_length, int alloc_length, bool lazy = false) BX_CPP_AttrRegparmN(3);
|
|
+ BX_HD_SMF void ready_to_send_atapi(Bit8u channel) BX_CPP_AttrRegparmN(1);
|
|
+ BX_HD_SMF void raise_interrupt(Bit8u channel) BX_CPP_AttrRegparmN(1);
|
|
BX_HD_SMF void atapi_cmd_error(Bit8u channel, sense_t sense_key, asc_t asc);
|
|
BX_HD_SMF void init_mode_sense_single(Bit8u channel, const void* src, int size);
|
|
- BX_HD_SMF void atapi_cmd_nop(Bit8u channel);
|
|
+ BX_HD_SMF void atapi_cmd_nop(Bit8u channel) BX_CPP_AttrRegparmN(1);
|
|
|
|
// FIXME:
|
|
// For each ATA channel we should have one controller struct
|
|
Index: iodev/iodev.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/iodev.h,v
|
|
retrieving revision 1.30
|
|
diff -u -r1.30 iodev.h
|
|
--- iodev/iodev.h 17 Feb 2003 03:58:29 -0000 1.30
|
|
+++ iodev/iodev.h 2 Mar 2003 23:29:08 -0000
|
|
@@ -287,8 +287,8 @@
|
|
bx_bool register_irq(unsigned irq, const char *name);
|
|
bx_bool unregister_irq(unsigned irq, const char *name);
|
|
void iodev_init(void);
|
|
- Bit32u inp(Bit16u addr, unsigned io_len);
|
|
- void outp(Bit16u addr, Bit32u value, unsigned io_len);
|
|
+ Bit32u inp(Bit16u addr, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
|
+ void outp(Bit16u addr, Bit32u value, unsigned io_len) BX_CPP_AttrRegparmN(3);
|
|
|
|
static void timer_handler(void *);
|
|
void timer(void);
|
|
Index: iodev/keyboard.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/keyboard.cc,v
|
|
retrieving revision 1.74
|
|
diff -u -r1.74 keyboard.cc
|
|
--- iodev/keyboard.cc 5 Jan 2003 01:37:21 -0000 1.74
|
|
+++ iodev/keyboard.cc 2 Mar 2003 23:29:12 -0000
|
|
@@ -785,7 +785,7 @@
|
|
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
bx_keyb_c::set_kbd_clock_enable(Bit8u value)
|
|
{
|
|
bx_bool prev_kbd_clock_enabled;
|
|
@@ -930,7 +930,7 @@
|
|
//BX_DEBUG(( "# out_buffer = %u", (unsigned) BX_KEY_THIS s.kbd_controller.kbd_output_buffer);
|
|
}
|
|
|
|
- bx_bool
|
|
+ bx_bool BX_CPP_AttrRegparmN(3)
|
|
bx_keyb_c::mouse_enQ_packet(Bit8u b1, Bit8u b2, Bit8u b3)
|
|
{
|
|
if ((BX_KEY_THIS s.mouse_internal_buffer.num_elements + 3) >= BX_MOUSE_BUFF_SIZE) {
|
|
Index: iodev/keyboard.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/keyboard.h,v
|
|
retrieving revision 1.20
|
|
diff -u -r1.20 keyboard.h
|
|
--- iodev/keyboard.h 26 Dec 2002 22:19:44 -0000 1.20
|
|
+++ iodev/keyboard.h 2 Mar 2003 23:29:13 -0000
|
|
@@ -215,7 +215,7 @@
|
|
bx_bool stop_paste; // stop the current paste operation on hardware reset
|
|
|
|
BX_KEY_SMF void resetinternals(bx_bool powerup);
|
|
- BX_KEY_SMF void set_kbd_clock_enable(Bit8u value);
|
|
+ BX_KEY_SMF void set_kbd_clock_enable(Bit8u value) BX_CPP_AttrRegparmN(1);
|
|
BX_KEY_SMF void set_aux_clock_enable(Bit8u value);
|
|
BX_KEY_SMF void kbd_ctrl_to_kbd(Bit8u value);
|
|
BX_KEY_SMF void kbd_ctrl_to_mouse(Bit8u value);
|
|
@@ -223,7 +223,7 @@
|
|
BX_KEY_SMF void kbd_enQ_imm(Bit8u val);
|
|
BX_KEY_SMF void activate_timer(void);
|
|
BX_KEY_SMF void controller_enQ(Bit8u data, unsigned source);
|
|
- BX_KEY_SMF bx_bool mouse_enQ_packet(Bit8u b1, Bit8u b2, Bit8u b3);
|
|
+ BX_KEY_SMF bx_bool mouse_enQ_packet(Bit8u b1, Bit8u b2, Bit8u b3) BX_CPP_AttrRegparmN(3);
|
|
BX_KEY_SMF void mouse_enQ(Bit8u mouse_data);
|
|
|
|
static void timer_handler(void *);
|
|
Index: iodev/ne2k.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/ne2k.cc,v
|
|
retrieving revision 1.47
|
|
diff -u -r1.47 ne2k.cc
|
|
--- iodev/ne2k.cc 13 Dec 2002 18:27:07 -0000 1.47
|
|
+++ iodev/ne2k.cc 2 Mar 2003 23:29:16 -0000
|
|
@@ -236,7 +236,7 @@
|
|
// The first 16 bytes contains the MAC address at even locations,
|
|
// and there is 16K of buffer memory starting at 16K
|
|
//
|
|
-Bit32u
|
|
+Bit32u BX_CPP_AttrRegparmN(2)
|
|
bx_ne2k_c::chipmem_read(Bit32u address, unsigned int io_len)
|
|
{
|
|
Bit32u retval = 0;
|
|
@@ -266,7 +266,7 @@
|
|
return (0xff);
|
|
}
|
|
|
|
-void
|
|
+void BX_CPP_AttrRegparmN(3)
|
|
bx_ne2k_c::chipmem_write(Bit32u address, Bit32u value, unsigned io_len)
|
|
{
|
|
if ((io_len == 2) && (address & 0x1))
|
|
@@ -290,7 +290,7 @@
|
|
// after that, insw/outsw instructions can be used to move
|
|
// the appropriate number of bytes to/from the device.
|
|
//
|
|
-Bit32u
|
|
+Bit32u BX_CPP_AttrRegparmN(2)
|
|
bx_ne2k_c::asic_read(Bit32u offset, unsigned int io_len)
|
|
{
|
|
Bit32u retval = 0;
|
|
Index: iodev/ne2k.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/ne2k.h,v
|
|
retrieving revision 1.10
|
|
diff -u -r1.10 ne2k.h
|
|
--- iodev/ne2k.h 19 Nov 2002 18:56:39 -0000 1.10
|
|
+++ iodev/ne2k.h 2 Mar 2003 23:29:17 -0000
|
|
@@ -209,14 +209,14 @@
|
|
BX_NE2K_SMF Bit32u read_cr(void);
|
|
BX_NE2K_SMF void write_cr(Bit32u value);
|
|
|
|
- BX_NE2K_SMF Bit32u chipmem_read(Bit32u address, unsigned io_len);
|
|
- BX_NE2K_SMF Bit32u asic_read(Bit32u offset, unsigned io_len);
|
|
+ BX_NE2K_SMF Bit32u chipmem_read(Bit32u address, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
|
+ BX_NE2K_SMF Bit32u asic_read(Bit32u offset, unsigned io_len) BX_CPP_AttrRegparmN(2);
|
|
BX_NE2K_SMF Bit32u page0_read(Bit32u offset, unsigned io_len);
|
|
BX_NE2K_SMF Bit32u page1_read(Bit32u offset, unsigned io_len);
|
|
BX_NE2K_SMF Bit32u page2_read(Bit32u offset, unsigned io_len);
|
|
BX_NE2K_SMF Bit32u page3_read(Bit32u offset, unsigned io_len);
|
|
|
|
- BX_NE2K_SMF void chipmem_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
+ BX_NE2K_SMF void chipmem_write(Bit32u address, Bit32u value, unsigned io_len) BX_CPP_AttrRegparmN(3);
|
|
BX_NE2K_SMF void asic_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
BX_NE2K_SMF void page0_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
BX_NE2K_SMF void page1_write(Bit32u address, Bit32u value, unsigned io_len);
|
|
Index: iodev/pit82c54.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/pit82c54.cc,v
|
|
retrieving revision 1.20
|
|
diff -u -r1.20 pit82c54.cc
|
|
--- iodev/pit82c54.cc 27 Aug 2002 19:54:46 -0000 1.20
|
|
+++ iodev/pit82c54.cc 2 Mar 2003 23:29:19 -0000
|
|
@@ -97,12 +97,14 @@
|
|
thisctr.OUTpin=data;
|
|
}
|
|
|
|
- void pit_82C54::set_count (counter_type & thisctr, Bit32u data) {
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
+pit_82C54::set_count (counter_type & thisctr, Bit32u data) {
|
|
thisctr.count=data & 0xFFFF;
|
|
set_binary_to_count(thisctr);
|
|
}
|
|
|
|
- void pit_82C54::set_count_to_binary(counter_type & thisctr) {
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
+pit_82C54::set_count_to_binary(counter_type & thisctr) {
|
|
if(thisctr.bcd_mode) {
|
|
thisctr.count=
|
|
(((thisctr.count_binary/1)%10)<<0) |
|
|
@@ -115,7 +117,8 @@
|
|
}
|
|
}
|
|
|
|
- void pit_82C54::set_binary_to_count(counter_type & thisctr) {
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
+pit_82C54::set_binary_to_count(counter_type & thisctr) {
|
|
if(thisctr.bcd_mode) {
|
|
thisctr.count_binary=
|
|
(1*((thisctr.count>>0)&0xF)) +
|
|
@@ -128,7 +131,8 @@
|
|
}
|
|
}
|
|
|
|
- void pit_82C54::decrement (counter_type & thisctr) {
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
+pit_82C54::decrement (counter_type & thisctr) {
|
|
if(!thisctr.count) {
|
|
if(thisctr.bcd_mode) {
|
|
thisctr.count=0x9999;
|
|
@@ -181,7 +185,8 @@
|
|
void pit_82C54::reset (unsigned type) {
|
|
}
|
|
|
|
-void pit_82C54::decrement_multiple(counter_type & thisctr, Bit32u cycles) {
|
|
+void BX_CPP_AttrRegparmN(2)
|
|
+pit_82C54::decrement_multiple(counter_type & thisctr, Bit32u cycles) {
|
|
while(cycles>0) {
|
|
if(cycles<=thisctr.count_binary) {
|
|
thisctr.count_binary-=cycles;
|
|
@@ -276,7 +281,8 @@
|
|
}
|
|
}
|
|
|
|
- void pit_82C54::clock(Bit8u cnum) {
|
|
+ void BX_CPP_AttrRegparmN(1)
|
|
+pit_82C54::clock(Bit8u cnum) {
|
|
if(cnum>MAX_COUNTER) {
|
|
BX_ERROR(("Counter number too high in clock"));
|
|
} else {
|
|
Index: iodev/pit82c54.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/pit82c54.h,v
|
|
retrieving revision 1.11
|
|
diff -u -r1.11 pit82c54.h
|
|
--- iodev/pit82c54.h 27 Aug 2002 19:54:46 -0000 1.11
|
|
+++ iodev/pit82c54.h 2 Mar 2003 23:29:19 -0000
|
|
@@ -94,17 +94,17 @@
|
|
|
|
void set_OUT (counter_type & thisctr, bool data);
|
|
|
|
- void set_count (counter_type & thisctr, Bit32u data);
|
|
+ void set_count (counter_type & thisctr, Bit32u data) BX_CPP_AttrRegparmN(2);
|
|
|
|
- void set_count_to_binary (counter_type & thisctr);
|
|
+ void set_count_to_binary (counter_type & thisctr) BX_CPP_AttrRegparmN(1);
|
|
|
|
- void set_binary_to_count (counter_type & thisctr);
|
|
+ void set_binary_to_count (counter_type & thisctr) BX_CPP_AttrRegparmN(1);
|
|
|
|
- void decrement (counter_type & thisctr);
|
|
+ void decrement (counter_type & thisctr) BX_CPP_AttrRegparmN(1);
|
|
|
|
- void decrement_multiple(counter_type & thisctr, Bit32u cycles);
|
|
+ void decrement_multiple(counter_type & thisctr, Bit32u cycles) BX_CPP_AttrRegparmN(2);
|
|
|
|
- void clock(Bit8u cnum);
|
|
+ void clock(Bit8u cnum) BX_CPP_AttrRegparmN(1);
|
|
|
|
void print_counter(counter_type & thisctr);
|
|
|
|
Index: iodev/vga.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/vga.cc,v
|
|
retrieving revision 1.61
|
|
diff -u -r1.61 vga.cc
|
|
--- iodev/vga.cc 9 Feb 2003 08:25:22 -0000 1.61
|
|
+++ iodev/vga.cc 2 Mar 2003 23:29:28 -0000
|
|
@@ -2226,11 +2226,11 @@
|
|
|
|
|
|
#if BX_SUPPORT_VBE
|
|
- Bit8u
|
|
+ Bit8u BX_CPP_AttrRegparmN(1)
|
|
bx_vga_c::vbe_mem_read(Bit32u addr)
|
|
{
|
|
- Bit32u offset;
|
|
-
|
|
+ Bit32u offset;
|
|
+
|
|
if (addr >= VBE_DISPI_LFB_PHYSICAL_ADDRESS)
|
|
{
|
|
// LFB read
|
|
@@ -2249,12 +2249,12 @@
|
|
return (BX_VGA_THIS s.vbe_memory[offset]);
|
|
}
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(2)
|
|
bx_vga_c::vbe_mem_write(Bit32u addr, Bit8u value)
|
|
{
|
|
- Bit32u offset;
|
|
+ Bit32u offset;
|
|
unsigned x_tileno, y_tileno;
|
|
-
|
|
+
|
|
if (addr >= VBE_DISPI_LFB_PHYSICAL_ADDRESS)
|
|
{
|
|
// LFB write
|
|
Index: iodev/vga.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/iodev/vga.h,v
|
|
retrieving revision 1.23
|
|
diff -u -r1.23 vga.h
|
|
--- iodev/vga.h 9 Feb 2003 08:25:22 -0000 1.23
|
|
+++ iodev/vga.h 2 Mar 2003 23:29:29 -0000
|
|
@@ -106,11 +106,11 @@
|
|
virtual void mem_write(Bit32u addr, Bit8u value);
|
|
virtual void trigger_timer(void *this_ptr);
|
|
|
|
-#if BX_SUPPORT_VBE
|
|
- BX_VGA_SMF Bit8u vbe_mem_read(Bit32u addr);
|
|
- BX_VGA_SMF void vbe_mem_write(Bit32u addr, Bit8u value);
|
|
+#if BX_SUPPORT_VBE
|
|
+ BX_VGA_SMF Bit8u vbe_mem_read(Bit32u addr) BX_CPP_AttrRegparmN(1);
|
|
+ BX_VGA_SMF void vbe_mem_write(Bit32u addr, Bit8u value) BX_CPP_AttrRegparmN(2);
|
|
#endif
|
|
-
|
|
+
|
|
virtual void redraw_area(unsigned x0, unsigned y0,
|
|
unsigned width, unsigned height);
|
|
|
|
Index: memory/memory.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/memory/memory.cc,v
|
|
retrieving revision 1.26
|
|
diff -u -r1.26 memory.cc
|
|
--- memory/memory.cc 13 Feb 2003 15:04:10 -0000 1.26
|
|
+++ memory/memory.cc 2 Mar 2003 23:29:30 -0000
|
|
@@ -35,7 +35,7 @@
|
|
|
|
#if BX_PROVIDE_CPU_MEMORY
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_MEM_C::writePhysicalPage(BX_CPU_C *cpu, Bit32u addr, unsigned len, void *data)
|
|
{
|
|
Bit8u *data_ptr;
|
|
@@ -232,7 +232,7 @@
|
|
}
|
|
|
|
|
|
- void
|
|
+ void BX_CPP_AttrRegparmN(3)
|
|
BX_MEM_C::readPhysicalPage(BX_CPU_C *cpu, Bit32u addr, unsigned len, void *data)
|
|
{
|
|
Bit8u *data_ptr;
|
|
Index: memory/memory.h
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/memory/memory.h,v
|
|
retrieving revision 1.13
|
|
diff -u -r1.13 memory.h
|
|
--- memory/memory.h 25 Oct 2002 11:44:41 -0000 1.13
|
|
+++ memory/memory.h 2 Mar 2003 23:29:30 -0000
|
|
@@ -60,23 +60,23 @@
|
|
BX_MEM_C(void);
|
|
BX_MEM_C(size_t memsize);
|
|
~BX_MEM_C(void);
|
|
- BX_MEM_SMF void alloc_vector_aligned (size_t bytes, size_t alignment);
|
|
+ BX_MEM_SMF void alloc_vector_aligned (size_t bytes, size_t alignment) BX_CPP_AttrRegparmN(2);
|
|
BX_MEM_SMF void init_memory(int memsize);
|
|
BX_MEM_SMF void readPhysicalPage(BX_CPU_C *cpu, Bit32u addr,
|
|
- unsigned len, void *data);
|
|
+ unsigned len, void *data) BX_CPP_AttrRegparmN(3);
|
|
BX_MEM_SMF void writePhysicalPage(BX_CPU_C *cpu, Bit32u addr,
|
|
- unsigned len, void *data);
|
|
+ unsigned len, void *data) BX_CPP_AttrRegparmN(3);
|
|
BX_MEM_SMF void load_ROM(const char *path, Bit32u romaddress);
|
|
BX_MEM_SMF Bit32u get_memory_in_k(void);
|
|
#if BX_PCI_SUPPORT
|
|
- BX_MEM_SMF Bit8u* pci_fetch_ptr(Bit32u addr);
|
|
+ BX_MEM_SMF Bit8u* pci_fetch_ptr(Bit32u addr) BX_CPP_AttrRegparmN(1);
|
|
#endif
|
|
BX_MEM_SMF bx_bool dbg_fetch_mem(Bit32u addr, unsigned len, Bit8u *buf);
|
|
BX_MEM_SMF bx_bool dbg_set_mem(Bit32u addr, unsigned len, Bit8u *buf);
|
|
BX_MEM_SMF bx_bool dbg_crc32(
|
|
unsigned long (*f)(unsigned char *buf, int len),
|
|
Bit32u addr1, Bit32u addr2, Bit32u *crc);
|
|
- BX_MEM_SMF Bit8u * getHostMemAddr(BX_CPU_C *cpu, Bit32u a20Addr, unsigned op);
|
|
+ BX_MEM_SMF Bit8u * getHostMemAddr(BX_CPU_C *cpu, Bit32u a20Addr, unsigned op) BX_CPP_AttrRegparmN(3);
|
|
};
|
|
|
|
#if BX_PROVIDE_CPU_MEMORY==1
|
|
Index: memory/misc_mem.cc
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/memory/misc_mem.cc,v
|
|
retrieving revision 1.35
|
|
diff -u -r1.35 misc_mem.cc
|
|
--- memory/misc_mem.cc 29 Jan 2003 15:01:16 -0000 1.35
|
|
+++ memory/misc_mem.cc 2 Mar 2003 23:29:31 -0000
|
|
@@ -63,7 +63,7 @@
|
|
|
|
|
|
#if BX_PROVIDE_CPU_MEMORY
|
|
-void
|
|
+void BX_CPP_AttrRegparmN(2)
|
|
BX_MEM_C::alloc_vector_aligned (size_t bytes, size_t alignment)
|
|
{
|
|
if (actual_vector != NULL) {
|
|
@@ -196,7 +196,7 @@
|
|
#endif // #if BX_PROVIDE_CPU_MEMORY
|
|
|
|
#if BX_PCI_SUPPORT
|
|
- Bit8u*
|
|
+ Bit8u* BX_CPP_AttrRegparmN(1)
|
|
BX_MEM_C::pci_fetch_ptr(Bit32u addr)
|
|
{
|
|
if (bx_options.Oi440FXSupport->get ()) {
|
|
@@ -306,7 +306,7 @@
|
|
}
|
|
|
|
|
|
- Bit8u *
|
|
+ Bit8u * BX_CPP_AttrRegparmN(3)
|
|
BX_MEM_C::getHostMemAddr(BX_CPU_C *cpu, Bit32u a20Addr, unsigned op)
|
|
// Return a host address corresponding to the guest physical memory
|
|
// address (with A20 already applied), given that the calling
|
|
Index: config.h.in
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/config.h.in,v
|
|
retrieving revision 1.106
|
|
diff -u -r1.106 config.h.in
|
|
--- config.h.in 29 Jan 2003 15:01:07 -0000 1.106
|
|
+++ config.h.in 2 Mar 2003 23:47:32 -0000
|
|
@@ -797,6 +797,16 @@
|
|
#define GCC_ATTRIBUTE __attribute__
|
|
#endif
|
|
|
|
+// set to use fast function calls
|
|
+#define BX_FAST_FUNC_CALL 0
|
|
+
|
|
+// On gcc2.95+ x86 only
|
|
+#if BX_FAST_FUNC_CALL && defined(__i386__) && defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 95))
|
|
+# define BX_CPP_AttrRegparmN(X) __attribute__((regparm(X)))
|
|
+#else
|
|
+# define BX_CPP_AttrRegparmN(X) /* Not defined */
|
|
+#endif
|
|
+
|
|
// set if your compiler does not allow label at the end of a {} block
|
|
#define BX_NO_BLANK_LABELS 0
|
|
|
|
Index: configure.in
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/configure.in,v
|
|
retrieving revision 1.201
|
|
diff -u -r1.201 configure.in
|
|
--- configure.in 21 Feb 2003 14:40:59 -0000 1.201
|
|
+++ configure.in 2 Mar 2003 23:47:37 -0000
|
|
@@ -884,7 +884,7 @@
|
|
|
|
AC_MSG_CHECKING(for instruction cache support)
|
|
AC_ARG_ENABLE(icache,
|
|
- [ --enable-icache support instruction cache (runs faster)],
|
|
+ [ --enable-icache support instruction cache],
|
|
[if test "$enableval" = yes; then
|
|
AC_MSG_RESULT(yes)
|
|
speedup_iCache=1
|
|
@@ -898,6 +898,22 @@
|
|
]
|
|
)
|
|
|
|
+AC_MSG_CHECKING(for gcc fast function calls optimization)
|
|
+AC_ARG_ENABLE(fast-function-calls,
|
|
+ [ --enable-fast-function-calls support for fast function calls (gcc on x86 only)],
|
|
+ [if test "$enableval" = yes; then
|
|
+ AC_MSG_RESULT(yes)
|
|
+ speedup_fastcall=1
|
|
+ else
|
|
+ AC_MSG_RESULT(no)
|
|
+ speedup_fastcall=0
|
|
+ fi],
|
|
+ [
|
|
+ AC_MSG_RESULT(no)
|
|
+ speedup_fastcall=0
|
|
+ ]
|
|
+ )
|
|
+
|
|
AC_MSG_CHECKING(for global pages support)
|
|
AC_ARG_ENABLE(global-pages,
|
|
[ --enable-global-pages support for global pages in PDE/PTE],
|
|
@@ -1111,6 +1127,7 @@
|
|
speedup_repeat=1
|
|
speedup_iCache=1
|
|
speedup_host_specific_asms=1
|
|
+ speedup_fastcall=1
|
|
fi
|
|
|
|
if test "$speedup_guest2host_tlb" = 1; then
|
|
@@ -1137,6 +1154,11 @@
|
|
AC_DEFINE(BX_SupportHostAsms, 0)
|
|
fi
|
|
|
|
+if test "$speedup_fastcall" = 1; then
|
|
+ AC_DEFINE(BX_FAST_FUNC_CALL, 1)
|
|
+else
|
|
+ AC_DEFINE(BX_FAST_FUNC_CALL, 0)
|
|
+fi
|
|
|
|
|
|
READLINE_LIB=""
|
|
Index: configure
|
|
===================================================================
|
|
RCS file: /cvsroot/bochs/bochs/configure,v
|
|
retrieving revision 1.201
|
|
diff -u -r1.201 configure
|
|
--- configure 21 Feb 2003 20:20:52 -0000 1.201
|
|
+++ configure 2 Mar 2003 23:48:41 -0000
|
|
@@ -1,179 +1,12 @@
|
|
#! /bin/sh
|
|
# From configure.in Id: configure.in,v 1.201 2003/02/21 14:40:59 cisc Exp .
|
|
# Guess values for system-dependent variables and create Makefiles.
|
|
-# Generated by GNU Autoconf 2.53.
|
|
+# Generated by GNU Autoconf 2.57.
|
|
#
|
|
# Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, 2002
|
|
# Free Software Foundation, Inc.
|
|
# This configure script is free software; the Free Software Foundation
|
|
# gives unlimited permission to copy, distribute and modify it.
|
|
-
|
|
-# Find the correct PATH separator. Usually this is `:', but
|
|
-# DJGPP uses `;' like DOS.
|
|
-if test "X${PATH_SEPARATOR+set}" != Xset; then
|
|
- UNAME=${UNAME-`uname 2>/dev/null`}
|
|
- case X$UNAME in
|
|
- *-DOS) lt_cv_sys_path_separator=';' ;;
|
|
- *) lt_cv_sys_path_separator=':' ;;
|
|
- esac
|
|
- PATH_SEPARATOR=$lt_cv_sys_path_separator
|
|
-fi
|
|
-
|
|
-
|
|
-# Check that we are running under the correct shell.
|
|
-SHELL=${CONFIG_SHELL-/bin/sh}
|
|
-
|
|
-case X$ECHO in
|
|
-X*--fallback-echo)
|
|
- # Remove one level of quotation (which was required for Make).
|
|
- ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','`
|
|
- ;;
|
|
-esac
|
|
-
|
|
-echo=${ECHO-echo}
|
|
-if test "X$1" = X--no-reexec; then
|
|
- # Discard the --no-reexec flag, and continue.
|
|
- shift
|
|
-elif test "X$1" = X--fallback-echo; then
|
|
- # Avoid inline document here, it may be left over
|
|
- :
|
|
-elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
|
|
- # Yippee, $echo works!
|
|
- :
|
|
-else
|
|
- # Restart under the correct shell.
|
|
- exec $SHELL "$0" --no-reexec ${1+"$@"}
|
|
-fi
|
|
-
|
|
-if test "X$1" = X--fallback-echo; then
|
|
- # used as fallback echo
|
|
- shift
|
|
- cat <<EOF
|
|
-
|
|
-EOF
|
|
- exit 0
|
|
-fi
|
|
-
|
|
-# The HP-UX ksh and POSIX shell print the target directory to stdout
|
|
-# if CDPATH is set.
|
|
-if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
|
|
-
|
|
-if test -z "$ECHO"; then
|
|
-if test "X${echo_test_string+set}" != Xset; then
|
|
-# find a string as large as possible, as long as the shell can cope with it
|
|
- for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
|
|
- # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
|
|
- if (echo_test_string="`eval $cmd`") 2>/dev/null &&
|
|
- echo_test_string="`eval $cmd`" &&
|
|
- (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
|
|
- then
|
|
- break
|
|
- fi
|
|
- done
|
|
-fi
|
|
-
|
|
-if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
|
|
- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
- :
|
|
-else
|
|
- # The Solaris, AIX, and Digital Unix default echo programs unquote
|
|
- # backslashes. This makes it impossible to quote backslashes using
|
|
- # echo "$something" | sed 's/\\/\\\\/g'
|
|
- #
|
|
- # So, first we look for a working echo in the user's PATH.
|
|
-
|
|
- IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR
|
|
- for dir in $PATH /usr/ucb; do
|
|
- if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
|
|
- test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
|
|
- echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
- echo="$dir/echo"
|
|
- break
|
|
- fi
|
|
- done
|
|
- IFS="$save_ifs"
|
|
-
|
|
- if test "X$echo" = Xecho; then
|
|
- # We didn't find a better echo, so look for alternatives.
|
|
- if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
|
|
- echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
- # This shell has a builtin print -r that does the trick.
|
|
- echo='print -r'
|
|
- elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
|
|
- test "X$CONFIG_SHELL" != X/bin/ksh; then
|
|
- # If we have ksh, try running configure again with it.
|
|
- ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
|
|
- export ORIGINAL_CONFIG_SHELL
|
|
- CONFIG_SHELL=/bin/ksh
|
|
- export CONFIG_SHELL
|
|
- exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
|
|
- else
|
|
- # Try using printf.
|
|
- echo='printf %s\n'
|
|
- if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
|
|
- echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
- # Cool, printf works
|
|
- :
|
|
- elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = 'X\t' &&
|
|
- echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
- CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
|
|
- export CONFIG_SHELL
|
|
- SHELL="$CONFIG_SHELL"
|
|
- export SHELL
|
|
- echo="$CONFIG_SHELL $0 --fallback-echo"
|
|
- elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = 'X\t' &&
|
|
- echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
|
|
- test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
- echo="$CONFIG_SHELL $0 --fallback-echo"
|
|
- else
|
|
- # maybe with a smaller string...
|
|
- prev=:
|
|
-
|
|
- for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
|
|
- if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
|
|
- then
|
|
- break
|
|
- fi
|
|
- prev="$cmd"
|
|
- done
|
|
-
|
|
- if test "$prev" != 'sed 50q "$0"'; then
|
|
- echo_test_string=`eval $prev`
|
|
- export echo_test_string
|
|
- exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
|
|
- else
|
|
- # Oops. We lost completely, so just stick with echo.
|
|
- echo=echo
|
|
- fi
|
|
- fi
|
|
- fi
|
|
- fi
|
|
-fi
|
|
-fi
|
|
-
|
|
-# Copy echo and quote the copy suitably for passing to libtool from
|
|
-# the Makefile, instead of quoting the original, which is used later.
|
|
-ECHO=$echo
|
|
-if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then
|
|
- ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo"
|
|
-fi
|
|
-
|
|
-
|
|
-
|
|
-if expr a : '\(a\)' >/dev/null 2>&1; then
|
|
- as_expr=expr
|
|
-else
|
|
- as_expr=false
|
|
-fi
|
|
-
|
|
-
|
|
## --------------------- ##
|
|
## M4sh Initialization. ##
|
|
## --------------------- ##
|
|
@@ -182,11 +15,13 @@
|
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|
emulate sh
|
|
NULLCMD=:
|
|
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
|
+ # is contrary to our usage. Disable this feature.
|
|
+ alias -g '${1+"$@"}'='"$@"'
|
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|
set -o posix
|
|
fi
|
|
|
|
-# NLS nuisances.
|
|
# Support unset when possible.
|
|
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
|
|
as_unset=unset
|
|
@@ -194,34 +29,42 @@
|
|
as_unset=false
|
|
fi
|
|
|
|
-(set +x; test -n "`(LANG=C; export LANG) 2>&1`") &&
|
|
- { $as_unset LANG || test "${LANG+set}" != set; } ||
|
|
- { LANG=C; export LANG; }
|
|
-(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") &&
|
|
- { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } ||
|
|
- { LC_ALL=C; export LC_ALL; }
|
|
-(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") &&
|
|
- { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } ||
|
|
- { LC_TIME=C; export LC_TIME; }
|
|
-(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") &&
|
|
- { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } ||
|
|
- { LC_CTYPE=C; export LC_CTYPE; }
|
|
-(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") &&
|
|
- { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } ||
|
|
- { LANGUAGE=C; export LANGUAGE; }
|
|
-(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") &&
|
|
- { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } ||
|
|
- { LC_COLLATE=C; export LC_COLLATE; }
|
|
-(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") &&
|
|
- { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } ||
|
|
- { LC_NUMERIC=C; export LC_NUMERIC; }
|
|
-(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") &&
|
|
- { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } ||
|
|
- { LC_MESSAGES=C; export LC_MESSAGES; }
|
|
+
|
|
+# Work around bugs in pre-3.0 UWIN ksh.
|
|
+$as_unset ENV MAIL MAILPATH
|
|
+PS1='$ '
|
|
+PS2='> '
|
|
+PS4='+ '
|
|
+
|
|
+# NLS nuisances.
|
|
+for as_var in \
|
|
+ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
|
|
+ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
|
|
+ LC_TELEPHONE LC_TIME
|
|
+do
|
|
+ if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
|
+ eval $as_var=C; export $as_var
|
|
+ else
|
|
+ $as_unset $as_var
|
|
+ fi
|
|
+done
|
|
+
|
|
+# Required to use basename.
|
|
+if expr a : '\(a\)' >/dev/null 2>&1; then
|
|
+ as_expr=expr
|
|
+else
|
|
+ as_expr=false
|
|
+fi
|
|
+
|
|
+if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
|
|
+ as_basename=basename
|
|
+else
|
|
+ as_basename=false
|
|
+fi
|
|
|
|
|
|
# Name of the executable.
|
|
-as_me=`(basename "$0") 2>/dev/null ||
|
|
+as_me=`$as_basename "$0" ||
|
|
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
|
X"$0" : 'X\(//\)$' \| \
|
|
X"$0" : 'X\(/\)$' \| \
|
|
@@ -232,6 +75,7 @@
|
|
/^X\/\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
|
|
+
|
|
# PATH needs CR, and LINENO needs CR and PATH.
|
|
# Avoid depending upon Character Ranges.
|
|
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
|
@@ -242,15 +86,15 @@
|
|
|
|
# The user is always right.
|
|
if test "${PATH_SEPARATOR+set}" != set; then
|
|
- echo "#! /bin/sh" >conftest.sh
|
|
- echo "exit 0" >>conftest.sh
|
|
- chmod +x conftest.sh
|
|
- if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then
|
|
+ echo "#! /bin/sh" >conf$$.sh
|
|
+ echo "exit 0" >>conf$$.sh
|
|
+ chmod +x conf$$.sh
|
|
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
|
|
PATH_SEPARATOR=';'
|
|
else
|
|
PATH_SEPARATOR=:
|
|
fi
|
|
- rm -f conftest.sh
|
|
+ rm -f conf$$.sh
|
|
fi
|
|
|
|
|
|
@@ -298,6 +142,8 @@
|
|
as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
|
|
test "x$as_lineno_1" != "x$as_lineno_2" &&
|
|
test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
|
|
+ $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
|
|
+ $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
|
|
CONFIG_SHELL=$as_dir/$as_base
|
|
export CONFIG_SHELL
|
|
exec "$CONFIG_SHELL" "$0" ${1+"$@"}
|
|
@@ -370,6 +216,12 @@
|
|
fi
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
|
|
+if mkdir -p . 2>/dev/null; then
|
|
+ as_mkdir_p=:
|
|
+else
|
|
+ as_mkdir_p=false
|
|
+fi
|
|
+
|
|
as_executable_p="test -f"
|
|
|
|
# Sed expression to map a string onto a valid CPP name.
|
|
@@ -386,7 +238,166 @@
|
|
IFS=" $as_nl"
|
|
|
|
# CDPATH.
|
|
-$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; }
|
|
+$as_unset CDPATH
|
|
+
|
|
+
|
|
+# Find the correct PATH separator. Usually this is `:', but
|
|
+# DJGPP uses `;' like DOS.
|
|
+if test "X${PATH_SEPARATOR+set}" != Xset; then
|
|
+ UNAME=${UNAME-`uname 2>/dev/null`}
|
|
+ case X$UNAME in
|
|
+ *-DOS) lt_cv_sys_path_separator=';' ;;
|
|
+ *) lt_cv_sys_path_separator=':' ;;
|
|
+ esac
|
|
+ PATH_SEPARATOR=$lt_cv_sys_path_separator
|
|
+fi
|
|
+
|
|
+
|
|
+# Check that we are running under the correct shell.
|
|
+SHELL=${CONFIG_SHELL-/bin/sh}
|
|
+
|
|
+case X$ECHO in
|
|
+X*--fallback-echo)
|
|
+ # Remove one level of quotation (which was required for Make).
|
|
+ ECHO=`echo "$ECHO" | sed 's,\\\\\$\\$0,'$0','`
|
|
+ ;;
|
|
+esac
|
|
+
|
|
+echo=${ECHO-echo}
|
|
+if test "X$1" = X--no-reexec; then
|
|
+ # Discard the --no-reexec flag, and continue.
|
|
+ shift
|
|
+elif test "X$1" = X--fallback-echo; then
|
|
+ # Avoid inline document here, it may be left over
|
|
+ :
|
|
+elif test "X`($echo '\t') 2>/dev/null`" = 'X\t'; then
|
|
+ # Yippee, $echo works!
|
|
+ :
|
|
+else
|
|
+ # Restart under the correct shell.
|
|
+ exec $SHELL "$0" --no-reexec ${1+"$@"}
|
|
+fi
|
|
+
|
|
+if test "X$1" = X--fallback-echo; then
|
|
+ # used as fallback echo
|
|
+ shift
|
|
+ cat <<EOF
|
|
+
|
|
+EOF
|
|
+ exit 0
|
|
+fi
|
|
+
|
|
+# The HP-UX ksh and POSIX shell print the target directory to stdout
|
|
+# if CDPATH is set.
|
|
+if test "X${CDPATH+set}" = Xset; then CDPATH=:; export CDPATH; fi
|
|
+
|
|
+if test -z "$ECHO"; then
|
|
+if test "X${echo_test_string+set}" != Xset; then
|
|
+# find a string as large as possible, as long as the shell can cope with it
|
|
+ for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do
|
|
+ # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ...
|
|
+ if (echo_test_string="`eval $cmd`") 2>/dev/null &&
|
|
+ echo_test_string="`eval $cmd`" &&
|
|
+ (test "X$echo_test_string" = "X$echo_test_string") 2>/dev/null
|
|
+ then
|
|
+ break
|
|
+ fi
|
|
+ done
|
|
+fi
|
|
+
|
|
+if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
|
|
+ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
+ :
|
|
+else
|
|
+ # The Solaris, AIX, and Digital Unix default echo programs unquote
|
|
+ # backslashes. This makes it impossible to quote backslashes using
|
|
+ # echo "$something" | sed 's/\\/\\\\/g'
|
|
+ #
|
|
+ # So, first we look for a working echo in the user's PATH.
|
|
+
|
|
+ IFS="${IFS= }"; save_ifs="$IFS"; IFS=$PATH_SEPARATOR
|
|
+ for dir in $PATH /usr/ucb; do
|
|
+ if (test -f $dir/echo || test -f $dir/echo$ac_exeext) &&
|
|
+ test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' &&
|
|
+ echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
+ echo="$dir/echo"
|
|
+ break
|
|
+ fi
|
|
+ done
|
|
+ IFS="$save_ifs"
|
|
+
|
|
+ if test "X$echo" = Xecho; then
|
|
+ # We didn't find a better echo, so look for alternatives.
|
|
+ if test "X`(print -r '\t') 2>/dev/null`" = 'X\t' &&
|
|
+ echo_testing_string=`(print -r "$echo_test_string") 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
+ # This shell has a builtin print -r that does the trick.
|
|
+ echo='print -r'
|
|
+ elif (test -f /bin/ksh || test -f /bin/ksh$ac_exeext) &&
|
|
+ test "X$CONFIG_SHELL" != X/bin/ksh; then
|
|
+ # If we have ksh, try running configure again with it.
|
|
+ ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh}
|
|
+ export ORIGINAL_CONFIG_SHELL
|
|
+ CONFIG_SHELL=/bin/ksh
|
|
+ export CONFIG_SHELL
|
|
+ exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"}
|
|
+ else
|
|
+ # Try using printf.
|
|
+ echo='printf %s\n'
|
|
+ if test "X`($echo '\t') 2>/dev/null`" = 'X\t' &&
|
|
+ echo_testing_string=`($echo "$echo_test_string") 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
+ # Cool, printf works
|
|
+ :
|
|
+ elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = 'X\t' &&
|
|
+ echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
+ CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL
|
|
+ export CONFIG_SHELL
|
|
+ SHELL="$CONFIG_SHELL"
|
|
+ export SHELL
|
|
+ echo="$CONFIG_SHELL $0 --fallback-echo"
|
|
+ elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = 'X\t' &&
|
|
+ echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` &&
|
|
+ test "X$echo_testing_string" = "X$echo_test_string"; then
|
|
+ echo="$CONFIG_SHELL $0 --fallback-echo"
|
|
+ else
|
|
+ # maybe with a smaller string...
|
|
+ prev=:
|
|
+
|
|
+ for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do
|
|
+ if (test "X$echo_test_string" = "X`eval $cmd`") 2>/dev/null
|
|
+ then
|
|
+ break
|
|
+ fi
|
|
+ prev="$cmd"
|
|
+ done
|
|
+
|
|
+ if test "$prev" != 'sed 50q "$0"'; then
|
|
+ echo_test_string=`eval $prev`
|
|
+ export echo_test_string
|
|
+ exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"}
|
|
+ else
|
|
+ # Oops. We lost completely, so just stick with echo.
|
|
+ echo=echo
|
|
+ fi
|
|
+ fi
|
|
+ fi
|
|
+ fi
|
|
+fi
|
|
+fi
|
|
+
|
|
+# Copy echo and quote the copy suitably for passing to libtool from
|
|
+# the Makefile, instead of quoting the original, which is used later.
|
|
+ECHO=$echo
|
|
+if test "X$ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then
|
|
+ ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo"
|
|
+fi
|
|
+
|
|
|
|
|
|
# Name of the host.
|
|
@@ -400,6 +411,7 @@
|
|
# Initializations.
|
|
#
|
|
ac_default_prefix=/usr/local
|
|
+ac_config_libobj_dir=.
|
|
cross_compiling=no
|
|
subdirs=
|
|
MFLAGS=
|
|
@@ -456,6 +468,8 @@
|
|
# include <unistd.h>
|
|
#endif"
|
|
|
|
+ac_subst_vars='SHELL PATH_SEPARATOR PACKAGE_NAME PACKAGE_TARNAME PACKAGE_VERSION PACKAGE_STRING PACKAGE_BUGREPORT exec_prefix prefix program_transform_name bindir sbindir libexecdir datadir sysconfdir sharedstatedir localstatedir libdir includedir oldincludedir infodir mandir build_alias host_alias target_alias DEFS ECHO_C ECHO_N ECHO_T LIBS build build_cpu build_vendor build_os host host_cpu host_vendor host_os target target_cpu target_vendor target_os CC CFLAGS LDFLAGS CPPFLAGS ac_ct_CC EXEEXT OBJEXT CXX CXXFLAGS ac_ct_CXX SET_MAKE LN_S ECHO RANLIB ac_ct_RANLIB STRIP ac_ct_STRIP CPP EGREP LIBTOOL LIBADD_DL X_CFLAGS X_PRE_LIBS X_LIBS X_EXTRA_LIBS BX_USE_NEW_PIT BX_USE_SLOWDOWN_TIMER SLOWDOWN_OBJS BX_USE_IDLE_HACK DEFINE_PLUGIN_PATH OBJS64 IOAPIC_OBJS APIC_OBJS BX_SPLIT_HD_SUPPORT NE2K_OBJS NETLOW_OBJS PCI_OBJ SUFFIX_LINE CPP_SUFFIX DEBUGGER_VAR BX_EXTERNAL_DEBUGGER DISASM_VAR READLINE_LIB INSTRUMENT_DIR INSTRUMENT_VAR FPU_VAR FPU_GLUE_OBJ CDROM_OBJS SB16_OBJS SOUNDLOW_OBJS GDBSTUB_VAR IODEBUG_OBJS DOCBOOK2HTML BUILD_DOCBOOK_VAR INSTALL_DOCBOOK_VAR IODEV_LIB_VAR EXTRA_BX_OBJS NONINLINE_VAR INLINE_VAR EXTERNAL_DEPENDENCY EXT_DEBUG_OBJS WX_CONFIG GUI_CFLAGS GUI_CXXFLAGS WX_CFLAGS WX_CXXFLAGS PTHREAD_CC PTHREAD_LIBS PTHREAD_CFLAGS INSTALL_TARGET INSTALL_LIST_FOR_PLATFORM RFB_LIBS GUI_OBJS DEVICE_LINK_OPTS GUI_LINK_OPTS GUI_LINK_OPTS_TERM GUI_LINK_OPTS_WX DASH SLASH CXXFP CFP OFP MAKELIB RMCOMMAND LINK LINK_CONSOLE EXE PRIMARY_TARGET PLUGIN_LIBNAME_TRANSFORMATION COMMAND_SEPARATOR CD_UP_ONE CD_UP_TWO VERSION VER_STRING REL_STRING EXTRA_LINK_OPTS GUI_NON_PLUGIN_OBJS GUI_PLUGIN_OBJS IODEV_NON_PLUGIN_OBJS IODEV_PLUGIN_OBJS PLUGIN_VAR PLUGIN_TARGET INSTALL_PLUGINS_VAR GZIP TAR LIBOBJS LTLIBOBJS'
|
|
+ac_subst_files=''
|
|
|
|
# Initialize some variables set by options.
|
|
ac_init_help=
|
|
@@ -879,6 +893,9 @@
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
fi
|
|
+(cd $srcdir && test -r ./$ac_unique_file) 2>/dev/null ||
|
|
+ { echo "$as_me: error: sources are in $srcdir, but \`cd $srcdir' does not work" >&2
|
|
+ { (exit 1); exit 1; }; }
|
|
srcdir=`echo "$srcdir" | sed 's%\([^\\/]\)[\\/]*$%\1%'`
|
|
ac_env_build_alias_set=${build_alias+set}
|
|
ac_env_build_alias_value=$build_alias
|
|
@@ -1023,7 +1040,8 @@
|
|
--enable-pae support Physical Address Extensions
|
|
--enable-guest2host-tlb support guest to host addr TLB for speed
|
|
--enable-repeat-speedups support repeated IO and mem copy speedups
|
|
- --enable-icache support instruction cache (runs faster)
|
|
+ --enable-icache support instruction cache
|
|
+ --enable-fast-function-calls support for fast function calls (gcc on x86 only)
|
|
--enable-global-pages support for global pages in PDE/PTE
|
|
--enable-host-specific-asms support for host specific inline assembly
|
|
--enable-ignore-bad-msr ignore bad MSR references
|
|
@@ -1121,7 +1139,7 @@
|
|
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
|
|
# absolute.
|
|
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
|
|
-ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
|
|
+ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
|
|
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
|
|
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
|
|
|
|
@@ -1161,7 +1179,7 @@
|
|
running configure, to aid debugging if configure makes a mistake.
|
|
|
|
It was created by $as_me, which was
|
|
-generated by GNU Autoconf 2.53. Invocation command line was
|
|
+generated by GNU Autoconf 2.57. Invocation command line was
|
|
|
|
$ $0 $@
|
|
|
|
@@ -1213,27 +1231,54 @@
|
|
|
|
# Keep a trace of the command line.
|
|
# Strip out --no-create and --no-recursion so they do not pile up.
|
|
+# Strip out --silent because we don't want to record it for future runs.
|
|
# Also quote any args containing shell meta-characters.
|
|
+# Make two passes to allow for proper duplicate-argument suppression.
|
|
ac_configure_args=
|
|
+ac_configure_args0=
|
|
+ac_configure_args1=
|
|
ac_sep=
|
|
-for ac_arg
|
|
+ac_must_keep_next=false
|
|
+for ac_pass in 1 2
|
|
do
|
|
- case $ac_arg in
|
|
- -no-create | --no-create | --no-creat | --no-crea | --no-cre \
|
|
- | --no-cr | --no-c | -n ) continue ;;
|
|
- -no-recursion | --no-recursion | --no-recursio | --no-recursi \
|
|
- | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r)
|
|
- continue ;;
|
|
- *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
|
|
- ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
|
- esac
|
|
- case " $ac_configure_args " in
|
|
- *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy.
|
|
- *) ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
|
|
- ac_sep=" " ;;
|
|
- esac
|
|
- # Get rid of the leading space.
|
|
+ for ac_arg
|
|
+ do
|
|
+ case $ac_arg in
|
|
+ -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;;
|
|
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
|
+ | -silent | --silent | --silen | --sile | --sil)
|
|
+ continue ;;
|
|
+ *" "*|*" "*|*[\[\]\~\#\$\^\&\*\(\)\{\}\\\|\;\<\>\?\"\']*)
|
|
+ ac_arg=`echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;;
|
|
+ esac
|
|
+ case $ac_pass in
|
|
+ 1) ac_configure_args0="$ac_configure_args0 '$ac_arg'" ;;
|
|
+ 2)
|
|
+ ac_configure_args1="$ac_configure_args1 '$ac_arg'"
|
|
+ if test $ac_must_keep_next = true; then
|
|
+ ac_must_keep_next=false # Got value, back to normal.
|
|
+ else
|
|
+ case $ac_arg in
|
|
+ *=* | --config-cache | -C | -disable-* | --disable-* \
|
|
+ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \
|
|
+ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \
|
|
+ | -with-* | --with-* | -without-* | --without-* | --x)
|
|
+ case "$ac_configure_args0 " in
|
|
+ "$ac_configure_args1"*" '$ac_arg' "* ) continue ;;
|
|
+ esac
|
|
+ ;;
|
|
+ -* ) ac_must_keep_next=true ;;
|
|
+ esac
|
|
+ fi
|
|
+ ac_configure_args="$ac_configure_args$ac_sep'$ac_arg'"
|
|
+ # Get rid of the leading space.
|
|
+ ac_sep=" "
|
|
+ ;;
|
|
+ esac
|
|
+ done
|
|
done
|
|
+$as_unset ac_configure_args0 || test "${ac_configure_args0+set}" != set || { ac_configure_args0=; export ac_configure_args0; }
|
|
+$as_unset ac_configure_args1 || test "${ac_configure_args1+set}" != set || { ac_configure_args1=; export ac_configure_args1; }
|
|
|
|
# When interrupted or exit'd, cleanup temporary files, and complete
|
|
# config.log. We remove comments because anyway the quotes in there
|
|
@@ -1244,6 +1289,7 @@
|
|
# Save into config.log some information that might help in debugging.
|
|
{
|
|
echo
|
|
+
|
|
cat <<\_ASBOX
|
|
## ---------------- ##
|
|
## Cache variables. ##
|
|
@@ -1266,6 +1312,35 @@
|
|
esac;
|
|
}
|
|
echo
|
|
+
|
|
+ cat <<\_ASBOX
|
|
+## ----------------- ##
|
|
+## Output variables. ##
|
|
+## ----------------- ##
|
|
+_ASBOX
|
|
+ echo
|
|
+ for ac_var in $ac_subst_vars
|
|
+ do
|
|
+ eval ac_val=$`echo $ac_var`
|
|
+ echo "$ac_var='"'"'$ac_val'"'"'"
|
|
+ done | sort
|
|
+ echo
|
|
+
|
|
+ if test -n "$ac_subst_files"; then
|
|
+ cat <<\_ASBOX
|
|
+## ------------- ##
|
|
+## Output files. ##
|
|
+## ------------- ##
|
|
+_ASBOX
|
|
+ echo
|
|
+ for ac_var in $ac_subst_files
|
|
+ do
|
|
+ eval ac_val=$`echo $ac_var`
|
|
+ echo "$ac_var='"'"'$ac_val'"'"'"
|
|
+ done | sort
|
|
+ echo
|
|
+ fi
|
|
+
|
|
if test -s confdefs.h; then
|
|
cat <<\_ASBOX
|
|
## ----------- ##
|
|
@@ -1273,7 +1348,7 @@
|
|
## ----------- ##
|
|
_ASBOX
|
|
echo
|
|
- sed "/^$/d" confdefs.h
|
|
+ sed "/^$/d" confdefs.h | sort
|
|
echo
|
|
fi
|
|
test "$ac_signal" != 0 &&
|
|
@@ -1431,9 +1506,10 @@
|
|
|
|
|
|
|
|
-ac_config_headers="$ac_config_headers config.h"
|
|
|
|
-ac_config_headers="$ac_config_headers ltdlconf.h"
|
|
+ ac_config_headers="$ac_config_headers config.h"
|
|
+
|
|
+ ac_config_headers="$ac_config_headers ltdlconf.h"
|
|
|
|
|
|
VERSION="2.0.cvs"
|
|
@@ -1845,9 +1921,7 @@
|
|
# However, it has the same basename, so the bogon will be chosen
|
|
# first if we set CC to just the basename; use the full file name.
|
|
shift
|
|
- set dummy "$as_dir/$ac_word" ${1+"$@"}
|
|
- shift
|
|
- ac_cv_prog_CC="$@"
|
|
+ ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@"
|
|
fi
|
|
fi
|
|
fi
|
|
@@ -1952,8 +2026,10 @@
|
|
fi
|
|
|
|
|
|
-test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH" >&5
|
|
-echo "$as_me: error: no acceptable C compiler found in \$PATH" >&2;}
|
|
+test -z "$CC" && { { echo "$as_me:$LINENO: error: no acceptable C compiler found in \$PATH
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: no acceptable C compiler found in \$PATH
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
|
|
# Provide some information about the compiler.
|
|
@@ -1978,14 +2054,12 @@
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -1995,7 +2069,7 @@
|
|
}
|
|
_ACEOF
|
|
ac_clean_files_save=$ac_clean_files
|
|
-ac_clean_files="$ac_clean_files a.out a.exe"
|
|
+ac_clean_files="$ac_clean_files a.out a.exe b.out"
|
|
# Try to create an executable without -o first, disregard a.out.
|
|
# It will help us diagnose broken compilers, and finding out an intuition
|
|
# of exeext.
|
|
@@ -2014,26 +2088,39 @@
|
|
# Be careful to initialize this variable, since it used to be cached.
|
|
# Otherwise an old cache value of `no' led to `EXEEXT = no' in a Makefile.
|
|
ac_cv_exeext=
|
|
-for ac_file in `ls a_out.exe a.exe conftest.exe 2>/dev/null;
|
|
- ls a.out conftest 2>/dev/null;
|
|
- ls a.* conftest.* 2>/dev/null`; do
|
|
+# b.out is created by i960 compilers.
|
|
+for ac_file in a_out.exe a.exe conftest.exe a.out conftest a.* conftest.* b.out
|
|
+do
|
|
+ test -f "$ac_file" || continue
|
|
case $ac_file in
|
|
- *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb | *.xSYM ) ;;
|
|
- a.out ) # We found the default executable, but exeext='' is most
|
|
- # certainly right.
|
|
- break;;
|
|
- *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
|
- # FIXME: I believe we export ac_cv_exeext for Libtool --akim.
|
|
- export ac_cv_exeext
|
|
- break;;
|
|
- * ) break;;
|
|
+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj )
|
|
+ ;;
|
|
+ conftest.$ac_ext )
|
|
+ # This is the source file.
|
|
+ ;;
|
|
+ [ab].out )
|
|
+ # We found the default executable, but exeext='' is most
|
|
+ # certainly right.
|
|
+ break;;
|
|
+ *.* )
|
|
+ ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
|
+ # FIXME: I believe we export ac_cv_exeext for Libtool,
|
|
+ # but it would be cool to find out if it's true. Does anybody
|
|
+ # maintain Libtool? --akim.
|
|
+ export ac_cv_exeext
|
|
+ break;;
|
|
+ * )
|
|
+ break;;
|
|
esac
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
-{ { echo "$as_me:$LINENO: error: C compiler cannot create executables" >&5
|
|
-echo "$as_me: error: C compiler cannot create executables" >&2;}
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+{ { echo "$as_me:$LINENO: error: C compiler cannot create executables
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: C compiler cannot create executables
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 77); exit 77; }; }
|
|
fi
|
|
|
|
@@ -2060,9 +2147,11 @@
|
|
cross_compiling=yes
|
|
else
|
|
{ { echo "$as_me:$LINENO: error: cannot run C compiled programs.
|
|
-If you meant to cross compile, use \`--host'." >&5
|
|
+If you meant to cross compile, use \`--host'.
|
|
+See \`config.log' for more details." >&5
|
|
echo "$as_me: error: cannot run C compiled programs.
|
|
-If you meant to cross compile, use \`--host'." >&2;}
|
|
+If you meant to cross compile, use \`--host'.
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
fi
|
|
@@ -2070,7 +2159,7 @@
|
|
echo "$as_me:$LINENO: result: yes" >&5
|
|
echo "${ECHO_T}yes" >&6
|
|
|
|
-rm -f a.out a.exe conftest$ac_cv_exeext
|
|
+rm -f a.out a.exe conftest$ac_cv_exeext b.out
|
|
ac_clean_files=$ac_clean_files_save
|
|
# Check the compiler produces executables we can run. If not, either
|
|
# the compiler is broken, or we cross compile.
|
|
@@ -2090,9 +2179,10 @@
|
|
# catch `conftest.exe'. For instance with Cygwin, `ls conftest' will
|
|
# work properly (i.e., refer to `conftest.exe'), while it won't with
|
|
# `rm'.
|
|
-for ac_file in `(ls conftest.exe; ls conftest; ls conftest.*) 2>/dev/null`; do
|
|
+for ac_file in conftest.exe conftest conftest.*; do
|
|
+ test -f "$ac_file" || continue
|
|
case $ac_file in
|
|
- *.$ac_ext | *.o | *.obj | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.o | *.obj ) ;;
|
|
*.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'`
|
|
export ac_cv_exeext
|
|
break;;
|
|
@@ -2100,8 +2190,10 @@
|
|
esac
|
|
done
|
|
else
|
|
- { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link" >&5
|
|
-echo "$as_me: error: cannot compute suffix of executables: cannot compile and link" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot compute suffix of executables: cannot compile and link
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute suffix of executables: cannot compile and link
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
@@ -2119,14 +2211,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2143,16 +2233,19 @@
|
|
(exit $ac_status); }; then
|
|
for ac_file in `(ls conftest.o conftest.obj; ls conftest.*) 2>/dev/null`; do
|
|
case $ac_file in
|
|
- *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb ) ;;
|
|
+ *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg ) ;;
|
|
*) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'`
|
|
break;;
|
|
esac
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
-{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile" >&5
|
|
-echo "$as_me: error: cannot compute suffix of object files: cannot compile" >&2;}
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+{ { echo "$as_me:$LINENO: error: cannot compute suffix of object files: cannot compile
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute suffix of object files: cannot compile
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
@@ -2169,14 +2262,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2203,7 +2294,8 @@
|
|
ac_compiler_gnu=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_compiler_gnu=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -2223,14 +2315,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2254,7 +2344,8 @@
|
|
ac_cv_prog_cc_g=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_prog_cc_g=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -2276,6 +2367,102 @@
|
|
CFLAGS=
|
|
fi
|
|
fi
|
|
+echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
|
|
+echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
|
|
+if test "${ac_cv_prog_cc_stdc+set}" = set; then
|
|
+ echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
+else
|
|
+ ac_cv_prog_cc_stdc=no
|
|
+ac_save_CC=$CC
|
|
+cat >conftest.$ac_ext <<_ACEOF
|
|
+#line $LINENO "configure"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+#include <stdarg.h>
|
|
+#include <stdio.h>
|
|
+#include <sys/types.h>
|
|
+#include <sys/stat.h>
|
|
+/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
|
|
+struct buf { int x; };
|
|
+FILE * (*rcsopen) (struct buf *, struct stat *, int);
|
|
+static char *e (p, i)
|
|
+ char **p;
|
|
+ int i;
|
|
+{
|
|
+ return p[i];
|
|
+}
|
|
+static char *f (char * (*g) (char **, int), char **p, ...)
|
|
+{
|
|
+ char *s;
|
|
+ va_list v;
|
|
+ va_start (v,p);
|
|
+ s = g (p, va_arg (v,int));
|
|
+ va_end (v);
|
|
+ return s;
|
|
+}
|
|
+int test (int i, double x);
|
|
+struct s1 {int (*f) (int a);};
|
|
+struct s2 {int (*f) (double a);};
|
|
+int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
|
|
+int argc;
|
|
+char **argv;
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
|
|
+ ;
|
|
+ return 0;
|
|
+}
|
|
+_ACEOF
|
|
+# Don't try gcc -ansi; that turns off useful extensions and
|
|
+# breaks some systems' header files.
|
|
+# AIX -qlanglvl=ansi
|
|
+# Ultrix and OSF/1 -std1
|
|
+# HP-UX 10.20 and later -Ae
|
|
+# HP-UX older versions -Aa -D_HPUX_SOURCE
|
|
+# SVR4 -Xc -D__EXTENSIONS__
|
|
+for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
|
|
+do
|
|
+ CC="$ac_save_CC $ac_arg"
|
|
+ rm -f conftest.$ac_objext
|
|
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
+ (eval $ac_compile) 2>&5
|
|
+ ac_status=$?
|
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); } &&
|
|
+ { ac_try='test -s conftest.$ac_objext'
|
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
+ (eval $ac_try) 2>&5
|
|
+ ac_status=$?
|
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); }; }; then
|
|
+ ac_cv_prog_cc_stdc=$ac_arg
|
|
+break
|
|
+else
|
|
+ echo "$as_me: failed program was:" >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+fi
|
|
+rm -f conftest.$ac_objext
|
|
+done
|
|
+rm -f conftest.$ac_ext conftest.$ac_objext
|
|
+CC=$ac_save_CC
|
|
+
|
|
+fi
|
|
+
|
|
+case "x$ac_cv_prog_cc_stdc" in
|
|
+ x|xno)
|
|
+ echo "$as_me:$LINENO: result: none needed" >&5
|
|
+echo "${ECHO_T}none needed" >&6 ;;
|
|
+ *)
|
|
+ echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
|
|
+echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
|
|
+ CC="$CC $ac_cv_prog_cc_stdc" ;;
|
|
+esac
|
|
+
|
|
# Some people use a C++ compiler to compile C. Since we use `exit',
|
|
# in C++ we need to declare it. In case someone uses the same compiler
|
|
# for both compiling C and C++ we need to have the C++ compiler decide
|
|
@@ -2308,15 +2495,13 @@
|
|
do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <stdlib.h>
|
|
$ac_declaration
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2340,20 +2525,19 @@
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
continue
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_declaration
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2377,7 +2561,8 @@
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
@@ -2390,7 +2575,8 @@
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
ac_ext=c
|
|
@@ -2519,14 +2705,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2553,7 +2737,8 @@
|
|
ac_compiler_gnu=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_compiler_gnu=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -2573,14 +2758,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2604,7 +2787,8 @@
|
|
ac_cv_prog_cxx_g=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_prog_cxx_g=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -2637,15 +2821,13 @@
|
|
do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <stdlib.h>
|
|
$ac_declaration
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2669,20 +2851,19 @@
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
continue
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_declaration
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -2706,7 +2887,8 @@
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
@@ -2723,15 +2905,15 @@
|
|
ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5'
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
-echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \${MAKE}" >&5
|
|
-echo $ECHO_N "checking whether ${MAKE-make} sets \${MAKE}... $ECHO_C" >&6
|
|
+echo "$as_me:$LINENO: checking whether ${MAKE-make} sets \$(MAKE)" >&5
|
|
+echo $ECHO_N "checking whether ${MAKE-make} sets \$(MAKE)... $ECHO_C" >&6
|
|
set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y,./+-,__p_,'`
|
|
if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\" = set"; then
|
|
echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
else
|
|
cat >conftest.make <<\_ACEOF
|
|
all:
|
|
- @echo 'ac_maketemp="${MAKE}"'
|
|
+ @echo 'ac_maketemp="$(MAKE)"'
|
|
_ACEOF
|
|
# GNU make sometimes prints "make[1]: Entering...", which would confuse us.
|
|
eval `${MAKE-make} -f conftest.make 2>/dev/null | grep temp=`
|
|
@@ -3401,18 +3583,28 @@
|
|
do
|
|
# Use a header file that comes with gcc, so configuring glibc
|
|
# with a fresh cross-compiler works.
|
|
+ # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ # <limits.h> exists even on freestanding compilers.
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp. "Syntax error" is here to catch this case.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
-#include <assert.h>
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
Syntax error
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -3429,7 +3621,8 @@
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
# Broken: fails on valid input.
|
|
continue
|
|
fi
|
|
@@ -3439,13 +3632,17 @@
|
|
# can be detected and how.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <ac_nonexistent.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -3463,7 +3660,8 @@
|
|
continue
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
# Passes both tests.
|
|
ac_preproc_ok=:
|
|
break
|
|
@@ -3492,18 +3690,28 @@
|
|
do
|
|
# Use a header file that comes with gcc, so configuring glibc
|
|
# with a fresh cross-compiler works.
|
|
+ # Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ # <limits.h> exists even on freestanding compilers.
|
|
# On the NeXT, cc -E runs the code through the compiler's parser,
|
|
# not just through cpp. "Syntax error" is here to catch this case.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
-#include <assert.h>
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
Syntax error
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -3520,7 +3728,8 @@
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
# Broken: fails on valid input.
|
|
continue
|
|
fi
|
|
@@ -3530,13 +3739,17 @@
|
|
# can be detected and how.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <ac_nonexistent.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -3554,7 +3767,8 @@
|
|
continue
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
# Passes both tests.
|
|
ac_preproc_ok=:
|
|
break
|
|
@@ -3567,8 +3781,10 @@
|
|
if $ac_preproc_ok; then
|
|
:
|
|
else
|
|
- { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check" >&5
|
|
-echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: C preprocessor \"$CPP\" fails sanity check
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
|
|
@@ -3579,6 +3795,21 @@
|
|
ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
|
|
|
|
|
+echo "$as_me:$LINENO: checking for egrep" >&5
|
|
+echo $ECHO_N "checking for egrep... $ECHO_C" >&6
|
|
+if test "${ac_cv_prog_egrep+set}" = set; then
|
|
+ echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
+else
|
|
+ if echo a | (grep -E '(a|b)') >/dev/null 2>&1
|
|
+ then ac_cv_prog_egrep='grep -E'
|
|
+ else ac_cv_prog_egrep='egrep'
|
|
+ fi
|
|
+fi
|
|
+echo "$as_me:$LINENO: result: $ac_cv_prog_egrep" >&5
|
|
+echo "${ECHO_T}$ac_cv_prog_egrep" >&6
|
|
+ EGREP=$ac_cv_prog_egrep
|
|
+
|
|
+
|
|
echo "$as_me:$LINENO: checking for ANSI C header files" >&5
|
|
echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6
|
|
if test "${ac_cv_header_stdc+set}" = set; then
|
|
@@ -3586,48 +3817,59 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <stdlib.h>
|
|
#include <stdarg.h>
|
|
#include <string.h>
|
|
#include <float.h>
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+
|
|
+ ;
|
|
+ return 0;
|
|
+}
|
|
_ACEOF
|
|
-if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
- (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
+rm -f conftest.$ac_objext
|
|
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
+ (eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
- rm -f conftest.er1
|
|
- cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
- (exit $ac_status); } >/dev/null; then
|
|
- if test -s conftest.err; then
|
|
- ac_cpp_err=$ac_c_preproc_warn_flag
|
|
- else
|
|
- ac_cpp_err=
|
|
- fi
|
|
-else
|
|
- ac_cpp_err=yes
|
|
-fi
|
|
-if test -z "$ac_cpp_err"; then
|
|
+ (exit $ac_status); } &&
|
|
+ { ac_try='test -s conftest.$ac_objext'
|
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
+ (eval $ac_try) 2>&5
|
|
+ ac_status=$?
|
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); }; }; then
|
|
ac_cv_header_stdc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
- ac_cv_header_stdc=no
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+ac_cv_header_stdc=no
|
|
fi
|
|
-rm -f conftest.err conftest.$ac_ext
|
|
+rm -f conftest.$ac_objext conftest.$ac_ext
|
|
|
|
if test $ac_cv_header_stdc = yes; then
|
|
# SunOS 4.x string.h does not declare mem*, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <string.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
- egrep "memchr" >/dev/null 2>&1; then
|
|
+ $EGREP "memchr" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
@@ -3640,12 +3882,16 @@
|
|
# ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <stdlib.h>
|
|
|
|
_ACEOF
|
|
if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
|
|
- egrep "free" >/dev/null 2>&1; then
|
|
+ $EGREP "free" >/dev/null 2>&1; then
|
|
:
|
|
else
|
|
ac_cv_header_stdc=no
|
|
@@ -3661,13 +3907,18 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <ctype.h>
|
|
#if ((' ' & 0x0FF) == 0x020)
|
|
# define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
|
|
# define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c))
|
|
#else
|
|
-# define ISLOWER(c) (('a' <= (c) && (c) <= 'i') \
|
|
+# define ISLOWER(c) \
|
|
+ (('a' <= (c) && (c) <= 'i') \
|
|
|| ('j' <= (c) && (c) <= 'r') \
|
|
|| ('s' <= (c) && (c) <= 'z'))
|
|
# define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c))
|
|
@@ -3700,11 +3951,12 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
ac_cv_header_stdc=no
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
fi
|
|
@@ -3739,7 +3991,11 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
|
|
#include <$ac_header>
|
|
@@ -3759,7 +4015,8 @@
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -3794,7 +4051,11 @@
|
|
echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
@@ -3813,7 +4074,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -3825,13 +4087,17 @@
|
|
echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -3848,7 +4114,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -3861,14 +4128,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
@@ -4209,7 +4494,7 @@
|
|
case $host in
|
|
*-*-irix6*)
|
|
# Find out which ABI we are using.
|
|
- echo '#line 4212 "configure"' > conftest.$ac_ext
|
|
+ echo '#line 4497 "configure"' > conftest.$ac_ext
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
(eval $ac_compile) 2>&5
|
|
ac_status=$?
|
|
@@ -4249,14 +4534,12 @@
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -4280,7 +4563,8 @@
|
|
lt_cv_cc_needs_belf=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
lt_cv_cc_needs_belf=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -4589,14 +4873,12 @@
|
|
CFLAGS="$CFLAGS $lt_cv_prog_cc_pic -DPIC"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -4635,7 +4917,8 @@
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
lt_cv_prog_cc_pic_works=no
|
|
|
|
fi
|
|
@@ -4682,14 +4965,12 @@
|
|
LDFLAGS="$LDFLAGS $lt_cv_prog_cc_static"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -4713,7 +4994,8 @@
|
|
lt_cv_prog_cc_static_works=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
LDFLAGS="$save_LDFLAGS"
|
|
@@ -4759,7 +5041,7 @@
|
|
save_CFLAGS="$CFLAGS"
|
|
CFLAGS="$CFLAGS -o out/conftest2.$ac_objext"
|
|
compiler_c_o=no
|
|
-if { (eval echo configure:4762: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
|
|
+if { (eval echo configure:5044: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>out/conftest.err; } && test -s out/conftest2.$ac_objext; then
|
|
# The compiler can only warn and ignore the option if not recognized
|
|
# So say no if there are warnings
|
|
if test -s out/conftest.err; then
|
|
@@ -4801,14 +5083,12 @@
|
|
ac_objext=lo
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -4839,7 +5119,8 @@
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
ac_objext="$save_objext"
|
|
@@ -4895,14 +5176,12 @@
|
|
compiler_rtti_exceptions=no
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -4933,7 +5212,8 @@
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
CFLAGS="$save_CFLAGS"
|
|
@@ -6184,37 +6464,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char shl_load (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char shl_load (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shl_load ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_shl_load) || defined (__stub___shl_load)
|
|
choke me
|
|
#else
|
|
-f = shl_load;
|
|
+char (*f) () = shl_load;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != shl_load;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -6234,7 +6521,8 @@
|
|
ac_cv_func_shl_load=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_shl_load=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -6253,7 +6541,11 @@
|
|
LIBS="-ldld $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -6262,12 +6554,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shl_load ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -6291,7 +6577,8 @@
|
|
ac_cv_lib_dld_shl_load=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dld_shl_load=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -6309,37 +6596,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char dlopen (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char dlopen (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dlopen ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_dlopen) || defined (__stub___dlopen)
|
|
choke me
|
|
#else
|
|
-f = dlopen;
|
|
+char (*f) () = dlopen;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != dlopen;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -6359,7 +6653,8 @@
|
|
ac_cv_func_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -6378,7 +6673,11 @@
|
|
LIBS="-ldl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -6387,12 +6686,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dlopen ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -6416,7 +6709,8 @@
|
|
ac_cv_lib_dl_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dl_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -6436,7 +6730,11 @@
|
|
LIBS="-lsvld $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -6445,12 +6743,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dlopen ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -6474,7 +6766,8 @@
|
|
ac_cv_lib_svld_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_svld_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -6494,7 +6787,11 @@
|
|
LIBS="-ldld $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -6503,12 +6800,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dld_link ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -6532,7 +6823,8 @@
|
|
ac_cv_lib_dld_dld_link=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dld_dld_link=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -6590,7 +6882,7 @@
|
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
|
lt_status=$lt_dlunknown
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6593 "configure"
|
|
+#line 6885 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if HAVE_DLFCN_H
|
|
@@ -6688,7 +6980,7 @@
|
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
|
lt_status=$lt_dlunknown
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 6691 "configure"
|
|
+#line 6983 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if HAVE_DLFCN_H
|
|
@@ -7420,103 +7712,6 @@
|
|
# Prevent multiple expansion
|
|
|
|
|
|
-echo "$as_me:$LINENO: checking for $CC option to accept ANSI C" >&5
|
|
-echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6
|
|
-if test "${ac_cv_prog_cc_stdc+set}" = set; then
|
|
- echo $ECHO_N "(cached) $ECHO_C" >&6
|
|
-else
|
|
- ac_cv_prog_cc_stdc=no
|
|
-ac_save_CC=$CC
|
|
-cat >conftest.$ac_ext <<_ACEOF
|
|
-#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
-#include <stdarg.h>
|
|
-#include <stdio.h>
|
|
-#include <sys/types.h>
|
|
-#include <sys/stat.h>
|
|
-/* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */
|
|
-struct buf { int x; };
|
|
-FILE * (*rcsopen) (struct buf *, struct stat *, int);
|
|
-static char *e (p, i)
|
|
- char **p;
|
|
- int i;
|
|
-{
|
|
- return p[i];
|
|
-}
|
|
-static char *f (char * (*g) (char **, int), char **p, ...)
|
|
-{
|
|
- char *s;
|
|
- va_list v;
|
|
- va_start (v,p);
|
|
- s = g (p, va_arg (v,int));
|
|
- va_end (v);
|
|
- return s;
|
|
-}
|
|
-int test (int i, double x);
|
|
-struct s1 {int (*f) (int a);};
|
|
-struct s2 {int (*f) (double a);};
|
|
-int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int);
|
|
-int argc;
|
|
-char **argv;
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
-return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1];
|
|
- ;
|
|
- return 0;
|
|
-}
|
|
-_ACEOF
|
|
-# Don't try gcc -ansi; that turns off useful extensions and
|
|
-# breaks some systems' header files.
|
|
-# AIX -qlanglvl=ansi
|
|
-# Ultrix and OSF/1 -std1
|
|
-# HP-UX 10.20 and later -Ae
|
|
-# HP-UX older versions -Aa -D_HPUX_SOURCE
|
|
-# SVR4 -Xc -D__EXTENSIONS__
|
|
-for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__"
|
|
-do
|
|
- CC="$ac_save_CC $ac_arg"
|
|
- rm -f conftest.$ac_objext
|
|
-if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
- (eval $ac_compile) 2>&5
|
|
- ac_status=$?
|
|
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
- (exit $ac_status); } &&
|
|
- { ac_try='test -s conftest.$ac_objext'
|
|
- { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
- (eval $ac_try) 2>&5
|
|
- ac_status=$?
|
|
- echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
- (exit $ac_status); }; }; then
|
|
- ac_cv_prog_cc_stdc=$ac_arg
|
|
-break
|
|
-else
|
|
- echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
-fi
|
|
-rm -f conftest.$ac_objext
|
|
-done
|
|
-rm -f conftest.$ac_ext conftest.$ac_objext
|
|
-CC=$ac_save_CC
|
|
-
|
|
-fi
|
|
-
|
|
-case "x$ac_cv_prog_cc_stdc" in
|
|
- x|xno)
|
|
- echo "$as_me:$LINENO: result: none needed" >&5
|
|
-echo "${ECHO_T}none needed" >&6 ;;
|
|
- *)
|
|
- echo "$as_me:$LINENO: result: $ac_cv_prog_cc_stdc" >&5
|
|
-echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6
|
|
- CC="$CC $ac_cv_prog_cc_stdc" ;;
|
|
-esac
|
|
-
|
|
echo "$as_me:$LINENO: checking for an ANSI C-conforming const" >&5
|
|
echo $ECHO_N "checking for an ANSI C-conforming const... $ECHO_C" >&6
|
|
if test "${ac_cv_c_const+set}" = set; then
|
|
@@ -7524,14 +7719,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -7601,7 +7794,8 @@
|
|
ac_cv_c_const=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_c_const=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -7631,16 +7825,14 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <sys/types.h>
|
|
#include <$ac_hdr>
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -7665,7 +7857,8 @@
|
|
eval "$as_ac_Header=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_Header=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -7692,7 +7885,11 @@
|
|
ac_cv_search_opendir=no
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -7701,12 +7898,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char opendir ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -7730,7 +7921,8 @@
|
|
ac_cv_search_opendir="none required"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
if test "$ac_cv_search_opendir" = no; then
|
|
@@ -7738,7 +7930,11 @@
|
|
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -7747,12 +7943,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char opendir ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -7777,7 +7967,8 @@
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
@@ -7801,7 +7992,11 @@
|
|
ac_cv_search_opendir=no
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -7810,12 +8005,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char opendir ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -7839,7 +8028,8 @@
|
|
ac_cv_search_opendir="none required"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
if test "$ac_cv_search_opendir" = no; then
|
|
@@ -7847,7 +8037,11 @@
|
|
LIBS="-l$ac_lib $ac_func_search_save_LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -7856,12 +8050,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char opendir ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -7886,7 +8074,8 @@
|
|
break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
done
|
|
@@ -7940,7 +8129,11 @@
|
|
echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
@@ -7959,7 +8152,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -7971,13 +8165,17 @@
|
|
echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -7994,7 +8192,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -8007,14 +8206,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
@@ -8190,7 +8407,11 @@
|
|
LIBS="-ldl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -8199,12 +8420,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dlopen ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -8228,7 +8443,8 @@
|
|
ac_cv_lib_dl_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dl_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -8250,37 +8466,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char dlopen (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char dlopen (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dlopen ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_dlopen) || defined (__stub___dlopen)
|
|
choke me
|
|
#else
|
|
-f = dlopen;
|
|
+char (*f) () = dlopen;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != dlopen;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -8300,7 +8523,8 @@
|
|
ac_cv_func_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -8323,7 +8547,11 @@
|
|
LIBS="-lsvld $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -8332,12 +8560,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dlopen ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -8361,7 +8583,8 @@
|
|
ac_cv_lib_svld_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_svld_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -8389,37 +8612,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char shl_load (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char shl_load (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shl_load ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_shl_load) || defined (__stub___shl_load)
|
|
choke me
|
|
#else
|
|
-f = shl_load;
|
|
+char (*f) () = shl_load;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != shl_load;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -8439,7 +8669,8 @@
|
|
ac_cv_func_shl_load=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_shl_load=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -8462,7 +8693,11 @@
|
|
LIBS="-ldld $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -8471,12 +8706,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shl_load ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -8500,7 +8729,8 @@
|
|
ac_cv_lib_dld_shl_load=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dld_shl_load=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -8529,7 +8759,11 @@
|
|
LIBS="-ldld $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -8538,12 +8772,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dld_link ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -8567,7 +8795,8 @@
|
|
ac_cv_lib_dld_dld_link=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dld_dld_link=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -8599,37 +8828,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -8649,7 +8885,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -8730,7 +8967,7 @@
|
|
lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2
|
|
lt_status=$lt_dlunknown
|
|
cat > conftest.$ac_ext <<EOF
|
|
-#line 8733 "configure"
|
|
+#line 8970 "configure"
|
|
#include "confdefs.h"
|
|
|
|
#if HAVE_DLFCN_H
|
|
@@ -8878,7 +9115,11 @@
|
|
echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
@@ -8897,7 +9138,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -8909,13 +9151,17 @@
|
|
echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -8932,7 +9178,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -8945,14 +9192,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
@@ -8982,17 +9247,15 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#if HAVE_ARGZ_H
|
|
# include <argz.h>
|
|
#endif
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -9019,7 +9282,8 @@
|
|
ac_cv_type_error_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_error_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -9057,37 +9321,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -9107,7 +9378,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -9166,7 +9438,11 @@
|
|
echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
@@ -9185,7 +9461,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -9197,13 +9474,17 @@
|
|
echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -9220,7 +9501,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -9233,14 +9515,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
@@ -9282,7 +9582,11 @@
|
|
echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
@@ -9301,7 +9605,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -9313,13 +9618,17 @@
|
|
echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -9336,7 +9645,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -9349,14 +9659,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
@@ -9397,7 +9725,11 @@
|
|
echo $ECHO_N "checking $ac_header usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
@@ -9416,7 +9748,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -9428,13 +9761,17 @@
|
|
echo $ECHO_N "checking $ac_header presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <$ac_header>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -9451,7 +9788,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -9464,14 +9802,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: $ac_header: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: $ac_header: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: $ac_header: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: $ac_header: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: $ac_header: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for $ac_header" >&5
|
|
echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6
|
|
@@ -9506,37 +9862,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -9556,7 +9919,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -9583,37 +9947,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -9633,7 +10004,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -9660,37 +10032,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -9710,7 +10089,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -9737,37 +10117,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -9787,7 +10174,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -9904,13 +10292,17 @@
|
|
# First, try using that file with no special directory specified.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <X11/Intrinsic.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -9928,7 +10320,8 @@
|
|
ac_x_includes=
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
for ac_dir in $ac_x_header_dirs; do
|
|
if test -r "$ac_dir/X11/Intrinsic.h"; then
|
|
ac_x_includes=$ac_dir
|
|
@@ -9947,14 +10340,12 @@
|
|
LIBS="-lXt $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <X11/Intrinsic.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -9980,7 +10371,8 @@
|
|
ac_x_libraries=
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
LIBS=$ac_save_LIBS
|
|
for ac_dir in `echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g`
|
|
do
|
|
@@ -10050,14 +10442,12 @@
|
|
ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10081,7 +10471,8 @@
|
|
ac_R_nospace=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_R_nospace=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10093,14 +10484,12 @@
|
|
LIBS="$ac_xsave_LIBS -R $x_libraries"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10124,7 +10513,8 @@
|
|
ac_R_space=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_R_space=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10154,7 +10544,11 @@
|
|
ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10163,12 +10557,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char XOpenDisplay ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10192,7 +10580,8 @@
|
|
:
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
echo "$as_me:$LINENO: checking for dnet_ntoa in -ldnet" >&5
|
|
echo $ECHO_N "checking for dnet_ntoa in -ldnet... $ECHO_C" >&6
|
|
if test "${ac_cv_lib_dnet_dnet_ntoa+set}" = set; then
|
|
@@ -10202,7 +10591,11 @@
|
|
LIBS="-ldnet $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10211,12 +10604,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dnet_ntoa ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10240,7 +10627,8 @@
|
|
ac_cv_lib_dnet_dnet_ntoa=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dnet_dnet_ntoa=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10262,7 +10650,11 @@
|
|
LIBS="-ldnet_stub $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10271,12 +10663,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dnet_ntoa ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10300,7 +10686,8 @@
|
|
ac_cv_lib_dnet_stub_dnet_ntoa=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dnet_stub_dnet_ntoa=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10332,37 +10719,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char gethostbyname (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char gethostbyname (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char gethostbyname ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_gethostbyname) || defined (__stub___gethostbyname)
|
|
choke me
|
|
#else
|
|
-f = gethostbyname;
|
|
+char (*f) () = gethostbyname;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != gethostbyname;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -10382,7 +10776,8 @@
|
|
ac_cv_func_gethostbyname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_gethostbyname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10400,7 +10795,11 @@
|
|
LIBS="-lnsl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10409,12 +10808,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char gethostbyname ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10438,7 +10831,8 @@
|
|
ac_cv_lib_nsl_gethostbyname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_nsl_gethostbyname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10460,7 +10854,11 @@
|
|
LIBS="-lbsd $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10469,12 +10867,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char gethostbyname ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10498,7 +10890,8 @@
|
|
ac_cv_lib_bsd_gethostbyname=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_bsd_gethostbyname=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10517,7 +10910,7 @@
|
|
# socket/setsockopt and other routines are undefined under SCO ODT
|
|
# 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary
|
|
# on later versions), says Simon Leinen: it contains gethostby*
|
|
- # variants that don't use the nameserver (or something). -lsocket
|
|
+ # variants that don't use the name server (or something). -lsocket
|
|
# must be given before -lnsl if both are needed. We assume that
|
|
# if connect needs -lnsl, so does gethostbyname.
|
|
echo "$as_me:$LINENO: checking for connect" >&5
|
|
@@ -10527,37 +10920,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char connect (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char connect (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char connect ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_connect) || defined (__stub___connect)
|
|
choke me
|
|
#else
|
|
-f = connect;
|
|
+char (*f) () = connect;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != connect;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -10577,7 +10977,8 @@
|
|
ac_cv_func_connect=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_connect=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10595,7 +10996,11 @@
|
|
LIBS="-lsocket $X_EXTRA_LIBS $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10604,12 +11009,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char connect ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10633,7 +11032,8 @@
|
|
ac_cv_lib_socket_connect=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_socket_connect=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10655,37 +11055,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char remove (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char remove (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char remove ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_remove) || defined (__stub___remove)
|
|
choke me
|
|
#else
|
|
-f = remove;
|
|
+char (*f) () = remove;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != remove;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -10705,7 +11112,8 @@
|
|
ac_cv_func_remove=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_remove=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10723,7 +11131,11 @@
|
|
LIBS="-lposix $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10732,12 +11144,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char remove ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10761,7 +11167,8 @@
|
|
ac_cv_lib_posix_remove=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_posix_remove=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10783,37 +11190,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char shmat (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char shmat (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shmat ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_shmat) || defined (__stub___shmat)
|
|
choke me
|
|
#else
|
|
-f = shmat;
|
|
+char (*f) () = shmat;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != shmat;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -10833,7 +11247,8 @@
|
|
ac_cv_func_shmat=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_func_shmat=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10851,7 +11266,11 @@
|
|
LIBS="-lipc $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10860,12 +11279,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char shmat ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10889,7 +11302,8 @@
|
|
ac_cv_lib_ipc_shmat=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_ipc_shmat=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10922,7 +11336,11 @@
|
|
LIBS="-lICE $X_EXTRA_LIBS $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -10931,12 +11349,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char IceConnectionNumber ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -10960,7 +11372,8 @@
|
|
ac_cv_lib_ICE_IceConnectionNumber=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_ICE_IceConnectionNumber=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -10985,16 +11398,14 @@
|
|
# See if sys/param.h defines the BYTE_ORDER macro.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11021,16 +11432,14 @@
|
|
# It does; now see whether it defined to BIG_ENDIAN or not.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <sys/types.h>
|
|
#include <sys/param.h>
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11057,32 +11466,32 @@
|
|
ac_cv_c_bigendian=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_c_bigendian=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
# It does not; compile a test program.
|
|
if test "$cross_compiling" = yes; then
|
|
- # try to guess the endianess by grep'ing values into an object file
|
|
+ # try to guess the endianness by grepping values into an object file
|
|
ac_cv_c_bigendian=unknown
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
short ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 };
|
|
short ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 };
|
|
void _ascii () { char *s = (char *) ascii_mm; s = (char *) ascii_ii; }
|
|
short ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 };
|
|
short ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 };
|
|
void _ebcdic () { char *s = (char *) ebcdic_mm; s = (char *) ebcdic_ii; }
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11103,10 +11512,10 @@
|
|
ac_status=$?
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
(exit $ac_status); }; }; then
|
|
- if fgrep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
|
|
+ if grep BIGenDianSyS conftest.$ac_objext >/dev/null ; then
|
|
ac_cv_c_bigendian=yes
|
|
fi
|
|
-if fgrep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
|
|
+if grep LiTTleEnDian conftest.$ac_objext >/dev/null ; then
|
|
if test "$ac_cv_c_bigendian" = unknown; then
|
|
ac_cv_c_bigendian=no
|
|
else
|
|
@@ -11116,13 +11525,18 @@
|
|
fi
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11151,11 +11565,12 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
ac_cv_c_bigendian=yes
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -11172,9 +11587,9 @@
|
|
no)
|
|
;;
|
|
*)
|
|
- { { echo "$as_me:$LINENO: error: unknown endianess
|
|
+ { { echo "$as_me:$LINENO: error: unknown endianness
|
|
presetting ac_cv_c_bigendian=no (or yes) will help" >&5
|
|
-echo "$as_me: error: unknown endianess
|
|
+echo "$as_me: error: unknown endianness
|
|
presetting ac_cv_c_bigendian=no (or yes) will help" >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
@@ -11188,10 +11603,15 @@
|
|
for ac_kw in inline __inline__ __inline; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#ifndef __cplusplus
|
|
-static $ac_kw int static_foo () {return 0; }
|
|
-$ac_kw int foo () {return 0; }
|
|
+typedef int foo_t;
|
|
+static $ac_kw foo_t static_foo () {return 0; }
|
|
+$ac_kw foo_t foo () {return 0; }
|
|
#endif
|
|
|
|
_ACEOF
|
|
@@ -11210,7 +11630,8 @@
|
|
ac_cv_c_inline=$ac_kw; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
@@ -11238,14 +11659,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11272,7 +11691,8 @@
|
|
ac_cv_type_unsigned_char=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_unsigned_char=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -11294,14 +11714,12 @@
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11328,14 +11746,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11361,7 +11777,8 @@
|
|
ac_hi=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr $ac_mid + 1`
|
|
if test $ac_lo -le $ac_mid; then
|
|
ac_lo= ac_hi=
|
|
@@ -11373,17 +11790,16 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11410,14 +11826,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11443,7 +11857,8 @@
|
|
ac_lo=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_hi=`expr '(' $ac_mid ')' - 1`
|
|
if test $ac_mid -le $ac_hi; then
|
|
ac_lo= ac_hi=
|
|
@@ -11455,7 +11870,8 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo= ac_hi=
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -11466,14 +11882,12 @@
|
|
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11499,37 +11913,40 @@
|
|
ac_hi=$ac_mid
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr '(' $ac_mid ')' + 1`
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
case $ac_lo in
|
|
?*) ac_cv_sizeof_unsigned_char=$ac_lo;;
|
|
-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned char), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned char), 77" >&2;}
|
|
+'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned char), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned char), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
long longval () { return (long) (sizeof (unsigned char)); }
|
|
unsigned long ulongval () { return (long) (sizeof (unsigned char)); }
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11572,13 +11989,16 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned char), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned char), 77" >&2;}
|
|
+{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned char), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned char), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
@@ -11600,14 +12020,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11634,7 +12052,8 @@
|
|
ac_cv_type_unsigned_short=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_unsigned_short=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -11656,14 +12075,12 @@
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11690,14 +12107,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11723,7 +12138,8 @@
|
|
ac_hi=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr $ac_mid + 1`
|
|
if test $ac_lo -le $ac_mid; then
|
|
ac_lo= ac_hi=
|
|
@@ -11735,17 +12151,16 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11772,14 +12187,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11805,7 +12218,8 @@
|
|
ac_lo=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_hi=`expr '(' $ac_mid ')' - 1`
|
|
if test $ac_mid -le $ac_hi; then
|
|
ac_lo= ac_hi=
|
|
@@ -11817,7 +12231,8 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo= ac_hi=
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -11828,14 +12243,12 @@
|
|
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11861,37 +12274,40 @@
|
|
ac_hi=$ac_mid
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr '(' $ac_mid ')' + 1`
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
case $ac_lo in
|
|
?*) ac_cv_sizeof_unsigned_short=$ac_lo;;
|
|
-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned short), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned short), 77" >&2;}
|
|
+'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned short), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned short), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
long longval () { return (long) (sizeof (unsigned short)); }
|
|
unsigned long ulongval () { return (long) (sizeof (unsigned short)); }
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11934,13 +12350,16 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned short), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned short), 77" >&2;}
|
|
+{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned short), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned short), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
@@ -11962,14 +12381,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -11996,7 +12413,8 @@
|
|
ac_cv_type_unsigned_int=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_unsigned_int=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -12018,14 +12436,12 @@
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12052,14 +12468,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12085,7 +12499,8 @@
|
|
ac_hi=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr $ac_mid + 1`
|
|
if test $ac_lo -le $ac_mid; then
|
|
ac_lo= ac_hi=
|
|
@@ -12097,17 +12512,16 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12134,14 +12548,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12167,7 +12579,8 @@
|
|
ac_lo=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_hi=`expr '(' $ac_mid ')' - 1`
|
|
if test $ac_mid -le $ac_hi; then
|
|
ac_lo= ac_hi=
|
|
@@ -12179,7 +12592,8 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo= ac_hi=
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -12190,14 +12604,12 @@
|
|
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12223,37 +12635,40 @@
|
|
ac_hi=$ac_mid
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr '(' $ac_mid ')' + 1`
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
case $ac_lo in
|
|
?*) ac_cv_sizeof_unsigned_int=$ac_lo;;
|
|
-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned int), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned int), 77" >&2;}
|
|
+'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned int), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned int), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
long longval () { return (long) (sizeof (unsigned int)); }
|
|
unsigned long ulongval () { return (long) (sizeof (unsigned int)); }
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12296,13 +12711,16 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned int), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned int), 77" >&2;}
|
|
+{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned int), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned int), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
@@ -12324,14 +12742,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12358,7 +12774,8 @@
|
|
ac_cv_type_unsigned_long=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_unsigned_long=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -12380,14 +12797,12 @@
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12414,14 +12829,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12447,7 +12860,8 @@
|
|
ac_hi=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr $ac_mid + 1`
|
|
if test $ac_lo -le $ac_mid; then
|
|
ac_lo= ac_hi=
|
|
@@ -12459,17 +12873,16 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12496,14 +12909,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12529,7 +12940,8 @@
|
|
ac_lo=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_hi=`expr '(' $ac_mid ')' - 1`
|
|
if test $ac_mid -le $ac_hi; then
|
|
ac_lo= ac_hi=
|
|
@@ -12541,7 +12953,8 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo= ac_hi=
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -12552,14 +12965,12 @@
|
|
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12585,37 +12996,40 @@
|
|
ac_hi=$ac_mid
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr '(' $ac_mid ')' + 1`
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
case $ac_lo in
|
|
?*) ac_cv_sizeof_unsigned_long=$ac_lo;;
|
|
-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned long), 77" >&2;}
|
|
+'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned long), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
long longval () { return (long) (sizeof (unsigned long)); }
|
|
unsigned long ulongval () { return (long) (sizeof (unsigned long)); }
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12658,13 +13072,16 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned long), 77" >&2;}
|
|
+{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned long), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
@@ -12686,14 +13103,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12720,7 +13135,8 @@
|
|
ac_cv_type_unsigned_long_long=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_unsigned_long_long=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -12742,14 +13158,12 @@
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12776,14 +13190,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12809,7 +13221,8 @@
|
|
ac_hi=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr $ac_mid + 1`
|
|
if test $ac_lo -le $ac_mid; then
|
|
ac_lo= ac_hi=
|
|
@@ -12821,17 +13234,16 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12858,14 +13270,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12891,7 +13301,8 @@
|
|
ac_lo=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_hi=`expr '(' $ac_mid ')' - 1`
|
|
if test $ac_mid -le $ac_hi; then
|
|
ac_lo= ac_hi=
|
|
@@ -12903,7 +13314,8 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo= ac_hi=
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -12914,14 +13326,12 @@
|
|
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -12947,37 +13357,40 @@
|
|
ac_hi=$ac_mid
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr '(' $ac_mid ')' + 1`
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
case $ac_lo in
|
|
?*) ac_cv_sizeof_unsigned_long_long=$ac_lo;;
|
|
-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned long long), 77" >&2;}
|
|
+'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned long long), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
long longval () { return (long) (sizeof (unsigned long long)); }
|
|
unsigned long ulongval () { return (long) (sizeof (unsigned long long)); }
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13020,13 +13433,16 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (unsigned long long), 77" >&2;}
|
|
+{ { echo "$as_me:$LINENO: error: cannot compute sizeof (unsigned long long), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (unsigned long long), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
@@ -13048,14 +13464,12 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13082,7 +13496,8 @@
|
|
ac_cv_type_int_p=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_int_p=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -13104,14 +13519,12 @@
|
|
# Depending upon the size, compute the lo and hi bounds.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13138,14 +13551,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13171,7 +13582,8 @@
|
|
ac_hi=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr $ac_mid + 1`
|
|
if test $ac_lo -le $ac_mid; then
|
|
ac_lo= ac_hi=
|
|
@@ -13183,17 +13595,16 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13220,14 +13631,12 @@
|
|
while :; do
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13253,7 +13662,8 @@
|
|
ac_lo=$ac_mid; break
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_hi=`expr '(' $ac_mid ')' - 1`
|
|
if test $ac_mid -le $ac_hi; then
|
|
ac_lo= ac_hi=
|
|
@@ -13265,7 +13675,8 @@
|
|
done
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo= ac_hi=
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -13276,14 +13687,12 @@
|
|
ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo`
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13309,37 +13718,40 @@
|
|
ac_hi=$ac_mid
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_lo=`expr '(' $ac_mid ')' + 1`
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
done
|
|
case $ac_lo in
|
|
?*) ac_cv_sizeof_int_p=$ac_lo;;
|
|
-'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int *), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (int *), 77" >&2;}
|
|
+'') { { echo "$as_me:$LINENO: error: cannot compute sizeof (int *), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (int *), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; } ;;
|
|
esac
|
|
else
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
long longval () { return (long) (sizeof (int *)); }
|
|
unsigned long ulongval () { return (long) (sizeof (int *)); }
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -13382,13 +13794,16 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
-{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int *), 77" >&5
|
|
-echo "$as_me: error: cannot compute sizeof (int *), 77" >&2;}
|
|
+{ { echo "$as_me:$LINENO: error: cannot compute sizeof (int *), 77
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot compute sizeof (int *), 77
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
fi
|
|
rm -f conftest.val
|
|
@@ -13414,37 +13829,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -13464,7 +13886,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -13493,37 +13916,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -13543,7 +13973,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -13572,37 +14003,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -13622,7 +14060,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -13651,37 +14090,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -13701,7 +14147,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -13730,37 +14177,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -13780,7 +14234,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -13809,37 +14264,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -13859,7 +14321,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -13888,37 +14351,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -13938,7 +14408,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -13967,37 +14438,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14017,7 +14495,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14046,37 +14525,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14096,7 +14582,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14125,37 +14612,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14175,7 +14669,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14204,37 +14699,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14254,7 +14756,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14283,37 +14786,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14333,7 +14843,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14362,37 +14873,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14412,7 +14930,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14437,16 +14956,14 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <sys/types.h>
|
|
#include <sys/socket.h>
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -14473,7 +14990,8 @@
|
|
ac_cv_type_socklen_t=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_type_socklen_t=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -14494,16 +15012,14 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <sys/socket.h>
|
|
#include <netinet/in.h>
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -14529,11 +15045,51 @@
|
|
ac_cv_member_struct_sockaddr_in_sin_len=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
+cat >conftest.$ac_ext <<_ACEOF
|
|
+#line $LINENO "configure"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
+#include <sys/socket.h>
|
|
+#include <netinet/in.h>
|
|
+
|
|
+int
|
|
+main ()
|
|
+{
|
|
+static struct sockaddr_in ac_aggr;
|
|
+if (sizeof ac_aggr.sin_len)
|
|
+return 0;
|
|
+ ;
|
|
+ return 0;
|
|
+}
|
|
+_ACEOF
|
|
+rm -f conftest.$ac_objext
|
|
+if { (eval echo "$as_me:$LINENO: \"$ac_compile\"") >&5
|
|
+ (eval $ac_compile) 2>&5
|
|
+ ac_status=$?
|
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); } &&
|
|
+ { ac_try='test -s conftest.$ac_objext'
|
|
+ { (eval echo "$as_me:$LINENO: \"$ac_try\"") >&5
|
|
+ (eval $ac_try) 2>&5
|
|
+ ac_status=$?
|
|
+ echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
+ (exit $ac_status); }; }; then
|
|
+ ac_cv_member_struct_sockaddr_in_sin_len=yes
|
|
+else
|
|
+ echo "$as_me: failed program was:" >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_member_struct_sockaddr_in_sin_len=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
+rm -f conftest.$ac_objext conftest.$ac_ext
|
|
+fi
|
|
echo "$as_me:$LINENO: result: $ac_cv_member_struct_sockaddr_in_sin_len" >&5
|
|
echo "${ECHO_T}$ac_cv_member_struct_sockaddr_in_sin_len" >&6
|
|
if test $ac_cv_member_struct_sockaddr_in_sin_len = yes; then
|
|
@@ -14560,15 +15116,13 @@
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#define _FILE_OFFSET_BITS 64
|
|
#include <sys/types.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -14595,7 +15149,8 @@
|
|
ac_cv_sys_file_offset_bits=64
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_sys_file_offset_bits=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -14623,15 +15178,13 @@
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#define _LARGE_FILES 1
|
|
#include <sys/types.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -14658,7 +15211,8 @@
|
|
ac_cv_sys_large_files=1
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_sys_large_files=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -14715,37 +15269,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14765,7 +15326,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14791,37 +15353,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14841,7 +15410,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14879,37 +15449,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -14929,7 +15506,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -14955,37 +15533,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -15005,7 +15590,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -15037,14 +15623,12 @@
|
|
echo $ECHO_N "checking for struct timeval... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <sys/time.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -15075,7 +15659,8 @@
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
@@ -15085,14 +15670,12 @@
|
|
echo $ECHO_N "checking if compiler allows empty structs... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -15117,7 +15700,8 @@
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
|
|
cat >>confdefs.h <<\_ACEOF
|
|
#define BX_NO_EMPTY_STRUCTS 1
|
|
@@ -15133,14 +15717,12 @@
|
|
echo $ECHO_N "checking if compiler allows __attribute__... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -15165,7 +15747,8 @@
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
@@ -15190,14 +15773,12 @@
|
|
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <hash_map.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -15228,7 +15809,8 @@
|
|
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
fi
|
|
@@ -15261,7 +15843,11 @@
|
|
echo $ECHO_N "checking app/Application.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <app/Application.h>
|
|
_ACEOF
|
|
@@ -15280,7 +15866,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -15292,13 +15879,17 @@
|
|
echo $ECHO_N "checking app/Application.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <app/Application.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -15315,7 +15906,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -15328,14 +15920,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: app/Application.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: app/Application.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: app/Application.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: app/Application.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: app/Application.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: app/Application.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: app/Application.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: app/Application.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: app/Application.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: app/Application.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: app/Application.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: app/Application.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for app/Application.h" >&5
|
|
echo $ECHO_N "checking for app/Application.h... $ECHO_C" >&6
|
|
@@ -15369,7 +15979,11 @@
|
|
echo $ECHO_N "checking interface/Window.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <interface/Window.h>
|
|
_ACEOF
|
|
@@ -15388,7 +16002,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -15400,13 +16015,17 @@
|
|
echo $ECHO_N "checking interface/Window.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <interface/Window.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -15423,7 +16042,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -15436,14 +16056,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: interface/Window.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: interface/Window.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: interface/Window.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: interface/Window.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: interface/Window.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: interface/Window.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: interface/Window.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: interface/Window.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: interface/Window.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: interface/Window.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: interface/Window.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: interface/Window.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for interface/Window.h" >&5
|
|
echo $ECHO_N "checking for interface/Window.h... $ECHO_C" >&6
|
|
@@ -15477,7 +16115,11 @@
|
|
echo $ECHO_N "checking interface/View.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <interface/View.h>
|
|
_ACEOF
|
|
@@ -15496,7 +16138,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -15508,13 +16151,17 @@
|
|
echo $ECHO_N "checking interface/View.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <interface/View.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -15531,7 +16178,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -15544,14 +16192,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: interface/View.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: interface/View.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: interface/View.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: interface/View.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: interface/View.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: interface/View.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: interface/View.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: interface/View.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: interface/View.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: interface/View.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: interface/View.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: interface/View.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for interface/View.h" >&5
|
|
echo $ECHO_N "checking for interface/View.h... $ECHO_C" >&6
|
|
@@ -15592,7 +16258,11 @@
|
|
echo $ECHO_N "checking proto/intuition.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <proto/intuition.h>
|
|
_ACEOF
|
|
@@ -15611,7 +16281,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -15623,13 +16294,17 @@
|
|
echo $ECHO_N "checking proto/intuition.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <proto/intuition.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -15646,7 +16321,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -15659,14 +16335,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: proto/intuition.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: proto/intuition.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: proto/intuition.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: proto/intuition.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: proto/intuition.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: proto/intuition.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: proto/intuition.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: proto/intuition.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: proto/intuition.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: proto/intuition.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: proto/intuition.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: proto/intuition.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for proto/intuition.h" >&5
|
|
echo $ECHO_N "checking for proto/intuition.h... $ECHO_C" >&6
|
|
@@ -15700,7 +16394,11 @@
|
|
echo $ECHO_N "checking intuition/intuitionbase.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <intuition/intuitionbase.h>
|
|
_ACEOF
|
|
@@ -15719,7 +16417,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -15731,13 +16430,17 @@
|
|
echo $ECHO_N "checking intuition/intuitionbase.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <intuition/intuitionbase.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -15754,7 +16457,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -15767,14 +16471,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: intuition/intuitionbase.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: intuition/intuitionbase.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: intuition/intuitionbase.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: intuition/intuitionbase.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: intuition/intuitionbase.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: intuition/intuitionbase.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: intuition/intuitionbase.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: intuition/intuitionbase.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: intuition/intuitionbase.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: intuition/intuitionbase.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: intuition/intuitionbase.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: intuition/intuitionbase.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for intuition/intuitionbase.h" >&5
|
|
echo $ECHO_N "checking for intuition/intuitionbase.h... $ECHO_C" >&6
|
|
@@ -15808,7 +16530,11 @@
|
|
echo $ECHO_N "checking cybergraphx/cybergraphics.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <cybergraphx/cybergraphics.h>
|
|
_ACEOF
|
|
@@ -15827,7 +16553,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -15839,13 +16566,17 @@
|
|
echo $ECHO_N "checking cybergraphx/cybergraphics.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <cybergraphx/cybergraphics.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -15862,7 +16593,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -15875,14 +16607,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: cybergraphx/cybergraphics.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: cybergraphx/cybergraphics.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: cybergraphx/cybergraphics.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: cybergraphx/cybergraphics.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: cybergraphx/cybergraphics.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: cybergraphx/cybergraphics.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: cybergraphx/cybergraphics.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: cybergraphx/cybergraphics.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: cybergraphx/cybergraphics.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: cybergraphx/cybergraphics.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: cybergraphx/cybergraphics.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: cybergraphx/cybergraphics.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for cybergraphx/cybergraphics.h" >&5
|
|
echo $ECHO_N "checking for cybergraphx/cybergraphics.h... $ECHO_C" >&6
|
|
@@ -15916,7 +16666,11 @@
|
|
echo $ECHO_N "checking devices/trackdisk.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <devices/trackdisk.h>
|
|
_ACEOF
|
|
@@ -15935,7 +16689,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -15947,13 +16702,17 @@
|
|
echo $ECHO_N "checking devices/trackdisk.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <devices/trackdisk.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -15970,7 +16729,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -15983,14 +16743,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: devices/trackdisk.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: devices/trackdisk.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: devices/trackdisk.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: devices/trackdisk.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: devices/trackdisk.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: devices/trackdisk.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: devices/trackdisk.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: devices/trackdisk.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: devices/trackdisk.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: devices/trackdisk.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: devices/trackdisk.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: devices/trackdisk.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for devices/trackdisk.h" >&5
|
|
echo $ECHO_N "checking for devices/trackdisk.h... $ECHO_C" >&6
|
|
@@ -16031,7 +16809,11 @@
|
|
echo $ECHO_N "checking Quickdraw.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <Quickdraw.h>
|
|
_ACEOF
|
|
@@ -16050,7 +16832,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16062,13 +16845,17 @@
|
|
echo $ECHO_N "checking Quickdraw.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <Quickdraw.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16085,7 +16872,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16098,14 +16886,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: Quickdraw.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: Quickdraw.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Quickdraw.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: Quickdraw.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: Quickdraw.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: Quickdraw.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: Quickdraw.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Quickdraw.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: Quickdraw.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Quickdraw.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: Quickdraw.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: Quickdraw.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for Quickdraw.h" >&5
|
|
echo $ECHO_N "checking for Quickdraw.h... $ECHO_C" >&6
|
|
@@ -16139,7 +16945,11 @@
|
|
echo $ECHO_N "checking Dialogs.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <Dialogs.h>
|
|
_ACEOF
|
|
@@ -16158,7 +16968,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16170,13 +16981,17 @@
|
|
echo $ECHO_N "checking Dialogs.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <Dialogs.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16193,7 +17008,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16206,14 +17022,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: Dialogs.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: Dialogs.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Dialogs.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: Dialogs.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: Dialogs.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: Dialogs.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: Dialogs.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Dialogs.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: Dialogs.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Dialogs.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: Dialogs.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: Dialogs.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for Dialogs.h" >&5
|
|
echo $ECHO_N "checking for Dialogs.h... $ECHO_C" >&6
|
|
@@ -16254,7 +17088,11 @@
|
|
echo $ECHO_N "checking Carbon.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <Carbon.h>
|
|
_ACEOF
|
|
@@ -16273,7 +17111,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16285,13 +17124,17 @@
|
|
echo $ECHO_N "checking Carbon.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <Carbon.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16308,7 +17151,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16321,14 +17165,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: Carbon.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: Carbon.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Carbon.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: Carbon.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: Carbon.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: Carbon.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: Carbon.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Carbon.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: Carbon.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: Carbon.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: Carbon.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: Carbon.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for Carbon.h" >&5
|
|
echo $ECHO_N "checking for Carbon.h... $ECHO_C" >&6
|
|
@@ -16362,7 +17224,11 @@
|
|
echo $ECHO_N "checking ApplicationServices/ApplicationServices.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
_ACEOF
|
|
@@ -16381,7 +17247,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16393,13 +17260,17 @@
|
|
echo $ECHO_N "checking ApplicationServices/ApplicationServices.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <ApplicationServices/ApplicationServices.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16416,7 +17287,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16429,14 +17301,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: ApplicationServices/ApplicationServices.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: ApplicationServices/ApplicationServices.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: ApplicationServices/ApplicationServices.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: ApplicationServices/ApplicationServices.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: ApplicationServices/ApplicationServices.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: ApplicationServices/ApplicationServices.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: ApplicationServices/ApplicationServices.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: ApplicationServices/ApplicationServices.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: ApplicationServices/ApplicationServices.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: ApplicationServices/ApplicationServices.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: ApplicationServices/ApplicationServices.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: ApplicationServices/ApplicationServices.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for ApplicationServices/ApplicationServices.h" >&5
|
|
echo $ECHO_N "checking for ApplicationServices/ApplicationServices.h... $ECHO_C" >&6
|
|
@@ -16477,7 +17367,11 @@
|
|
echo $ECHO_N "checking windows.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <windows.h>
|
|
_ACEOF
|
|
@@ -16496,7 +17390,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16508,13 +17403,17 @@
|
|
echo $ECHO_N "checking windows.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <windows.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16531,7 +17430,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16544,14 +17444,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: windows.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: windows.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: windows.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: windows.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: windows.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: windows.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: windows.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: windows.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: windows.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: windows.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: windows.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: windows.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for windows.h" >&5
|
|
echo $ECHO_N "checking for windows.h... $ECHO_C" >&6
|
|
@@ -16585,7 +17503,11 @@
|
|
echo $ECHO_N "checking commctrl.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <commctrl.h>
|
|
_ACEOF
|
|
@@ -16604,7 +17526,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16616,13 +17539,17 @@
|
|
echo $ECHO_N "checking commctrl.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <commctrl.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16639,7 +17566,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16652,14 +17580,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: commctrl.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: commctrl.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: commctrl.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: commctrl.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: commctrl.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: commctrl.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: commctrl.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: commctrl.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: commctrl.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: commctrl.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: commctrl.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: commctrl.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for commctrl.h" >&5
|
|
echo $ECHO_N "checking for commctrl.h... $ECHO_C" >&6
|
|
@@ -16700,7 +17646,11 @@
|
|
echo $ECHO_N "checking SDL/SDL.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <SDL/SDL.h>
|
|
_ACEOF
|
|
@@ -16719,7 +17669,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16731,13 +17682,17 @@
|
|
echo $ECHO_N "checking SDL/SDL.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <SDL/SDL.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16754,7 +17709,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16767,14 +17723,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: SDL/SDL.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: SDL/SDL.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: SDL/SDL.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: SDL/SDL.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: SDL/SDL.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: SDL/SDL.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: SDL/SDL.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for SDL/SDL.h" >&5
|
|
echo $ECHO_N "checking for SDL/SDL.h... $ECHO_C" >&6
|
|
@@ -16808,7 +17782,11 @@
|
|
echo $ECHO_N "checking SDL/SDL_main.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <SDL/SDL_main.h>
|
|
_ACEOF
|
|
@@ -16827,7 +17805,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16839,13 +17818,17 @@
|
|
echo $ECHO_N "checking SDL/SDL_main.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <SDL/SDL_main.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16862,7 +17845,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16875,14 +17859,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL_main.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: SDL/SDL_main.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL_main.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: SDL/SDL_main.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: SDL/SDL_main.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL_main.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: SDL/SDL_main.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL_main.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: SDL/SDL_main.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: SDL/SDL_main.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: SDL/SDL_main.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: SDL/SDL_main.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for SDL/SDL_main.h" >&5
|
|
echo $ECHO_N "checking for SDL/SDL_main.h... $ECHO_C" >&6
|
|
@@ -16923,7 +17925,11 @@
|
|
echo $ECHO_N "checking vga.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <vga.h>
|
|
_ACEOF
|
|
@@ -16942,7 +17948,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -16954,13 +17961,17 @@
|
|
echo $ECHO_N "checking vga.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <vga.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -16977,7 +17988,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -16990,14 +18002,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: vga.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: vga.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: vga.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: vga.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: vga.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: vga.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: vga.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: vga.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: vga.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: vga.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: vga.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: vga.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for vga.h" >&5
|
|
echo $ECHO_N "checking for vga.h... $ECHO_C" >&6
|
|
@@ -17031,7 +18061,11 @@
|
|
echo $ECHO_N "checking vgagl.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <vgagl.h>
|
|
_ACEOF
|
|
@@ -17050,7 +18084,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17062,13 +18097,17 @@
|
|
echo $ECHO_N "checking vgagl.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <vgagl.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17085,7 +18124,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17098,14 +18138,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: vgagl.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: vgagl.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: vgagl.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: vgagl.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: vgagl.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: vgagl.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: vgagl.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: vgagl.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: vgagl.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: vgagl.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: vgagl.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: vgagl.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for vgagl.h" >&5
|
|
echo $ECHO_N "checking for vgagl.h... $ECHO_C" >&6
|
|
@@ -17146,7 +18204,11 @@
|
|
echo $ECHO_N "checking X11/Xlib.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <X11/Xlib.h>
|
|
_ACEOF
|
|
@@ -17165,7 +18227,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17177,13 +18240,17 @@
|
|
echo $ECHO_N "checking X11/Xlib.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <X11/Xlib.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17200,7 +18267,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17213,14 +18281,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xlib.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: X11/Xlib.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xlib.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: X11/Xlib.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: X11/Xlib.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xlib.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: X11/Xlib.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xlib.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: X11/Xlib.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xlib.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: X11/Xlib.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: X11/Xlib.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for X11/Xlib.h" >&5
|
|
echo $ECHO_N "checking for X11/Xlib.h... $ECHO_C" >&6
|
|
@@ -17254,7 +18340,11 @@
|
|
echo $ECHO_N "checking X11/Xutil.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <X11/Xutil.h>
|
|
_ACEOF
|
|
@@ -17273,7 +18363,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17285,13 +18376,17 @@
|
|
echo $ECHO_N "checking X11/Xutil.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <X11/Xutil.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17308,7 +18403,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17321,14 +18417,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xutil.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: X11/Xutil.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xutil.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: X11/Xutil.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: X11/Xutil.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xutil.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: X11/Xutil.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xutil.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: X11/Xutil.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: X11/Xutil.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: X11/Xutil.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: X11/Xutil.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for X11/Xutil.h" >&5
|
|
echo $ECHO_N "checking for X11/Xutil.h... $ECHO_C" >&6
|
|
@@ -17371,7 +18485,11 @@
|
|
echo $ECHO_N "checking winsock.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <winsock.h>
|
|
_ACEOF
|
|
@@ -17390,7 +18508,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17402,13 +18521,17 @@
|
|
echo $ECHO_N "checking winsock.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <winsock.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17425,7 +18548,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17438,14 +18562,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: winsock.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: winsock.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: winsock.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: winsock.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: winsock.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: winsock.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: winsock.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: winsock.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: winsock.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: winsock.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: winsock.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: winsock.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for winsock.h" >&5
|
|
echo $ECHO_N "checking for winsock.h... $ECHO_C" >&6
|
|
@@ -17479,7 +18621,11 @@
|
|
echo $ECHO_N "checking process.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <process.h>
|
|
_ACEOF
|
|
@@ -17498,7 +18644,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17510,13 +18657,17 @@
|
|
echo $ECHO_N "checking process.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <process.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17533,7 +18684,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17546,14 +18698,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: process.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: process.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: process.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: process.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: process.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: process.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: process.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: process.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: process.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: process.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: process.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: process.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for process.h" >&5
|
|
echo $ECHO_N "checking for process.h... $ECHO_C" >&6
|
|
@@ -17589,7 +18759,11 @@
|
|
echo $ECHO_N "checking sys/socket.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <sys/socket.h>
|
|
_ACEOF
|
|
@@ -17608,7 +18782,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17620,13 +18795,17 @@
|
|
echo $ECHO_N "checking sys/socket.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <sys/socket.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17643,7 +18822,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17656,14 +18836,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: sys/socket.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: sys/socket.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: sys/socket.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: sys/socket.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: sys/socket.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: sys/socket.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: sys/socket.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for sys/socket.h" >&5
|
|
echo $ECHO_N "checking for sys/socket.h... $ECHO_C" >&6
|
|
@@ -17697,7 +18895,11 @@
|
|
echo $ECHO_N "checking netinet/tcp.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <netinet/tcp.h>
|
|
_ACEOF
|
|
@@ -17716,7 +18918,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17728,13 +18931,17 @@
|
|
echo $ECHO_N "checking netinet/tcp.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <netinet/tcp.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17751,7 +18958,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17764,14 +18972,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: netinet/tcp.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: netinet/tcp.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: netinet/tcp.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: netinet/tcp.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: netinet/tcp.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: netinet/tcp.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: netinet/tcp.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: netinet/tcp.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: netinet/tcp.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: netinet/tcp.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: netinet/tcp.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: netinet/tcp.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for netinet/tcp.h" >&5
|
|
echo $ECHO_N "checking for netinet/tcp.h... $ECHO_C" >&6
|
|
@@ -17805,7 +19031,11 @@
|
|
echo $ECHO_N "checking pthread.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <pthread.h>
|
|
_ACEOF
|
|
@@ -17824,7 +19054,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17836,13 +19067,17 @@
|
|
echo $ECHO_N "checking pthread.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <pthread.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17859,7 +19094,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17872,14 +19108,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: pthread.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: pthread.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for pthread.h" >&5
|
|
echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
|
|
@@ -17922,7 +19176,11 @@
|
|
echo $ECHO_N "checking curses.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <curses.h>
|
|
_ACEOF
|
|
@@ -17941,7 +19199,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -17953,13 +19212,17 @@
|
|
echo $ECHO_N "checking curses.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <curses.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -17976,7 +19239,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -17989,14 +19253,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: curses.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: curses.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: curses.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: curses.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: curses.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: curses.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: curses.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: curses.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: curses.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: curses.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: curses.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: curses.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for curses.h" >&5
|
|
echo $ECHO_N "checking for curses.h... $ECHO_C" >&6
|
|
@@ -18030,7 +19312,11 @@
|
|
echo $ECHO_N "checking signal.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <signal.h>
|
|
_ACEOF
|
|
@@ -18049,7 +19335,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -18061,13 +19348,17 @@
|
|
echo $ECHO_N "checking signal.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <signal.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -18084,7 +19375,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -18097,14 +19389,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: signal.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: signal.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: signal.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: signal.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: signal.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: signal.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: signal.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: signal.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: signal.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: signal.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: signal.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: signal.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for signal.h" >&5
|
|
echo $ECHO_N "checking for signal.h... $ECHO_C" >&6
|
|
@@ -18287,7 +19597,11 @@
|
|
echo $ECHO_N "checking dlfcn.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <dlfcn.h>
|
|
_ACEOF
|
|
@@ -18306,7 +19620,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -18318,13 +19633,17 @@
|
|
echo $ECHO_N "checking dlfcn.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <dlfcn.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -18341,7 +19660,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -18354,14 +19674,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: dlfcn.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: dlfcn.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: dlfcn.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: dlfcn.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: dlfcn.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: dlfcn.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: dlfcn.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: dlfcn.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: dlfcn.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: dlfcn.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: dlfcn.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: dlfcn.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for dlfcn.h" >&5
|
|
echo $ECHO_N "checking for dlfcn.h... $ECHO_C" >&6
|
|
@@ -18396,7 +19734,11 @@
|
|
echo $ECHO_N "checking assert.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <assert.h>
|
|
_ACEOF
|
|
@@ -18415,7 +19757,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -18427,13 +19770,17 @@
|
|
echo $ECHO_N "checking assert.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <assert.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -18450,7 +19797,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -18463,14 +19811,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: assert.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: assert.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: assert.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: assert.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: assert.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: assert.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: assert.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: assert.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: assert.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: assert.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: assert.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: assert.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for assert.h" >&5
|
|
echo $ECHO_N "checking for assert.h... $ECHO_C" >&6
|
|
@@ -18556,7 +19922,11 @@
|
|
LIBS="-ldl $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -18565,12 +19935,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char dlopen ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -18594,7 +19958,8 @@
|
|
ac_cv_lib_dl_dlopen=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_dl_dlopen=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -18754,14 +20119,12 @@
|
|
echo $ECHO_N "checking if compiler allows blank labels... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -18786,7 +20149,8 @@
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
@@ -18802,14 +20166,12 @@
|
|
echo $ECHO_N "checking if compiler allows LL for 64-bit constants... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -18834,7 +20196,8 @@
|
|
echo "${ECHO_T}yes" >&6
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
@@ -19103,7 +20466,11 @@
|
|
echo $ECHO_N "checking net/bpf.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <net/bpf.h>
|
|
_ACEOF
|
|
@@ -19122,7 +20489,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -19134,13 +20502,17 @@
|
|
echo $ECHO_N "checking net/bpf.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <net/bpf.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -19157,7 +20529,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -19170,14 +20543,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: net/bpf.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: net/bpf.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: net/bpf.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: net/bpf.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: net/bpf.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: net/bpf.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: net/bpf.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: net/bpf.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: net/bpf.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: net/bpf.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: net/bpf.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: net/bpf.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for net/bpf.h" >&5
|
|
echo $ECHO_N "checking for net/bpf.h... $ECHO_C" >&6
|
|
@@ -19209,7 +20600,11 @@
|
|
echo $ECHO_N "checking netpacket/packet.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <netpacket/packet.h>
|
|
_ACEOF
|
|
@@ -19228,7 +20623,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -19240,13 +20636,17 @@
|
|
echo $ECHO_N "checking netpacket/packet.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <netpacket/packet.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -19263,7 +20663,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -19276,14 +20677,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: netpacket/packet.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: netpacket/packet.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: netpacket/packet.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: netpacket/packet.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: netpacket/packet.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: netpacket/packet.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: netpacket/packet.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: netpacket/packet.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: netpacket/packet.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: netpacket/packet.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: netpacket/packet.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: netpacket/packet.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for netpacket/packet.h" >&5
|
|
echo $ECHO_N "checking for netpacket/packet.h... $ECHO_C" >&6
|
|
@@ -19308,7 +20727,11 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
#include <asm/types.h>
|
|
#include <sys/socket.h>
|
|
@@ -19331,7 +20754,8 @@
|
|
ac_cv_header_linux_netlink_h=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_header_linux_netlink_h=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -19356,7 +20780,11 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
#include <asm/types.h>
|
|
#include <sys/socket.h>
|
|
@@ -19379,7 +20807,8 @@
|
|
ac_cv_header_linux_if_tun_h=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_header_linux_if_tun_h=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -19687,6 +21116,29 @@
|
|
|
|
fi;
|
|
|
|
+echo "$as_me:$LINENO: checking for gcc fast function calls optimization" >&5
|
|
+echo $ECHO_N "checking for gcc fast function calls optimization... $ECHO_C" >&6
|
|
+# Check whether --enable-fast-function-calls or --disable-fast-function-calls was given.
|
|
+if test "${enable_fast_function_calls+set}" = set; then
|
|
+ enableval="$enable_fast_function_calls"
|
|
+ if test "$enableval" = yes; then
|
|
+ echo "$as_me:$LINENO: result: yes" >&5
|
|
+echo "${ECHO_T}yes" >&6
|
|
+ speedup_fastcall=1
|
|
+ else
|
|
+ echo "$as_me:$LINENO: result: no" >&5
|
|
+echo "${ECHO_T}no" >&6
|
|
+ speedup_fastcall=0
|
|
+ fi
|
|
+else
|
|
+
|
|
+ echo "$as_me:$LINENO: result: no" >&5
|
|
+echo "${ECHO_T}no" >&6
|
|
+ speedup_fastcall=0
|
|
+
|
|
+
|
|
+fi;
|
|
+
|
|
echo "$as_me:$LINENO: checking for global pages support" >&5
|
|
echo $ECHO_N "checking for global pages support... $ECHO_C" >&6
|
|
# Check whether --enable-global-pages or --disable-global-pages was given.
|
|
@@ -20023,6 +21475,7 @@
|
|
speedup_repeat=1
|
|
speedup_iCache=1
|
|
speedup_host_specific_asms=1
|
|
+ speedup_fastcall=1
|
|
fi
|
|
|
|
if test "$speedup_guest2host_tlb" = 1; then
|
|
@@ -20073,6 +21526,17 @@
|
|
|
|
fi
|
|
|
|
+if test "$speedup_fastcall" = 1; then
|
|
+ cat >>confdefs.h <<\_ACEOF
|
|
+#define BX_FAST_FUNC_CALL 1
|
|
+_ACEOF
|
|
+
|
|
+else
|
|
+ cat >>confdefs.h <<\_ACEOF
|
|
+#define BX_FAST_FUNC_CALL 0
|
|
+_ACEOF
|
|
+
|
|
+fi
|
|
|
|
|
|
READLINE_LIB=""
|
|
@@ -20084,13 +21548,19 @@
|
|
OLD_LIBS=$LIBS
|
|
LIBS="$LIBS -lreadline"
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
#include <stdio.h>
|
|
#include <readline/readline.h>
|
|
@@ -20114,25 +21584,32 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
echo "$as_me:$LINENO: checking if readline works with -lcurses" >&5
|
|
echo $ECHO_N "checking if readline works with -lcurses... $ECHO_C" >&6
|
|
LIBS="$LIBS -lcurses"
|
|
if test "$cross_compiling" = yes; then
|
|
- { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling" >&5
|
|
-echo "$as_me: error: cannot run test program while cross compiling" >&2;}
|
|
+ { { echo "$as_me:$LINENO: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&5
|
|
+echo "$as_me: error: cannot run test program while cross compiling
|
|
+See \`config.log' for more details." >&2;}
|
|
{ (exit 1); exit 1; }; }
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
#include <stdio.h>
|
|
#include <readline/readline.h>
|
|
@@ -20156,13 +21633,14 @@
|
|
else
|
|
echo "$as_me: program exited with status $ac_status" >&5
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
( exit $ac_status )
|
|
echo "$as_me:$LINENO: result: no" >&5
|
|
echo "${ECHO_T}no" >&6
|
|
|
|
fi
|
|
-rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
+rm -f core core.* *.core gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
|
|
fi
|
|
LIBS=$OLD_LIBS
|
|
|
|
@@ -20241,7 +21719,11 @@
|
|
echo $ECHO_N "checking readline/history.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <readline/history.h>
|
|
_ACEOF
|
|
@@ -20260,7 +21742,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -20272,13 +21755,17 @@
|
|
echo $ECHO_N "checking readline/history.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <readline/history.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -20295,7 +21782,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -20308,14 +21796,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: readline/history.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: readline/history.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: readline/history.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: readline/history.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: readline/history.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: readline/history.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: readline/history.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: readline/history.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: readline/history.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: readline/history.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: readline/history.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: readline/history.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for readline/history.h" >&5
|
|
echo $ECHO_N "checking for readline/history.h... $ECHO_C" >&6
|
|
@@ -20729,7 +22235,11 @@
|
|
echo $ECHO_N "checking IOKit/storage/IOCDMedia.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <IOKit/storage/IOCDMedia.h>
|
|
_ACEOF
|
|
@@ -20748,7 +22258,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -20760,13 +22271,17 @@
|
|
echo $ECHO_N "checking IOKit/storage/IOCDMedia.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <IOKit/storage/IOCDMedia.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -20783,7 +22298,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -20796,14 +22312,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: IOKit/storage/IOCDMedia.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: IOKit/storage/IOCDMedia.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: IOKit/storage/IOCDMedia.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: IOKit/storage/IOCDMedia.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: IOKit/storage/IOCDMedia.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: IOKit/storage/IOCDMedia.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: IOKit/storage/IOCDMedia.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: IOKit/storage/IOCDMedia.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: IOKit/storage/IOCDMedia.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: IOKit/storage/IOCDMedia.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: IOKit/storage/IOCDMedia.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: IOKit/storage/IOCDMedia.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for IOKit/storage/IOCDMedia.h" >&5
|
|
echo $ECHO_N "checking for IOKit/storage/IOCDMedia.h... $ECHO_C" >&6
|
|
@@ -21703,7 +23237,11 @@
|
|
LIBS="-lmingwex $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -21712,12 +23250,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char opendir ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -21741,7 +23273,8 @@
|
|
ac_cv_lib_mingwex_opendir=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_mingwex_opendir=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -21771,7 +23304,11 @@
|
|
LIBS="-lcurses $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -21780,12 +23317,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char mvaddch ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -21809,7 +23340,8 @@
|
|
ac_cv_lib_curses_mvaddch=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_curses_mvaddch=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -21830,7 +23362,11 @@
|
|
LIBS="-lncurses $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -21839,12 +23375,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char mvaddch ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -21868,7 +23398,8 @@
|
|
ac_cv_lib_ncurses_mvaddch=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_ncurses_mvaddch=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -21889,7 +23420,11 @@
|
|
LIBS="-ltermlib $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -21898,12 +23433,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char mvaddch ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -21927,7 +23456,8 @@
|
|
ac_cv_lib_termlib_mvaddch=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_termlib_mvaddch=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -21948,7 +23478,11 @@
|
|
LIBS="-lpdcurses $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -21957,12 +23491,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char mvaddch ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -21986,7 +23514,8 @@
|
|
ac_cv_lib_pdcurses_mvaddch=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_pdcurses_mvaddch=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -22018,37 +23547,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -22068,7 +23604,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -22102,37 +23639,44 @@
|
|
else
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
/* System header to define __stub macros and hopefully few prototypes,
|
|
- which can conflict with char $ac_func (); below. */
|
|
-#include <assert.h>
|
|
+ which can conflict with char $ac_func (); below.
|
|
+ Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
|
|
+ <limits.h> exists even on freestanding compilers. */
|
|
+#ifdef __STDC__
|
|
+# include <limits.h>
|
|
+#else
|
|
+# include <assert.h>
|
|
+#endif
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
+{
|
|
#endif
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char $ac_func ();
|
|
-char (*f) ();
|
|
-
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
-int
|
|
-main ()
|
|
-{
|
|
/* The GNU C library defines this for functions which it implements
|
|
to always fail with ENOSYS. Some functions are actually named
|
|
something starting with __ and the normal name is an alias. */
|
|
#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
|
|
choke me
|
|
#else
|
|
-f = $ac_func;
|
|
+char (*f) () = $ac_func;
|
|
+#endif
|
|
+#ifdef __cplusplus
|
|
+}
|
|
#endif
|
|
|
|
+int
|
|
+main ()
|
|
+{
|
|
+return f != $ac_func;
|
|
;
|
|
return 0;
|
|
}
|
|
@@ -22152,7 +23696,8 @@
|
|
eval "$as_ac_var=yes"
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
eval "$as_ac_var=no"
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -22177,7 +23722,11 @@
|
|
LIBS="-lsocket $LIBS"
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -22186,12 +23735,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char socket ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -22215,7 +23758,8 @@
|
|
ac_cv_lib_socket_socket=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_cv_lib_socket_socket=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -22262,7 +23806,11 @@
|
|
echo $ECHO_N "checking pthread.h usability... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
$ac_includes_default
|
|
#include <pthread.h>
|
|
_ACEOF
|
|
@@ -22281,7 +23829,8 @@
|
|
ac_header_compiler=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_compiler=no
|
|
fi
|
|
rm -f conftest.$ac_objext conftest.$ac_ext
|
|
@@ -22293,13 +23842,17 @@
|
|
echo $ECHO_N "checking pthread.h presence... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <pthread.h>
|
|
_ACEOF
|
|
if { (eval echo "$as_me:$LINENO: \"$ac_cpp conftest.$ac_ext\"") >&5
|
|
(eval $ac_cpp conftest.$ac_ext) 2>conftest.er1
|
|
ac_status=$?
|
|
- egrep -v '^ *\+' conftest.er1 >conftest.err
|
|
+ grep -v '^ *+' conftest.er1 >conftest.err
|
|
rm -f conftest.er1
|
|
cat conftest.err >&5
|
|
echo "$as_me:$LINENO: \$? = $ac_status" >&5
|
|
@@ -22316,7 +23869,8 @@
|
|
ac_header_preproc=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
- cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ac_header_preproc=no
|
|
fi
|
|
rm -f conftest.err conftest.$ac_ext
|
|
@@ -22329,14 +23883,32 @@
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&5
|
|
echo "$as_me: WARNING: pthread.h: accepted by the compiler, rejected by the preprocessor!" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
no:yes )
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: present but cannot be compiled" >&5
|
|
echo "$as_me: WARNING: pthread.h: present but cannot be compiled" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: check for missing prerequisite headers?" >&5
|
|
echo "$as_me: WARNING: pthread.h: check for missing prerequisite headers?" >&2;}
|
|
{ echo "$as_me:$LINENO: WARNING: pthread.h: proceeding with the preprocessor's result" >&5
|
|
-echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;};;
|
|
+echo "$as_me: WARNING: pthread.h: proceeding with the preprocessor's result" >&2;}
|
|
+ (
|
|
+ cat <<\_ASBOX
|
|
+## ------------------------------------ ##
|
|
+## Report this to bug-autoconf@gnu.org. ##
|
|
+## ------------------------------------ ##
|
|
+_ASBOX
|
|
+ ) |
|
|
+ sed "s/^/$as_me: WARNING: /" >&2
|
|
+ ;;
|
|
esac
|
|
echo "$as_me:$LINENO: checking for pthread.h" >&5
|
|
echo $ECHO_N "checking for pthread.h... $ECHO_C" >&6
|
|
@@ -22375,7 +23947,11 @@
|
|
echo $ECHO_N "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
|
|
/* Override any gcc2 internal prototype to avoid an error. */
|
|
#ifdef __cplusplus
|
|
@@ -22384,12 +23960,6 @@
|
|
/* We use char because int might match the return type of a gcc2
|
|
builtin and then its argument prototype would still apply. */
|
|
char pthread_join ();
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -22413,7 +23983,8 @@
|
|
acx_pthread_ok=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
echo "$as_me:$LINENO: result: $acx_pthread_ok" >&5
|
|
@@ -22503,14 +24074,12 @@
|
|
# We try pthread_create on general principles.
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <pthread.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -22536,7 +24105,8 @@
|
|
acx_pthread_ok=yes
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
|
|
@@ -22567,14 +24137,12 @@
|
|
echo $ECHO_N "checking for joinable pthread attribute... $ECHO_C" >&6
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <pthread.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -22598,21 +24166,20 @@
|
|
ok=PTHREAD_CREATE_JOINABLE
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ok=unknown
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
if test x"$ok" = xunknown; then
|
|
cat >conftest.$ac_ext <<_ACEOF
|
|
#line $LINENO "configure"
|
|
-#include "confdefs.h"
|
|
+/* confdefs.h. */
|
|
+_ACEOF
|
|
+cat confdefs.h >>conftest.$ac_ext
|
|
+cat >>conftest.$ac_ext <<_ACEOF
|
|
+/* end confdefs.h. */
|
|
#include <pthread.h>
|
|
-#ifdef F77_DUMMY_MAIN
|
|
-# ifdef __cplusplus
|
|
- extern "C"
|
|
-# endif
|
|
- int F77_DUMMY_MAIN() { return 1; }
|
|
-#endif
|
|
int
|
|
main ()
|
|
{
|
|
@@ -22636,7 +24203,8 @@
|
|
ok=PTHREAD_CREATE_UNDETACHED
|
|
else
|
|
echo "$as_me: failed program was:" >&5
|
|
-cat conftest.$ac_ext >&5
|
|
+sed 's/^/| /' conftest.$ac_ext >&5
|
|
+
|
|
ok=unknown
|
|
fi
|
|
rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext
|
|
@@ -22874,7 +24442,7 @@
|
|
fi
|
|
|
|
|
|
-ac_config_files="$ac_config_files Makefile iodev/Makefile debug/Makefile bios/Makefile cpu/Makefile memory/Makefile gui/Makefile disasm/Makefile ${INSTRUMENT_DIR}/Makefile misc/Makefile fpu/Makefile doc/docbook/Makefile install-x11-fonts build/linux/bochs-dlx bxversion.h build/macosx/Info.plist build/win32/nsis/Makefile build/win32/nsis/bochs.nsi"
|
|
+ ac_config_files="$ac_config_files Makefile iodev/Makefile debug/Makefile bios/Makefile cpu/Makefile memory/Makefile gui/Makefile disasm/Makefile ${INSTRUMENT_DIR}/Makefile misc/Makefile fpu/Makefile doc/docbook/Makefile install-x11-fonts build/linux/bochs-dlx bxversion.h build/macosx/Info.plist build/win32/nsis/Makefile build/win32/nsis/bochs.nsi"
|
|
cat >confcache <<\_ACEOF
|
|
# This file is a shell script that caches the results of configure
|
|
# tests run on this system so they can be shared between configure
|
|
@@ -22885,7 +24453,7 @@
|
|
# config.status only pays attention to the cache file if you give it
|
|
# the --recheck option to rerun configure.
|
|
#
|
|
-# `ac_cv_env_foo' variables (set or unset) will be overriden when
|
|
+# `ac_cv_env_foo' variables (set or unset) will be overridden when
|
|
# loading this file, other *unset* `ac_cv_foo' will be assigned the
|
|
# following values.
|
|
|
|
@@ -22920,7 +24488,7 @@
|
|
t end
|
|
/^ac_cv_env/!s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/
|
|
: end' >>confcache
|
|
-if cmp -s $cache_file confcache; then :; else
|
|
+if diff $cache_file confcache >/dev/null 2>&1; then :; else
|
|
if test -w $cache_file; then
|
|
test "x$cache_file" != "x/dev/null" && echo "updating cache $cache_file"
|
|
cat confcache >$cache_file
|
|
@@ -22951,6 +24519,21 @@
|
|
|
|
DEFS=-DHAVE_CONFIG_H
|
|
|
|
+ac_libobjs=
|
|
+ac_ltlibobjs=
|
|
+for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue
|
|
+ # 1. Remove the extension, and $U if already installed.
|
|
+ ac_i=`echo "$ac_i" |
|
|
+ sed 's/\$U\././;s/\.o$//;s/\.obj$//'`
|
|
+ # 2. Add them.
|
|
+ ac_libobjs="$ac_libobjs $ac_i\$U.$ac_objext"
|
|
+ ac_ltlibobjs="$ac_ltlibobjs $ac_i"'$U.lo'
|
|
+done
|
|
+LIBOBJS=$ac_libobjs
|
|
+
|
|
+LTLIBOBJS=$ac_ltlibobjs
|
|
+
|
|
+
|
|
|
|
: ${CONFIG_STATUS=./config.status}
|
|
ac_clean_files_save=$ac_clean_files
|
|
@@ -22965,11 +24548,12 @@
|
|
# configure, is in config.log if it exists.
|
|
|
|
debug=false
|
|
+ac_cs_recheck=false
|
|
+ac_cs_silent=false
|
|
SHELL=\${CONFIG_SHELL-$SHELL}
|
|
_ACEOF
|
|
|
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
|
-
|
|
## --------------------- ##
|
|
## M4sh Initialization. ##
|
|
## --------------------- ##
|
|
@@ -22978,11 +24562,13 @@
|
|
if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then
|
|
emulate sh
|
|
NULLCMD=:
|
|
+ # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which
|
|
+ # is contrary to our usage. Disable this feature.
|
|
+ alias -g '${1+"$@"}'='"$@"'
|
|
elif test -n "${BASH_VERSION+set}" && (set -o posix) >/dev/null 2>&1; then
|
|
set -o posix
|
|
fi
|
|
|
|
-# NLS nuisances.
|
|
# Support unset when possible.
|
|
if (FOO=FOO; unset FOO) >/dev/null 2>&1; then
|
|
as_unset=unset
|
|
@@ -22990,34 +24576,42 @@
|
|
as_unset=false
|
|
fi
|
|
|
|
-(set +x; test -n "`(LANG=C; export LANG) 2>&1`") &&
|
|
- { $as_unset LANG || test "${LANG+set}" != set; } ||
|
|
- { LANG=C; export LANG; }
|
|
-(set +x; test -n "`(LC_ALL=C; export LC_ALL) 2>&1`") &&
|
|
- { $as_unset LC_ALL || test "${LC_ALL+set}" != set; } ||
|
|
- { LC_ALL=C; export LC_ALL; }
|
|
-(set +x; test -n "`(LC_TIME=C; export LC_TIME) 2>&1`") &&
|
|
- { $as_unset LC_TIME || test "${LC_TIME+set}" != set; } ||
|
|
- { LC_TIME=C; export LC_TIME; }
|
|
-(set +x; test -n "`(LC_CTYPE=C; export LC_CTYPE) 2>&1`") &&
|
|
- { $as_unset LC_CTYPE || test "${LC_CTYPE+set}" != set; } ||
|
|
- { LC_CTYPE=C; export LC_CTYPE; }
|
|
-(set +x; test -n "`(LANGUAGE=C; export LANGUAGE) 2>&1`") &&
|
|
- { $as_unset LANGUAGE || test "${LANGUAGE+set}" != set; } ||
|
|
- { LANGUAGE=C; export LANGUAGE; }
|
|
-(set +x; test -n "`(LC_COLLATE=C; export LC_COLLATE) 2>&1`") &&
|
|
- { $as_unset LC_COLLATE || test "${LC_COLLATE+set}" != set; } ||
|
|
- { LC_COLLATE=C; export LC_COLLATE; }
|
|
-(set +x; test -n "`(LC_NUMERIC=C; export LC_NUMERIC) 2>&1`") &&
|
|
- { $as_unset LC_NUMERIC || test "${LC_NUMERIC+set}" != set; } ||
|
|
- { LC_NUMERIC=C; export LC_NUMERIC; }
|
|
-(set +x; test -n "`(LC_MESSAGES=C; export LC_MESSAGES) 2>&1`") &&
|
|
- { $as_unset LC_MESSAGES || test "${LC_MESSAGES+set}" != set; } ||
|
|
- { LC_MESSAGES=C; export LC_MESSAGES; }
|
|
+
|
|
+# Work around bugs in pre-3.0 UWIN ksh.
|
|
+$as_unset ENV MAIL MAILPATH
|
|
+PS1='$ '
|
|
+PS2='> '
|
|
+PS4='+ '
|
|
+
|
|
+# NLS nuisances.
|
|
+for as_var in \
|
|
+ LANG LANGUAGE LC_ADDRESS LC_ALL LC_COLLATE LC_CTYPE LC_IDENTIFICATION \
|
|
+ LC_MEASUREMENT LC_MESSAGES LC_MONETARY LC_NAME LC_NUMERIC LC_PAPER \
|
|
+ LC_TELEPHONE LC_TIME
|
|
+do
|
|
+ if (set +x; test -n "`(eval $as_var=C; export $as_var) 2>&1`"); then
|
|
+ eval $as_var=C; export $as_var
|
|
+ else
|
|
+ $as_unset $as_var
|
|
+ fi
|
|
+done
|
|
+
|
|
+# Required to use basename.
|
|
+if expr a : '\(a\)' >/dev/null 2>&1; then
|
|
+ as_expr=expr
|
|
+else
|
|
+ as_expr=false
|
|
+fi
|
|
+
|
|
+if (basename /) >/dev/null 2>&1 && test "X`basename / 2>&1`" = "X/"; then
|
|
+ as_basename=basename
|
|
+else
|
|
+ as_basename=false
|
|
+fi
|
|
|
|
|
|
# Name of the executable.
|
|
-as_me=`(basename "$0") 2>/dev/null ||
|
|
+as_me=`$as_basename "$0" ||
|
|
$as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \
|
|
X"$0" : 'X\(//\)$' \| \
|
|
X"$0" : 'X\(/\)$' \| \
|
|
@@ -23028,6 +24622,7 @@
|
|
/^X\/\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
|
|
+
|
|
# PATH needs CR, and LINENO needs CR and PATH.
|
|
# Avoid depending upon Character Ranges.
|
|
as_cr_letters='abcdefghijklmnopqrstuvwxyz'
|
|
@@ -23038,15 +24633,15 @@
|
|
|
|
# The user is always right.
|
|
if test "${PATH_SEPARATOR+set}" != set; then
|
|
- echo "#! /bin/sh" >conftest.sh
|
|
- echo "exit 0" >>conftest.sh
|
|
- chmod +x conftest.sh
|
|
- if (PATH=".;."; conftest.sh) >/dev/null 2>&1; then
|
|
+ echo "#! /bin/sh" >conf$$.sh
|
|
+ echo "exit 0" >>conf$$.sh
|
|
+ chmod +x conf$$.sh
|
|
+ if (PATH="/nonexistent;."; conf$$.sh) >/dev/null 2>&1; then
|
|
PATH_SEPARATOR=';'
|
|
else
|
|
PATH_SEPARATOR=:
|
|
fi
|
|
- rm -f conftest.sh
|
|
+ rm -f conf$$.sh
|
|
fi
|
|
|
|
|
|
@@ -23095,6 +24690,8 @@
|
|
as_lineno_3=`(expr $as_lineno_1 + 1) 2>/dev/null`
|
|
test "x$as_lineno_1" != "x$as_lineno_2" &&
|
|
test "x$as_lineno_3" = "x$as_lineno_2" ') 2>/dev/null; then
|
|
+ $as_unset BASH_ENV || test "${BASH_ENV+set}" != set || { BASH_ENV=; export BASH_ENV; }
|
|
+ $as_unset ENV || test "${ENV+set}" != set || { ENV=; export ENV; }
|
|
CONFIG_SHELL=$as_dir/$as_base
|
|
export CONFIG_SHELL
|
|
exec "$CONFIG_SHELL" "$0" ${1+"$@"}
|
|
@@ -23168,6 +24765,12 @@
|
|
fi
|
|
rm -f conf$$ conf$$.exe conf$$.file
|
|
|
|
+if mkdir -p . 2>/dev/null; then
|
|
+ as_mkdir_p=:
|
|
+else
|
|
+ as_mkdir_p=false
|
|
+fi
|
|
+
|
|
as_executable_p="test -f"
|
|
|
|
# Sed expression to map a string onto a valid CPP name.
|
|
@@ -23184,7 +24787,7 @@
|
|
IFS=" $as_nl"
|
|
|
|
# CDPATH.
|
|
-$as_unset CDPATH || test "${CDPATH+set}" != set || { CDPATH=$PATH_SEPARATOR; export CDPATH; }
|
|
+$as_unset CDPATH
|
|
|
|
exec 6>&1
|
|
|
|
@@ -23201,7 +24804,7 @@
|
|
cat >&5 <<_CSEOF
|
|
|
|
This file was extended by $as_me, which was
|
|
-generated by GNU Autoconf 2.53. Invocation command line was
|
|
+generated by GNU Autoconf 2.57. Invocation command line was
|
|
|
|
CONFIG_FILES = $CONFIG_FILES
|
|
CONFIG_HEADERS = $CONFIG_HEADERS
|
|
@@ -23241,6 +24844,7 @@
|
|
|
|
-h, --help print this help, then exit
|
|
-V, --version print version number, then exit
|
|
+ -q, --quiet do not print progress messages
|
|
-d, --debug don't remove temporary files
|
|
--recheck update $as_me by reconfiguring in the same conditions
|
|
--file=FILE[:TEMPLATE]
|
|
@@ -23260,7 +24864,7 @@
|
|
cat >>$CONFIG_STATUS <<_ACEOF
|
|
ac_cs_version="\\
|
|
config.status
|
|
-configured by $0, generated by GNU Autoconf 2.53,
|
|
+configured by $0, generated by GNU Autoconf 2.57,
|
|
with options \\"`echo "$ac_configure_args" | sed 's/[\\""\`\$]/\\\\&/g'`\\"
|
|
|
|
Copyright 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001
|
|
@@ -23280,25 +24884,25 @@
|
|
--*=*)
|
|
ac_option=`expr "x$1" : 'x\([^=]*\)='`
|
|
ac_optarg=`expr "x$1" : 'x[^=]*=\(.*\)'`
|
|
- shift
|
|
- set dummy "$ac_option" "$ac_optarg" ${1+"$@"}
|
|
- shift
|
|
+ ac_shift=:
|
|
+ ;;
|
|
+ -*)
|
|
+ ac_option=$1
|
|
+ ac_optarg=$2
|
|
+ ac_shift=shift
|
|
;;
|
|
- -*);;
|
|
*) # This is not an option, so the user has probably given explicit
|
|
# arguments.
|
|
+ ac_option=$1
|
|
ac_need_defaults=false;;
|
|
esac
|
|
|
|
- case $1 in
|
|
+ case $ac_option in
|
|
# Handling of the options.
|
|
_ACEOF
|
|
-cat >>$CONFIG_STATUS <<_ACEOF
|
|
- -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
|
- echo "running $SHELL $0 " $ac_configure_args " --no-create --no-recursion"
|
|
- exec $SHELL $0 $ac_configure_args --no-create --no-recursion ;;
|
|
-_ACEOF
|
|
cat >>$CONFIG_STATUS <<\_ACEOF
|
|
+ -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r)
|
|
+ ac_cs_recheck=: ;;
|
|
--version | --vers* | -V )
|
|
echo "$ac_cs_version"; exit 0 ;;
|
|
--he | --h)
|
|
@@ -23313,13 +24917,16 @@
|
|
--debug | --d* | -d )
|
|
debug=: ;;
|
|
--file | --fil | --fi | --f )
|
|
- shift
|
|
- CONFIG_FILES="$CONFIG_FILES $1"
|
|
+ $ac_shift
|
|
+ CONFIG_FILES="$CONFIG_FILES $ac_optarg"
|
|
ac_need_defaults=false;;
|
|
--header | --heade | --head | --hea )
|
|
- shift
|
|
- CONFIG_HEADERS="$CONFIG_HEADERS $1"
|
|
+ $ac_shift
|
|
+ CONFIG_HEADERS="$CONFIG_HEADERS $ac_optarg"
|
|
ac_need_defaults=false;;
|
|
+ -q | -quiet | --quiet | --quie | --qui | --qu | --q \
|
|
+ | -silent | --silent | --silen | --sile | --sil | --si | --s)
|
|
+ ac_cs_silent=: ;;
|
|
|
|
# This is an error.
|
|
-*) { { echo "$as_me:$LINENO: error: unrecognized option: $1
|
|
@@ -23334,6 +24941,20 @@
|
|
shift
|
|
done
|
|
|
|
+ac_configure_extra_args=
|
|
+
|
|
+if $ac_cs_silent; then
|
|
+ exec 6>/dev/null
|
|
+ ac_configure_extra_args="$ac_configure_extra_args --silent"
|
|
+fi
|
|
+
|
|
+_ACEOF
|
|
+cat >>$CONFIG_STATUS <<_ACEOF
|
|
+if \$ac_cs_recheck; then
|
|
+ echo "running $SHELL $0 " $ac_configure_args \$ac_configure_extra_args " --no-create --no-recursion" >&6
|
|
+ exec $SHELL $0 $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion
|
|
+fi
|
|
+
|
|
_ACEOF
|
|
|
|
|
|
@@ -23380,6 +25001,9 @@
|
|
test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers
|
|
fi
|
|
|
|
+# Have a temporary directory for convenience. Make it in the build tree
|
|
+# simply because there is no reason to put it here, and in addition,
|
|
+# creating and moving files from /tmp can sometimes cause problems.
|
|
# Create a temporary directory, and hook for its removal unless debugging.
|
|
$debug ||
|
|
{
|
|
@@ -23388,17 +25012,17 @@
|
|
}
|
|
|
|
# Create a (secure) tmp directory for tmp files.
|
|
-: ${TMPDIR=/tmp}
|
|
+
|
|
{
|
|
- tmp=`(umask 077 && mktemp -d -q "$TMPDIR/csXXXXXX") 2>/dev/null` &&
|
|
+ tmp=`(umask 077 && mktemp -d -q "./confstatXXXXXX") 2>/dev/null` &&
|
|
test -n "$tmp" && test -d "$tmp"
|
|
} ||
|
|
{
|
|
- tmp=$TMPDIR/cs$$-$RANDOM
|
|
+ tmp=./confstat$$-$RANDOM
|
|
(umask 077 && mkdir $tmp)
|
|
} ||
|
|
{
|
|
- echo "$me: cannot create a temporary directory in $TMPDIR" >&2
|
|
+ echo "$me: cannot create a temporary directory in ." >&2
|
|
{ (exit 1); exit 1; }
|
|
}
|
|
|
|
@@ -23476,6 +25100,7 @@
|
|
s,@STRIP@,$STRIP,;t t
|
|
s,@ac_ct_STRIP@,$ac_ct_STRIP,;t t
|
|
s,@CPP@,$CPP,;t t
|
|
+s,@EGREP@,$EGREP,;t t
|
|
s,@LIBTOOL@,$LIBTOOL,;t t
|
|
s,@LIBADD_DL@,$LIBADD_DL,;t t
|
|
s,@X_CFLAGS@,$X_CFLAGS,;t t
|
|
@@ -23562,6 +25187,8 @@
|
|
s,@INSTALL_PLUGINS_VAR@,$INSTALL_PLUGINS_VAR,;t t
|
|
s,@GZIP@,$GZIP,;t t
|
|
s,@TAR@,$TAR,;t t
|
|
+s,@LIBOBJS@,$LIBOBJS,;t t
|
|
+s,@LTLIBOBJS@,$LTLIBOBJS,;t t
|
|
CEOF
|
|
|
|
_ACEOF
|
|
@@ -23632,25 +25259,30 @@
|
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
|
/^X\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
- { case "$ac_dir" in
|
|
- [\\/]* | ?:[\\/]* ) as_incr_dir=;;
|
|
- *) as_incr_dir=.;;
|
|
-esac
|
|
-as_dummy="$ac_dir"
|
|
-for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
|
|
- case $as_mkdir_dir in
|
|
- # Skip DOS drivespec
|
|
- ?:) as_incr_dir=$as_mkdir_dir ;;
|
|
- *)
|
|
- as_incr_dir=$as_incr_dir/$as_mkdir_dir
|
|
- test -d "$as_incr_dir" ||
|
|
- mkdir "$as_incr_dir" ||
|
|
- { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
|
|
-echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
|
|
- { (exit 1); exit 1; }; }
|
|
- ;;
|
|
- esac
|
|
-done; }
|
|
+ { if $as_mkdir_p; then
|
|
+ mkdir -p "$ac_dir"
|
|
+ else
|
|
+ as_dir="$ac_dir"
|
|
+ as_dirs=
|
|
+ while test ! -d "$as_dir"; do
|
|
+ as_dirs="$as_dir $as_dirs"
|
|
+ as_dir=`(dirname "$as_dir") 2>/dev/null ||
|
|
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
+ X"$as_dir" : 'X\(//\)[^/]' \| \
|
|
+ X"$as_dir" : 'X\(//\)$' \| \
|
|
+ X"$as_dir" : 'X\(/\)' \| \
|
|
+ . : '\(.\)' 2>/dev/null ||
|
|
+echo X"$as_dir" |
|
|
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
|
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
|
+ /^X\(\/\/\)$/{ s//\1/; q; }
|
|
+ /^X\(\/\).*/{ s//\1/; q; }
|
|
+ s/.*/./; q'`
|
|
+ done
|
|
+ test ! -n "$as_dirs" || mkdir $as_dirs
|
|
+ fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
|
|
+echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
|
|
+ { (exit 1); exit 1; }; }; }
|
|
|
|
ac_builddir=.
|
|
|
|
@@ -23680,7 +25312,7 @@
|
|
# Don't blindly perform a `cd "$ac_dir"/$ac_foo && pwd` since $ac_foo can be
|
|
# absolute.
|
|
ac_abs_builddir=`cd "$ac_dir" && cd $ac_builddir && pwd`
|
|
-ac_abs_top_builddir=`cd "$ac_dir" && cd $ac_top_builddir && pwd`
|
|
+ac_abs_top_builddir=`cd "$ac_dir" && cd ${ac_top_builddir}. && pwd`
|
|
ac_abs_srcdir=`cd "$ac_dir" && cd $ac_srcdir && pwd`
|
|
ac_abs_top_srcdir=`cd "$ac_dir" && cd $ac_top_srcdir && pwd`
|
|
|
|
@@ -23865,7 +25497,7 @@
|
|
# Break up conftest.defines because some shells have a limit on the size
|
|
# of here documents, and old seds have small limits too (100 cmds).
|
|
echo ' # Handle all the #define templates only if necessary.' >>$CONFIG_STATUS
|
|
-echo ' if egrep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
|
|
+echo ' if grep "^[ ]*#[ ]*define" $tmp/in >/dev/null; then' >>$CONFIG_STATUS
|
|
echo ' # If there are no defines, we may have an empty if/fi' >>$CONFIG_STATUS
|
|
echo ' :' >>$CONFIG_STATUS
|
|
rm -f conftest.tail
|
|
@@ -23889,7 +25521,7 @@
|
|
mv conftest.tail conftest.defines
|
|
done
|
|
rm -f conftest.defines
|
|
-echo ' fi # egrep' >>$CONFIG_STATUS
|
|
+echo ' fi # grep' >>$CONFIG_STATUS
|
|
echo >>$CONFIG_STATUS
|
|
|
|
# Break up conftest.undefs because some shells have a limit on the size
|
|
@@ -23929,7 +25561,7 @@
|
|
cat $tmp/in >>$tmp/config.h
|
|
rm -f $tmp/in
|
|
if test x"$ac_file" != x-; then
|
|
- if cmp -s $ac_file $tmp/config.h 2>/dev/null; then
|
|
+ if diff $ac_file $tmp/config.h >/dev/null 2>&1; then
|
|
{ echo "$as_me:$LINENO: $ac_file is unchanged" >&5
|
|
echo "$as_me: $ac_file is unchanged" >&6;}
|
|
else
|
|
@@ -23945,25 +25577,30 @@
|
|
/^X\(\/\/\)$/{ s//\1/; q; }
|
|
/^X\(\/\).*/{ s//\1/; q; }
|
|
s/.*/./; q'`
|
|
- { case "$ac_dir" in
|
|
- [\\/]* | ?:[\\/]* ) as_incr_dir=;;
|
|
- *) as_incr_dir=.;;
|
|
-esac
|
|
-as_dummy="$ac_dir"
|
|
-for as_mkdir_dir in `IFS='/\\'; set X $as_dummy; shift; echo "$@"`; do
|
|
- case $as_mkdir_dir in
|
|
- # Skip DOS drivespec
|
|
- ?:) as_incr_dir=$as_mkdir_dir ;;
|
|
- *)
|
|
- as_incr_dir=$as_incr_dir/$as_mkdir_dir
|
|
- test -d "$as_incr_dir" ||
|
|
- mkdir "$as_incr_dir" ||
|
|
- { { echo "$as_me:$LINENO: error: cannot create \"$ac_dir\"" >&5
|
|
-echo "$as_me: error: cannot create \"$ac_dir\"" >&2;}
|
|
- { (exit 1); exit 1; }; }
|
|
- ;;
|
|
- esac
|
|
-done; }
|
|
+ { if $as_mkdir_p; then
|
|
+ mkdir -p "$ac_dir"
|
|
+ else
|
|
+ as_dir="$ac_dir"
|
|
+ as_dirs=
|
|
+ while test ! -d "$as_dir"; do
|
|
+ as_dirs="$as_dir $as_dirs"
|
|
+ as_dir=`(dirname "$as_dir") 2>/dev/null ||
|
|
+$as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \
|
|
+ X"$as_dir" : 'X\(//\)[^/]' \| \
|
|
+ X"$as_dir" : 'X\(//\)$' \| \
|
|
+ X"$as_dir" : 'X\(/\)' \| \
|
|
+ . : '\(.\)' 2>/dev/null ||
|
|
+echo X"$as_dir" |
|
|
+ sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/; q; }
|
|
+ /^X\(\/\/\)[^/].*/{ s//\1/; q; }
|
|
+ /^X\(\/\/\)$/{ s//\1/; q; }
|
|
+ /^X\(\/\).*/{ s//\1/; q; }
|
|
+ s/.*/./; q'`
|
|
+ done
|
|
+ test ! -n "$as_dirs" || mkdir $as_dirs
|
|
+ fi || { { echo "$as_me:$LINENO: error: cannot create directory \"$ac_dir\"" >&5
|
|
+echo "$as_me: error: cannot create directory \"$ac_dir\"" >&2;}
|
|
+ { (exit 1); exit 1; }; }; }
|
|
|
|
rm -f $ac_file
|
|
mv $tmp/config.h $ac_file
|
|
@@ -23993,8 +25630,11 @@
|
|
# need to make the FD available again.
|
|
if test "$no_create" != yes; then
|
|
ac_cs_success=:
|
|
+ ac_config_status_args=
|
|
+ test "$silent" = yes &&
|
|
+ ac_config_status_args="$ac_config_status_args --quiet"
|
|
exec 5>/dev/null
|
|
- $SHELL $CONFIG_STATUS || ac_cs_success=false
|
|
+ $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false
|
|
exec 5>>config.log
|
|
# Use ||, not &&, to avoid exiting from the if with $? = 1, which
|
|
# would make configure fail if this is the last instruction.
|