cut telemetry
This commit is contained in:
parent
44ec14df66
commit
cbe073d167
@ -8,147 +8,24 @@
|
||||
#ifndef VPROF_TELEMETRY_H
|
||||
#define VPROF_TELEMETRY_H
|
||||
|
||||
#if !defined( MAKE_VPC )
|
||||
|
||||
#if !defined( RAD_TELEMETRY_DISABLED ) && ( defined( IS_WINDOWS_PC ) || defined( _LINUX ) )
|
||||
// Rad Telemetry profiling is enabled on Win32 and Win64.
|
||||
#define RAD_TELEMETRY_ENABLED
|
||||
#endif
|
||||
|
||||
#endif // !MAKE_VPC
|
||||
|
||||
|
||||
#if !defined( RAD_TELEMETRY_ENABLED )
|
||||
|
||||
//
|
||||
// Kill all tmZone() macros, etc.
|
||||
//
|
||||
#include "tmapi_dummy.h"
|
||||
|
||||
inline void TelemetryTick() {}
|
||||
inline void TelemetrySetLevel( unsigned int Level ) {}
|
||||
#define TelemetrySetLockName( _ctx, _location, _description )
|
||||
|
||||
class CTelemetryLock
|
||||
{
|
||||
public:
|
||||
CTelemetryLock(void *plocation, const char *description) {}
|
||||
~CTelemetryLock() {}
|
||||
void Locked() {}
|
||||
void Unlocked() {}
|
||||
};
|
||||
|
||||
class CTelemetrySpikeDetector
|
||||
{
|
||||
public:
|
||||
CTelemetrySpikeDetector( const char *msg, uint32 threshold = 50 ) {}
|
||||
~CTelemetrySpikeDetector() { }
|
||||
};
|
||||
|
||||
#define TM_ZONE_DEFAULT( context )
|
||||
#define TM_ZONE_DEFAULT_PARAM( context, string_param )
|
||||
|
||||
#else
|
||||
|
||||
//
|
||||
// Telemetry is enabled. Include the telemetry header.
|
||||
//
|
||||
#include "../../thirdparty/telemetry/include/telemetry.h"
|
||||
// Different versions of radbase.h define RADCOPYRIGHT to different values. So undef that here.
|
||||
#undef RADCOPYRIGHT
|
||||
|
||||
struct TelemetryData
|
||||
{
|
||||
HTELEMETRY tmContext[32];
|
||||
float flRDTSCToMilliSeconds; // Conversion from tmFastTime() (rdtsc) to milliseconds.
|
||||
uint32 FrameCount; // Count of frames to capture before turning off.
|
||||
char ServerAddress[128]; // Server name to connect to.
|
||||
int playbacktick; // GetPlaybackTick() value from demo file (or 0 if not playing a demo).
|
||||
uint32 DemoTickStart; // Start telemetry on demo tick #
|
||||
uint32 DemoTickEnd; // End telemetry on demo tick #
|
||||
uint32 Level; // Current Telemetry level (Use TelemetrySetLevel to modify)
|
||||
};
|
||||
PLATFORM_INTERFACE TelemetryData g_Telemetry;
|
||||
|
||||
PLATFORM_INTERFACE void TelemetryTick();
|
||||
PLATFORM_INTERFACE void TelemetrySetLevel( unsigned int Level );
|
||||
|
||||
#define TELEMETRY_LEVEL0 g_Telemetry.tmContext[0] // high level tmZone()
|
||||
#define TELEMETRY_LEVEL1 g_Telemetry.tmContext[1] // lower level tmZone(), tmZoneFiltered()
|
||||
#define TELEMETRY_LEVEL2 g_Telemetry.tmContext[2] // VPROF_0
|
||||
#define TELEMETRY_LEVEL3 g_Telemetry.tmContext[3] // VPROF_1
|
||||
#define TELEMETRY_LEVEL4 g_Telemetry.tmContext[4] // VPROF_2
|
||||
#define TELEMETRY_LEVEL5 g_Telemetry.tmContext[5] // VPROF_3
|
||||
#define TELEMETRY_LEVEL6 g_Telemetry.tmContext[6] // VPROF_4
|
||||
|
||||
#define TM_ZONE_DEFAULT( context ) tmZone(context, TMZF_NONE, __FUNCTION__ )
|
||||
#define TM_ZONE_DEFAULT_PARAM( context, string_param ) tmZone(context, TMZF_NONE, "%s( %s )", __FUNCTION__ , tmDynamicString( context, (string_param) ) )
|
||||
|
||||
#define TelemetrySetLockName( _ctx, _location, _description ) \
|
||||
do \
|
||||
{ \
|
||||
static bool s_bNameSet = false; \
|
||||
if( _ctx && !s_bNameSet ) \
|
||||
{ \
|
||||
tmLockName( _ctx, _location, _description ); \
|
||||
s_bNameSet = true; \
|
||||
} \
|
||||
} while( 0 )
|
||||
|
||||
class CTelemetryLock
|
||||
{
|
||||
public:
|
||||
CTelemetryLock(void *plocation, const char *description)
|
||||
{
|
||||
m_plocation = (const char *)plocation;
|
||||
m_description = description;
|
||||
TelemetrySetLockName( TELEMETRY_LEVEL1, m_plocation, m_description );
|
||||
tmTryLock( TELEMETRY_LEVEL1, m_plocation, "%s", m_description );
|
||||
}
|
||||
~CTelemetryLock()
|
||||
{
|
||||
Unlocked();
|
||||
}
|
||||
void Locked()
|
||||
{
|
||||
tmEndTryLock( TELEMETRY_LEVEL1, m_plocation, TMLR_SUCCESS );
|
||||
tmSetLockState( TELEMETRY_LEVEL1, m_plocation, TMLS_LOCKED, "%s Locked", m_description );
|
||||
}
|
||||
void Unlocked()
|
||||
{
|
||||
if( m_plocation )
|
||||
{
|
||||
tmSetLockState( TELEMETRY_LEVEL1, m_plocation, TMLS_RELEASED, "%s Released", m_description );
|
||||
m_plocation = NULL;
|
||||
}
|
||||
}
|
||||
|
||||
public:
|
||||
const char *m_plocation;
|
||||
const char *m_description;
|
||||
};
|
||||
|
||||
class CTelemetrySpikeDetector
|
||||
{
|
||||
public:
|
||||
// Spews Telemetry message when threshold hit (in milliseconds.)
|
||||
CTelemetrySpikeDetector( const char *msg, float threshold = 5 ) :
|
||||
m_message( msg ), m_threshold( threshold ), time0( tmFastTime() ) {}
|
||||
~CTelemetrySpikeDetector()
|
||||
{
|
||||
float time = ( tmFastTime() - time0 ) * g_Telemetry.flRDTSCToMilliSeconds;
|
||||
if( time >= m_threshold )
|
||||
{
|
||||
tmMessage( TELEMETRY_LEVEL0, TMMF_ICON_NOTE | TMMF_SEVERITY_WARNING, "(source/spike)%s %.2fms %t", m_message, time, tmSendCallStack( TELEMETRY_LEVEL0, 0 ) );
|
||||
}
|
||||
}
|
||||
|
||||
private:
|
||||
TmU64 time0;
|
||||
float m_threshold;
|
||||
const char *m_message;
|
||||
};
|
||||
|
||||
#endif // RAD_TELEMETRY_ENABLED
|
||||
#define tmZone(...)
|
||||
#define tmTryLockEx(...)
|
||||
#define tmSetLockStateEx(...)
|
||||
#define tmEndTryLockEx(...)
|
||||
#define tmZoneFiltered(...)
|
||||
#define tmDynamicString(...) ""
|
||||
#define tmEnter(...)
|
||||
#define tmMessage(...)
|
||||
#define tmBeginTimeSpanAt(...)
|
||||
#define tmEndTimeSpanAt(...)
|
||||
#define tmLeave(...)
|
||||
#define TM_ZONE_DEFAULT(...)
|
||||
#define TM_ZONE_DEFAULT_PARAM(...)
|
||||
#define TelemetryTick(...)
|
||||
#define tmPlotI32(...)
|
||||
#define TelemetrySetLockName(...)
|
||||
#define tmEndTryLock(...)
|
||||
#define tmTryLock(...)
|
||||
#define tmSetLockState(...)
|
||||
|
||||
#endif // VPROF_TELEMETRY_H
|
||||
|
36
thirdparty/SDL2-src/config.log
vendored
36
thirdparty/SDL2-src/config.log
vendored
@ -961,7 +961,7 @@ configure:12870: $? = 0
|
||||
configure:12870: result: yes
|
||||
configure:12870: checking for wcslcpy
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccOYiqLF.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccam9wWQ.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `wcslcpy'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1068,7 +1068,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for wcslcat
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/cclTzOr8.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccR6qR6c.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `wcslcat'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1198,7 +1198,7 @@ configure:12870: $? = 0
|
||||
configure:12870: result: yes
|
||||
configure:12870: checking for strlcpy
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccIp9Akm.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cccRE3H0.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `strlcpy'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1310,7 +1310,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for strlcat
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccCssKAI.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccNyoA1j.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `strlcat'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1422,7 +1422,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for _strrev
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccwcbep5.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccItGYUF.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_strrev'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1534,7 +1534,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for _strupr
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccitmajr.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccAxFoK5.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_strupr'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1646,7 +1646,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for _strlwr
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccBV3NwO.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cc2CtQOn.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_strlwr'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1783,7 +1783,7 @@ configure:12870: $? = 0
|
||||
configure:12870: result: yes
|
||||
configure:12870: checking for itoa
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/cc0gDmHN.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cc7wi2ne.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `itoa'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -1899,7 +1899,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for _ltoa
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccBcDky8.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccoyRfvB.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_ltoa'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -2015,7 +2015,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for _uitoa
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccNi4RpE.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cctl6leX.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_uitoa'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -2131,7 +2131,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for _ultoa
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccCQvxV2.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cci9qMMh.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_ultoa'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -2255,7 +2255,7 @@ configure:12870: $? = 0
|
||||
configure:12870: result: yes
|
||||
configure:12870: checking for _i64toa
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccA0Egfh.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cc93tTpv.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_i64toa'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -2373,7 +2373,7 @@ configure: failed program was:
|
||||
configure:12870: result: no
|
||||
configure:12870: checking for _ui64toa
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccZaxWaF.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccNOhNaS.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_ui64toa'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -2521,7 +2521,7 @@ configure:12870: $? = 0
|
||||
configure:12870: result: yes
|
||||
configure:12870: checking for _stricmp
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccRTxHx3.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccB1ZCNk.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_stricmp'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -2652,7 +2652,7 @@ configure:12870: $? = 0
|
||||
configure:12870: result: yes
|
||||
configure:12870: checking for _strnicmp
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccuyBe2l.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccJ0Qjwm.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `_strnicmp'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -2826,7 +2826,7 @@ configure:12870: $? = 0
|
||||
configure:12870: result: yes
|
||||
configure:12870: checking for sysctlbyname
|
||||
configure:12870: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/ccHIO5mU.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cc3B6z5L.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `sysctlbyname'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12870: $? = 1
|
||||
@ -4065,7 +4065,7 @@ configure:19658: $? = 0
|
||||
configure:19664: result: yes
|
||||
configure:19668: checking for dlopen in -lc
|
||||
configure:19693: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c -lc -lm >&5
|
||||
/usr/bin/ld: /tmp/cc5ABgnY.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccwkKoTt.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `dlopen'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:19693: $? = 1
|
||||
@ -7057,7 +7057,7 @@ configure:19309: $? = 0
|
||||
configure:19323: result: yes
|
||||
configure:19326: checking for pthread_set_name_np
|
||||
configure:19346: gcc -o conftest -m32 -Wno-narrowing -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -D_REENTRANT -Iinclude -I/home/nillerusr/projects/source-engine/thirdparty/SDL2-src/include -idirafter /home/nillerusr/projects/source-engine/thirdparty/SDL2-src/src/video/khronos -m32 conftest.c -lm -lpthread >&5
|
||||
/usr/bin/ld: /tmp/ccsIdo4I.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccuMvItK.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `pthread_set_name_np'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:19346: $? = 1
|
||||
|
102
thirdparty/gperftools-2.0/autom4te.cache/requests
vendored
102
thirdparty/gperftools-2.0/autom4te.cache/requests
vendored
@ -15,63 +15,63 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'include' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'sinclude' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'm4_include' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'sinclude' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AC_SUBST' => 1
|
||||
'_m4_warn' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'AC_CONFIG_FILES' => 1
|
||||
}
|
||||
], 'Autom4te::Request' )
|
||||
);
|
||||
|
72
thirdparty/gperftools-2.0/config.log
vendored
72
thirdparty/gperftools-2.0/config.log
vendored
@ -4,7 +4,7 @@ running configure, to aid debugging if configure makes a mistake.
|
||||
It was created by gperftools configure 2.0, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
$ ./configure CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32
|
||||
$ ./configure CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32 --no-create --no-recursion
|
||||
|
||||
## --------- ##
|
||||
## Platform. ##
|
||||
@ -2074,7 +2074,7 @@ conftest.c: In function 'main':
|
||||
conftest.c:69:12: warning: initialization makes pointer from integer without a cast
|
||||
void *sp = __builtin_stack_pointer()
|
||||
^
|
||||
/usr/bin/ld: /tmp/ccYiwQUA.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cc8AAv34.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `__builtin_stack_pointer'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12401: $? = 1
|
||||
@ -2259,7 +2259,7 @@ configure: failed program was:
|
||||
configure:12806: result: no
|
||||
configure:12709: checking whether pthreads work without any flags
|
||||
configure:12797: gcc -o conftest -m32 -Wno-narrowing -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/cctzgXmM.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccaSC5p7.o: in function `main':
|
||||
conftest.c:(.text+0x1a): undefined reference to `pthread_join'
|
||||
/usr/bin/ld: conftest.c:(.text+0x71): undefined reference to `__pthread_register_cancel'
|
||||
/usr/bin/ld: conftest.c:(.text+0x7e): undefined reference to `pthread_create'
|
||||
@ -2619,7 +2619,7 @@ configure:12998: $? = 0
|
||||
configure:13005: result: yes
|
||||
configure:13093: checking whether what we have so far is sufficient with -nostdlib
|
||||
configure:13111: gcc -o conftest -nostdlib -shared -fPIC -Wl,-z,defs -m32 -Wno-narrowing -pthread -m32 conftest.c -lc >&5
|
||||
/usr/bin/ld: /tmp/ccxSWWip.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccs1N9TI.o: in function `main':
|
||||
conftest.c:(.text+0x26): undefined reference to `pthread_join'
|
||||
/usr/bin/ld: conftest.c:(.text+0x7d): undefined reference to `__pthread_register_cancel'
|
||||
/usr/bin/ld: conftest.c:(.text+0x8a): undefined reference to `pthread_create'
|
||||
@ -2818,29 +2818,6 @@ configure:13319: $? = 0
|
||||
configure:13328: result: yes
|
||||
configure:13646: creating ./config.status
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by gperftools config.status 2.0, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1216: creating Makefile
|
||||
config.status:1216: creating src/gperftools/tcmalloc.h
|
||||
config.status:1216: creating src/windows/gperftools/tcmalloc.h
|
||||
config.status:1216: creating src/config.h
|
||||
config.status:1397: src/config.h is unchanged
|
||||
config.status:1445: executing depfiles commands
|
||||
config.status:1445: executing libtool commands
|
||||
|
||||
## ---------------- ##
|
||||
## Cache variables. ##
|
||||
## ---------------- ##
|
||||
@ -3230,3 +3207,44 @@ target_alias=''
|
||||
#define PERFTOOLS_DLL_DECL /**/
|
||||
|
||||
configure: exit 0
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by gperftools config.status 2.0, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1216: creating Makefile
|
||||
config.status:1216: creating src/gperftools/tcmalloc.h
|
||||
config.status:1216: creating src/windows/gperftools/tcmalloc.h
|
||||
config.status:1216: creating src/config.h
|
||||
config.status:1397: src/config.h is unchanged
|
||||
config.status:1445: executing depfiles commands
|
||||
config.status:1445: executing libtool commands
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by gperftools config.status 2.0, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status src/config.h
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1216: creating src/config.h
|
||||
config.status:1397: src/config.h is unchanged
|
||||
|
54
thirdparty/libedit-3.1/Makefile
vendored
54
thirdparty/libedit-3.1/Makefile
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -70,10 +70,10 @@ am__make_running_with_option = \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/libedit-20191231
|
||||
pkgincludedir = $(includedir)/libedit-20191231
|
||||
pkglibdir = $(libdir)/libedit-20191231
|
||||
pkglibexecdir = $(libexecdir)/libedit-20191231
|
||||
pkgdatadir = $(datadir)/libedit-20201104
|
||||
pkgincludedir = $(includedir)/libedit-20201104
|
||||
pkglibdir = $(libdir)/libedit-20201104
|
||||
pkglibexecdir = $(libexecdir)/libedit-20201104
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
@ -168,8 +168,8 @@ am__recursive_targets = \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
cscope distdir distdir-am dist dist-all distcheck
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
||||
$(LISP)config.h.in
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
|
||||
config.h.in
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
@ -192,7 +192,8 @@ CSCOPE = cscope
|
||||
DIST_SUBDIRS = src examples doc
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
|
||||
$(srcdir)/libedit.pc.in COPYING ChangeLog INSTALL THANKS \
|
||||
compile config.guess config.sub install-sh ltmain.sh missing
|
||||
compile config.guess config.sub depcomp install-sh ltmain.sh \
|
||||
missing
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
@ -287,11 +288,11 @@ OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = libedit-20191231
|
||||
PACKAGE = libedit-20201104
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = libedit
|
||||
PACKAGE_STRING = libedit 3.1
|
||||
PACKAGE_TARNAME = libedit-20191231
|
||||
PACKAGE_TARNAME = libedit-20201104
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 3.1
|
||||
PATH_SEPARATOR = :
|
||||
@ -634,6 +635,10 @@ dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-zstd: distdir
|
||||
tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
@echo WARNING: "Support for distribution archives compressed with" \
|
||||
"legacy program 'compress' is deprecated." >&2
|
||||
@ -676,6 +681,8 @@ distcheck: dist
|
||||
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
*.tar.zst*) \
|
||||
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir)
|
||||
chmod u+w $(distdir)
|
||||
@ -856,18 +863,19 @@ uninstall-am: uninstall-pkgconfigDATA
|
||||
am--refresh check check-am clean clean-cscope clean-generic \
|
||||
clean-libtool cscope cscopelist-am ctags ctags-am dist \
|
||||
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
|
||||
dist-xz dist-zip distcheck distclean distclean-generic \
|
||||
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
||||
distdir distuninstallcheck dvi dvi-am html html-am info \
|
||||
info-am install install-am install-data install-data-am \
|
||||
install-dvi install-dvi-am install-exec install-exec-am \
|
||||
install-html install-html-am install-info install-info-am \
|
||||
install-man install-pdf install-pdf-am install-pkgconfigDATA \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
||||
uninstall-am uninstall-pkgconfigDATA
|
||||
dist-xz dist-zip dist-zstd distcheck distclean \
|
||||
distclean-generic distclean-hdr distclean-libtool \
|
||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am tags tags-am uninstall uninstall-am \
|
||||
uninstall-pkgconfigDATA
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
42
thirdparty/libedit-3.1/Makefile.in
vendored
42
thirdparty/libedit-3.1/Makefile.in
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -168,8 +168,8 @@ am__recursive_targets = \
|
||||
$(am__extra_recursive_targets)
|
||||
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
|
||||
cscope distdir distdir-am dist dist-all distcheck
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \
|
||||
$(LISP)config.h.in
|
||||
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
|
||||
config.h.in
|
||||
# Read a list of newline-separated strings from the standard input,
|
||||
# and print each of them once, without duplicates. Input order is
|
||||
# *not* preserved.
|
||||
@ -192,7 +192,8 @@ CSCOPE = cscope
|
||||
DIST_SUBDIRS = src examples doc
|
||||
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
|
||||
$(srcdir)/libedit.pc.in COPYING ChangeLog INSTALL THANKS \
|
||||
compile config.guess config.sub install-sh ltmain.sh missing
|
||||
compile config.guess config.sub depcomp install-sh ltmain.sh \
|
||||
missing
|
||||
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
|
||||
distdir = $(PACKAGE)-$(VERSION)
|
||||
top_distdir = $(distdir)
|
||||
@ -634,6 +635,10 @@ dist-xz: distdir
|
||||
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-zstd: distdir
|
||||
tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
|
||||
$(am__post_remove_distdir)
|
||||
|
||||
dist-tarZ: distdir
|
||||
@echo WARNING: "Support for distribution archives compressed with" \
|
||||
"legacy program 'compress' is deprecated." >&2
|
||||
@ -676,6 +681,8 @@ distcheck: dist
|
||||
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
|
||||
*.zip*) \
|
||||
unzip $(distdir).zip ;;\
|
||||
*.tar.zst*) \
|
||||
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
|
||||
esac
|
||||
chmod -R a-w $(distdir)
|
||||
chmod u+w $(distdir)
|
||||
@ -856,18 +863,19 @@ uninstall-am: uninstall-pkgconfigDATA
|
||||
am--refresh check check-am clean clean-cscope clean-generic \
|
||||
clean-libtool cscope cscopelist-am ctags ctags-am dist \
|
||||
dist-all dist-bzip2 dist-gzip dist-lzip dist-shar dist-tarZ \
|
||||
dist-xz dist-zip distcheck distclean distclean-generic \
|
||||
distclean-hdr distclean-libtool distclean-tags distcleancheck \
|
||||
distdir distuninstallcheck dvi dvi-am html html-am info \
|
||||
info-am install install-am install-data install-data-am \
|
||||
install-dvi install-dvi-am install-exec install-exec-am \
|
||||
install-html install-html-am install-info install-info-am \
|
||||
install-man install-pdf install-pdf-am install-pkgconfigDATA \
|
||||
install-ps install-ps-am install-strip installcheck \
|
||||
installcheck-am installdirs installdirs-am maintainer-clean \
|
||||
maintainer-clean-generic mostlyclean mostlyclean-generic \
|
||||
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
|
||||
uninstall-am uninstall-pkgconfigDATA
|
||||
dist-xz dist-zip dist-zstd distcheck distclean \
|
||||
distclean-generic distclean-hdr distclean-libtool \
|
||||
distclean-tags distcleancheck distdir distuninstallcheck dvi \
|
||||
dvi-am html html-am info info-am install install-am \
|
||||
install-data install-data-am install-dvi install-dvi-am \
|
||||
install-exec install-exec-am install-html install-html-am \
|
||||
install-info install-info-am install-man install-pdf \
|
||||
install-pdf-am install-pkgconfigDATA install-ps install-ps-am \
|
||||
install-strip installcheck installcheck-am installdirs \
|
||||
installdirs-am maintainer-clean maintainer-clean-generic \
|
||||
mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \
|
||||
ps ps-am tags tags-am uninstall uninstall-am \
|
||||
uninstall-pkgconfigDATA
|
||||
|
||||
.PRECIOUS: Makefile
|
||||
|
||||
|
48
thirdparty/libedit-3.1/aclocal.m4
vendored
48
thirdparty/libedit-3.1/aclocal.m4
vendored
@ -1,6 +1,6 @@
|
||||
# generated automatically by aclocal 1.16.1 -*- Autoconf -*-
|
||||
# generated automatically by aclocal 1.16.2 -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -20,7 +20,7 @@ You have another version of autoconf. It may work, but is not guaranteed to.
|
||||
If you have problems, you may need to regenerate the build system entirely.
|
||||
To do so, use the procedure documented by the package, typically 'autoreconf'.])])
|
||||
|
||||
# Copyright (C) 2002-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2002-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -35,7 +35,7 @@ AC_DEFUN([AM_AUTOMAKE_VERSION],
|
||||
[am__api_version='1.16'
|
||||
dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to
|
||||
dnl require some minimum version. Point them to the right macro.
|
||||
m4_if([$1], [1.16.1], [],
|
||||
m4_if([$1], [1.16.2], [],
|
||||
[AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl
|
||||
])
|
||||
|
||||
@ -51,14 +51,14 @@ m4_define([_AM_AUTOCONF_VERSION], [])
|
||||
# Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced.
|
||||
# This function is AC_REQUIREd by AM_INIT_AUTOMAKE.
|
||||
AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION],
|
||||
[AM_AUTOMAKE_VERSION([1.16.1])dnl
|
||||
[AM_AUTOMAKE_VERSION([1.16.2])dnl
|
||||
m4_ifndef([AC_AUTOCONF_VERSION],
|
||||
[m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl
|
||||
_AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))])
|
||||
|
||||
# AM_AUX_DIR_EXPAND -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -110,7 +110,7 @@ am_aux_dir=`cd "$ac_aux_dir" && pwd`
|
||||
|
||||
# AM_CONDITIONAL -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1997-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1997-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -141,7 +141,7 @@ AC_CONFIG_COMMANDS_PRE(
|
||||
Usually this means the macro was only invoked conditionally.]])
|
||||
fi])])
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1999-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -332,7 +332,7 @@ _AM_SUBST_NOTMAKE([am__nodep])dnl
|
||||
|
||||
# Generate code to set up dependency tracking. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1999-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -371,7 +371,9 @@ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS],
|
||||
done
|
||||
if test $am_rc -ne 0; then
|
||||
AC_MSG_FAILURE([Something went wrong bootstrapping makefile fragments
|
||||
for automatic dependency tracking. Try re-running configure with the
|
||||
for automatic dependency tracking. If GNU make was not used, consider
|
||||
re-running the configure script with MAKE="gmake" (or whatever is
|
||||
necessary). You can also try re-running configure with the
|
||||
'--disable-dependency-tracking' option to at least be able to build
|
||||
the package (albeit without support for automatic dependency tracking).])
|
||||
fi
|
||||
@ -398,7 +400,7 @@ AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS],
|
||||
|
||||
# Do all the work for Automake. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -595,7 +597,7 @@ for _am_header in $config_headers :; do
|
||||
done
|
||||
echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count])
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -616,7 +618,7 @@ if test x"${install_sh+set}" != xset; then
|
||||
fi
|
||||
AC_SUBST([install_sh])])
|
||||
|
||||
# Copyright (C) 2003-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2003-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -637,7 +639,7 @@ AC_SUBST([am__leading_dot])])
|
||||
|
||||
# Check to see how 'make' treats includes. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -680,7 +682,7 @@ AC_SUBST([am__quote])])
|
||||
|
||||
# Fake the existence of programs that GNU maintainers use. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1997-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1997-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -719,7 +721,7 @@ fi
|
||||
|
||||
# Helper functions for option handling. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -748,7 +750,7 @@ AC_DEFUN([_AM_SET_OPTIONS],
|
||||
AC_DEFUN([_AM_IF_OPTION],
|
||||
[m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])])
|
||||
|
||||
# Copyright (C) 1999-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1999-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -795,7 +797,7 @@ AC_LANG_POP([C])])
|
||||
# For backward compatibility.
|
||||
AC_DEFUN_ONCE([AM_PROG_CC_C_O], [AC_REQUIRE([AC_PROG_CC])])
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -814,7 +816,7 @@ AC_DEFUN([AM_RUN_LOG],
|
||||
|
||||
# Check to make sure that the build environment is sane. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 1996-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1996-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -895,7 +897,7 @@ AC_CONFIG_COMMANDS_PRE(
|
||||
rm -f conftest.file
|
||||
])
|
||||
|
||||
# Copyright (C) 2009-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2009-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -955,7 +957,7 @@ AC_SUBST([AM_BACKSLASH])dnl
|
||||
_AM_SUBST_NOTMAKE([AM_BACKSLASH])dnl
|
||||
])
|
||||
|
||||
# Copyright (C) 2001-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2001-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -983,7 +985,7 @@ fi
|
||||
INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s"
|
||||
AC_SUBST([INSTALL_STRIP_PROGRAM])])
|
||||
|
||||
# Copyright (C) 2006-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2006-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -1002,7 +1004,7 @@ AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)])
|
||||
|
||||
# Check how to create a tarball. -*- Autoconf -*-
|
||||
|
||||
# Copyright (C) 2004-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 2004-2020 Free Software Foundation, Inc.
|
||||
#
|
||||
# This file is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
|
16087
thirdparty/libedit-3.1/autom4te.cache/output.0
vendored
Normal file
16087
thirdparty/libedit-3.1/autom4te.cache/output.0
vendored
Normal file
File diff suppressed because it is too large
Load Diff
16087
thirdparty/libedit-3.1/autom4te.cache/output.1
vendored
Normal file
16087
thirdparty/libedit-3.1/autom4te.cache/output.1
vendored
Normal file
File diff suppressed because it is too large
Load Diff
304
thirdparty/libedit-3.1/autom4te.cache/requests
vendored
Normal file
304
thirdparty/libedit-3.1/autom4te.cache/requests
vendored
Normal file
@ -0,0 +1,304 @@
|
||||
# This file was generated.
|
||||
# It contains the lists of macros which have been traced.
|
||||
# It can be safely removed.
|
||||
|
||||
@request = (
|
||||
bless( [
|
||||
'0',
|
||||
1,
|
||||
[
|
||||
'/usr/share/autoconf'
|
||||
],
|
||||
[
|
||||
'/usr/share/autoconf/autoconf/autoconf.m4f',
|
||||
'-',
|
||||
'/usr/share/aclocal-1.16/internal/ac-config-macro-dirs.m4',
|
||||
'/usr/share/aclocal/ltargz.m4',
|
||||
'/usr/share/aclocal/ltdl.m4',
|
||||
'/usr/share/aclocal-1.16/amversion.m4',
|
||||
'/usr/share/aclocal-1.16/auxdir.m4',
|
||||
'/usr/share/aclocal-1.16/cond.m4',
|
||||
'/usr/share/aclocal-1.16/depend.m4',
|
||||
'/usr/share/aclocal-1.16/depout.m4',
|
||||
'/usr/share/aclocal-1.16/init.m4',
|
||||
'/usr/share/aclocal-1.16/install-sh.m4',
|
||||
'/usr/share/aclocal-1.16/lead-dot.m4',
|
||||
'/usr/share/aclocal-1.16/make.m4',
|
||||
'/usr/share/aclocal-1.16/missing.m4',
|
||||
'/usr/share/aclocal-1.16/options.m4',
|
||||
'/usr/share/aclocal-1.16/prog-cc-c-o.m4',
|
||||
'/usr/share/aclocal-1.16/runlog.m4',
|
||||
'/usr/share/aclocal-1.16/sanity.m4',
|
||||
'/usr/share/aclocal-1.16/silent.m4',
|
||||
'/usr/share/aclocal-1.16/strip.m4',
|
||||
'/usr/share/aclocal-1.16/substnot.m4',
|
||||
'/usr/share/aclocal-1.16/tar.m4',
|
||||
'm4/libtool.m4',
|
||||
'm4/ltoptions.m4',
|
||||
'm4/ltsugar.m4',
|
||||
'm4/ltversion.m4',
|
||||
'm4/lt~obsolete.m4',
|
||||
'acinclude.m4',
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'EL_DEPRECATE_WIDEC' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'LTDL_CONVENIENCE' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'LT_SYS_MODULE_PATH' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_LTDL_SHLIBEXT' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'LT_LIB_DLLOAD' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'_LTDL_SETUP' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AC_LIBLTDL_CONVENIENCE' => 1,
|
||||
'EL_MANTYPE' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'AC_WITH_LTDL' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'LTDL_INSTALLABLE' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'AC_LTDL_SYMBOL_USCORE' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'LT_SYS_SYMBOL_USCORE' => 1,
|
||||
'include' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'LT_SYS_MODULE_EXT' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'LT_FUNC_ARGZ' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AC_LTDL_SYSSEARCHPATH' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'_LT_LIBOBJ' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_LTDL_SHLIBPATH' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_LTDL_DLSYM_USCORE' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'LT_SYS_DLSEARCH_PATH' => 1,
|
||||
'LTDL_INIT' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'EL_GETPW_R_POSIX' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'AC_LIB_LTDL' => 1,
|
||||
'EL_GETPW_R_DRAFT' => 1,
|
||||
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'AC_LTDL_DLLIB' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'AC_LIBLTDL_INSTALLABLE' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'm4_include' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'LT_WITH_LTDL' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'LT_FUNC_DLSYM_USCORE' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
'1',
|
||||
1,
|
||||
[
|
||||
'/usr/share/autoconf'
|
||||
],
|
||||
[
|
||||
'/usr/share/autoconf/autoconf/autoconf.m4f',
|
||||
'aclocal.m4',
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'include' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'sinclude' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'm4_include' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1
|
||||
}
|
||||
], 'Autom4te::Request' )
|
||||
);
|
||||
|
2819
thirdparty/libedit-3.1/autom4te.cache/traces.0
vendored
Normal file
2819
thirdparty/libedit-3.1/autom4te.cache/traces.0
vendored
Normal file
File diff suppressed because it is too large
Load Diff
846
thirdparty/libedit-3.1/autom4te.cache/traces.1
vendored
Normal file
846
thirdparty/libedit-3.1/autom4te.cache/traces.1
vendored
Normal file
@ -0,0 +1,846 @@
|
||||
m4trace:aclocal.m4:681: -1- AC_SUBST([am__quote])
|
||||
m4trace:aclocal.m4:681: -1- AC_SUBST_TRACE([am__quote])
|
||||
m4trace:aclocal.m4:681: -1- m4_pattern_allow([^am__quote$])
|
||||
m4trace:aclocal.m4:1138: -1- m4_include([m4/libtool.m4])
|
||||
m4trace:aclocal.m4:1139: -1- m4_include([m4/ltoptions.m4])
|
||||
m4trace:aclocal.m4:1140: -1- m4_include([m4/ltsugar.m4])
|
||||
m4trace:aclocal.m4:1141: -1- m4_include([m4/ltversion.m4])
|
||||
m4trace:aclocal.m4:1142: -1- m4_include([m4/lt~obsolete.m4])
|
||||
m4trace:aclocal.m4:1143: -1- m4_include([acinclude.m4])
|
||||
m4trace:configure.ac:26: -1- AC_INIT([libedit], [EL_RELEASE], [], [libedit-EL_TIMESTAMP])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_forbid([^_?A[CHUM]_])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_forbid([_AC_])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_forbid([^LIBOBJS$], [do not use LIBOBJS directly, use AC_LIBOBJ (see section `AC_LIBOBJ vs LIBOBJS'])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^AS_FLAGS$])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_forbid([^_?m4_])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_forbid([^dnl$])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_forbid([^_?AS_])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([SHELL])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([SHELL])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^SHELL$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([PATH_SEPARATOR])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PATH_SEPARATOR])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PATH_SEPARATOR$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([PACKAGE_NAME], [m4_ifdef([AC_PACKAGE_NAME], ['AC_PACKAGE_NAME'])])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PACKAGE_NAME])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([PACKAGE_TARNAME], [m4_ifdef([AC_PACKAGE_TARNAME], ['AC_PACKAGE_TARNAME'])])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PACKAGE_TARNAME])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([PACKAGE_VERSION], [m4_ifdef([AC_PACKAGE_VERSION], ['AC_PACKAGE_VERSION'])])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PACKAGE_VERSION])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([PACKAGE_STRING], [m4_ifdef([AC_PACKAGE_STRING], ['AC_PACKAGE_STRING'])])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PACKAGE_STRING])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([PACKAGE_BUGREPORT], [m4_ifdef([AC_PACKAGE_BUGREPORT], ['AC_PACKAGE_BUGREPORT'])])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PACKAGE_BUGREPORT])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([PACKAGE_URL], [m4_ifdef([AC_PACKAGE_URL], ['AC_PACKAGE_URL'])])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([PACKAGE_URL])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_URL$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([exec_prefix], [NONE])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([exec_prefix])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^exec_prefix$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([prefix], [NONE])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([prefix])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^prefix$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([program_transform_name], [s,x,x,])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([program_transform_name])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^program_transform_name$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([bindir], ['${exec_prefix}/bin'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([bindir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^bindir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([sbindir], ['${exec_prefix}/sbin'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([sbindir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^sbindir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([libexecdir], ['${exec_prefix}/libexec'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([libexecdir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^libexecdir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([datarootdir], ['${prefix}/share'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([datarootdir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^datarootdir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([datadir], ['${datarootdir}'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([datadir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^datadir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([sysconfdir], ['${prefix}/etc'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([sysconfdir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^sysconfdir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([sharedstatedir], ['${prefix}/com'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([sharedstatedir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^sharedstatedir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([localstatedir], ['${prefix}/var'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([localstatedir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^localstatedir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([includedir], ['${prefix}/include'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([includedir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^includedir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([oldincludedir], ['/usr/include'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([oldincludedir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^oldincludedir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([docdir], [m4_ifset([AC_PACKAGE_TARNAME],
|
||||
['${datarootdir}/doc/${PACKAGE_TARNAME}'],
|
||||
['${datarootdir}/doc/${PACKAGE}'])])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([docdir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^docdir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([infodir], ['${datarootdir}/info'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([infodir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^infodir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([htmldir], ['${docdir}'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([htmldir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^htmldir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([dvidir], ['${docdir}'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([dvidir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^dvidir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([pdfdir], ['${docdir}'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([pdfdir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^pdfdir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([psdir], ['${docdir}'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([psdir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^psdir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([libdir], ['${exec_prefix}/lib'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([libdir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^libdir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([localedir], ['${datarootdir}/locale'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([localedir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^localedir$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([mandir], ['${datarootdir}/man'])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([mandir])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^mandir$])
|
||||
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_NAME])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_NAME$])
|
||||
m4trace:configure.ac:26: -1- AH_OUTPUT([PACKAGE_NAME], [/* Define to the full name of this package. */
|
||||
@%:@undef PACKAGE_NAME])
|
||||
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_TARNAME])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_TARNAME$])
|
||||
m4trace:configure.ac:26: -1- AH_OUTPUT([PACKAGE_TARNAME], [/* Define to the one symbol short name of this package. */
|
||||
@%:@undef PACKAGE_TARNAME])
|
||||
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_VERSION])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_VERSION$])
|
||||
m4trace:configure.ac:26: -1- AH_OUTPUT([PACKAGE_VERSION], [/* Define to the version of this package. */
|
||||
@%:@undef PACKAGE_VERSION])
|
||||
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_STRING])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_STRING$])
|
||||
m4trace:configure.ac:26: -1- AH_OUTPUT([PACKAGE_STRING], [/* Define to the full name and version of this package. */
|
||||
@%:@undef PACKAGE_STRING])
|
||||
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_BUGREPORT])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_BUGREPORT$])
|
||||
m4trace:configure.ac:26: -1- AH_OUTPUT([PACKAGE_BUGREPORT], [/* Define to the address where bug reports for this package should be sent. */
|
||||
@%:@undef PACKAGE_BUGREPORT])
|
||||
m4trace:configure.ac:26: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE_URL])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^PACKAGE_URL$])
|
||||
m4trace:configure.ac:26: -1- AH_OUTPUT([PACKAGE_URL], [/* Define to the home page for this package. */
|
||||
@%:@undef PACKAGE_URL])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([DEFS])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([DEFS])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^DEFS$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([ECHO_C])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([ECHO_C])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^ECHO_C$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([ECHO_N])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([ECHO_N])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^ECHO_N$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([ECHO_T])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([ECHO_T])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^ECHO_T$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([LIBS])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([LIBS])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^LIBS$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([build_alias])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([build_alias])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^build_alias$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([host_alias])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([host_alias])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^host_alias$])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST([target_alias])
|
||||
m4trace:configure.ac:26: -1- AC_SUBST_TRACE([target_alias])
|
||||
m4trace:configure.ac:26: -1- m4_pattern_allow([^target_alias$])
|
||||
m4trace:configure.ac:29: -1- AC_CONFIG_HEADERS([config.h])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CFLAGS])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CFLAGS])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CFLAGS$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([LDFLAGS])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([LDFLAGS])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^LDFLAGS$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([LIBS])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([LIBS])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^LIBS$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CPPFLAGS])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CPPFLAGS])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CPPFLAGS$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CC])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CC])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CC$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([ac_ct_CC])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([ac_ct_CC])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^ac_ct_CC$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([EXEEXT], [$ac_cv_exeext])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([EXEEXT])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^EXEEXT$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([OBJEXT], [$ac_cv_objext])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([OBJEXT])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^OBJEXT$])
|
||||
m4trace:configure.ac:32: -1- AC_REQUIRE_AUX_FILE([compile])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CPP])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CPP])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CPP$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CPPFLAGS])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CPPFLAGS])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CPPFLAGS$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([CPP])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([CPP])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^CPP$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([GREP])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([GREP])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^GREP$])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST([EGREP])
|
||||
m4trace:configure.ac:32: -1- AC_SUBST_TRACE([EGREP])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^EGREP$])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^STDC_HEADERS$])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
|
||||
@%:@undef STDC_HEADERS])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_SYS_TYPES_H], [/* Define to 1 if you have the <sys/types.h> header file. */
|
||||
@%:@undef HAVE_SYS_TYPES_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_SYS_STAT_H], [/* Define to 1 if you have the <sys/stat.h> header file. */
|
||||
@%:@undef HAVE_SYS_STAT_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
@%:@undef HAVE_STDLIB_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
|
||||
@%:@undef HAVE_STRING_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_MEMORY_H], [/* Define to 1 if you have the <memory.h> header file. */
|
||||
@%:@undef HAVE_MEMORY_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_STRINGS_H], [/* Define to 1 if you have the <strings.h> header file. */
|
||||
@%:@undef HAVE_STRINGS_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_INTTYPES_H], [/* Define to 1 if you have the <inttypes.h> header file. */
|
||||
@%:@undef HAVE_INTTYPES_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_STDINT_H], [/* Define to 1 if you have the <stdint.h> header file. */
|
||||
@%:@undef HAVE_STDINT_H])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
|
||||
@%:@undef HAVE_UNISTD_H])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_SOURCE])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^_POSIX_SOURCE$])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([_POSIX_SOURCE], [/* Define to 1 if you need to in order for `stat\' and other things to work. */
|
||||
@%:@undef _POSIX_SOURCE])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_1_SOURCE])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^_POSIX_1_SOURCE$])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([_POSIX_1_SOURCE], [/* Define to 2 if the system does not provide POSIX.1 features except with
|
||||
this defined. */
|
||||
@%:@undef _POSIX_1_SOURCE])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([_MINIX])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^_MINIX$])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([_MINIX], [/* Define to 1 if on MINIX. */
|
||||
@%:@undef _MINIX])
|
||||
m4trace:configure.ac:32: -1- AH_OUTPUT([USE_SYSTEM_EXTENSIONS], [/* Enable extensions on AIX 3, Interix. */
|
||||
#ifndef _ALL_SOURCE
|
||||
# undef _ALL_SOURCE
|
||||
#endif
|
||||
/* Enable GNU extensions on systems that have them. */
|
||||
#ifndef _GNU_SOURCE
|
||||
# undef _GNU_SOURCE
|
||||
#endif
|
||||
/* Enable threading extensions on Solaris. */
|
||||
#ifndef _POSIX_PTHREAD_SEMANTICS
|
||||
# undef _POSIX_PTHREAD_SEMANTICS
|
||||
#endif
|
||||
/* Enable extensions on HP NonStop. */
|
||||
#ifndef _TANDEM_SOURCE
|
||||
# undef _TANDEM_SOURCE
|
||||
#endif
|
||||
/* Enable general extensions on Solaris. */
|
||||
#ifndef __EXTENSIONS__
|
||||
# undef __EXTENSIONS__
|
||||
#endif
|
||||
])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([__EXTENSIONS__])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^__EXTENSIONS__$])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([_ALL_SOURCE])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^_ALL_SOURCE$])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([_GNU_SOURCE])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^_GNU_SOURCE$])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([_POSIX_PTHREAD_SEMANTICS])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^_POSIX_PTHREAD_SEMANTICS$])
|
||||
m4trace:configure.ac:32: -1- AC_DEFINE_TRACE_LITERAL([_TANDEM_SOURCE])
|
||||
m4trace:configure.ac:32: -1- m4_pattern_allow([^_TANDEM_SOURCE$])
|
||||
m4trace:configure.ac:34: -1- AM_INIT_AUTOMAKE
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AM_[A-Z]+FLAGS$])
|
||||
m4trace:configure.ac:34: -1- AM_AUTOMAKE_VERSION([1.16.2])
|
||||
m4trace:configure.ac:34: -1- AC_REQUIRE_AUX_FILE([install-sh])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([INSTALL_PROGRAM])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([INSTALL_PROGRAM])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^INSTALL_PROGRAM$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([INSTALL_SCRIPT])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([INSTALL_SCRIPT])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^INSTALL_SCRIPT$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([INSTALL_DATA])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([INSTALL_DATA])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^INSTALL_DATA$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__isrc], [' -I$(srcdir)'])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__isrc])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__isrc$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([am__isrc])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([CYGPATH_W])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CYGPATH_W])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^CYGPATH_W$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([PACKAGE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^PACKAGE$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([VERSION])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^VERSION$])
|
||||
m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([PACKAGE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^PACKAGE$])
|
||||
m4trace:configure.ac:34: -1- AH_OUTPUT([PACKAGE], [/* Name of package */
|
||||
@%:@undef PACKAGE])
|
||||
m4trace:configure.ac:34: -1- AC_DEFINE_TRACE_LITERAL([VERSION])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^VERSION$])
|
||||
m4trace:configure.ac:34: -1- AH_OUTPUT([VERSION], [/* Version number of package */
|
||||
@%:@undef VERSION])
|
||||
m4trace:configure.ac:34: -1- AC_REQUIRE_AUX_FILE([missing])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([ACLOCAL])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([ACLOCAL])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^ACLOCAL$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AUTOCONF])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AUTOCONF])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AUTOCONF$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AUTOMAKE])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AUTOMAKE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AUTOMAKE$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AUTOHEADER])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AUTOHEADER])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AUTOHEADER$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([MAKEINFO])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([MAKEINFO])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^MAKEINFO$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([install_sh])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([install_sh])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^install_sh$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([STRIP])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([STRIP])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^STRIP$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([INSTALL_STRIP_PROGRAM])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([INSTALL_STRIP_PROGRAM])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^INSTALL_STRIP_PROGRAM$])
|
||||
m4trace:configure.ac:34: -1- AC_REQUIRE_AUX_FILE([install-sh])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([MKDIR_P])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([MKDIR_P])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^MKDIR_P$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([mkdir_p], ['$(MKDIR_P)'])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([mkdir_p])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^mkdir_p$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AWK])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AWK])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AWK$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([SET_MAKE])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([SET_MAKE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^SET_MAKE$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__leading_dot])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__leading_dot])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__leading_dot$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AMTAR], ['$${TAR-tar}'])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AMTAR])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AMTAR$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__tar])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__tar])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__tar$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__untar])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__untar])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__untar$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([DEPDIR])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^DEPDIR$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__include])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__include])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__include$])
|
||||
m4trace:configure.ac:34: -1- AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AMDEP_TRUE])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AMDEP_TRUE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AMDEP_TRUE$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AMDEP_FALSE])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AMDEP_FALSE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AMDEP_FALSE$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AMDEP_TRUE])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AMDEP_FALSE])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AMDEPBACKSLASH])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AMDEPBACKSLASH])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AMDEPBACKSLASH$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__nodep])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__nodep])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__nodep$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([am__nodep])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([CCDEPMODE], [depmode=$am_cv_CC_dependencies_compiler_type])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([CCDEPMODE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^CCDEPMODE$])
|
||||
m4trace:configure.ac:34: -1- AM_CONDITIONAL([am__fastdepCC], [
|
||||
test "x$enable_dependency_tracking" != xno \
|
||||
&& test "$am_cv_CC_dependencies_compiler_type" = gcc3])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__fastdepCC_TRUE])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__fastdepCC_TRUE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__fastdepCC_TRUE$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([am__fastdepCC_FALSE])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([am__fastdepCC_FALSE])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^am__fastdepCC_FALSE$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_TRUE])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([am__fastdepCC_FALSE])
|
||||
m4trace:configure.ac:34: -1- AM_SILENT_RULES
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AM_V])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AM_V])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AM_V$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AM_V])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AM_DEFAULT_V])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AM_DEFAULT_V])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AM_DEFAULT_V$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AM_DEFAULT_VERBOSITY])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST([AM_BACKSLASH])
|
||||
m4trace:configure.ac:34: -1- AC_SUBST_TRACE([AM_BACKSLASH])
|
||||
m4trace:configure.ac:34: -1- m4_pattern_allow([^AM_BACKSLASH$])
|
||||
m4trace:configure.ac:34: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
|
||||
m4trace:configure.ac:35: -1- AC_PROG_LIBTOOL
|
||||
m4trace:configure.ac:35: -1- _m4_warn([obsolete], [The macro `AC_PROG_LIBTOOL' is obsolete.
|
||||
You should run autoupdate.], [m4/libtool.m4:99: AC_PROG_LIBTOOL is expanded from...
|
||||
configure.ac:35: the top level])
|
||||
m4trace:configure.ac:35: -1- LT_INIT
|
||||
m4trace:configure.ac:35: -1- m4_pattern_forbid([^_?LT_[A-Z_]+$])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])
|
||||
m4trace:configure.ac:35: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([LIBTOOL])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([LIBTOOL])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^LIBTOOL$])
|
||||
m4trace:configure.ac:35: -1- AC_CANONICAL_HOST
|
||||
m4trace:configure.ac:35: -1- AC_CANONICAL_BUILD
|
||||
m4trace:configure.ac:35: -1- AC_REQUIRE_AUX_FILE([config.sub])
|
||||
m4trace:configure.ac:35: -1- AC_REQUIRE_AUX_FILE([config.guess])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([build], [$ac_cv_build])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([build])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^build$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([build_cpu], [$[1]])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([build_cpu])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^build_cpu$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([build_vendor], [$[2]])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([build_vendor])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^build_vendor$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([build_os])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([build_os])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^build_os$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([host], [$ac_cv_host])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([host])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^host$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([host_cpu], [$[1]])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([host_cpu])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^host_cpu$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([host_vendor], [$[2]])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([host_vendor])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^host_vendor$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([host_os])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([host_os])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^host_os$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([SED])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([SED])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^SED$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([FGREP])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([FGREP])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^FGREP$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([GREP])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([GREP])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^GREP$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([LD])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([LD])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^LD$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([DUMPBIN])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([DUMPBIN])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^DUMPBIN$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([ac_ct_DUMPBIN])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([ac_ct_DUMPBIN])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^ac_ct_DUMPBIN$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([DUMPBIN])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([DUMPBIN])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^DUMPBIN$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([NM])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([NM])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^NM$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([LN_S], [$as_ln_s])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([LN_S])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^LN_S$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([OBJDUMP])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([OBJDUMP])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^OBJDUMP$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([OBJDUMP])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([OBJDUMP])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^OBJDUMP$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([DLLTOOL])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([DLLTOOL])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^DLLTOOL$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([DLLTOOL])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([DLLTOOL])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^DLLTOOL$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([AR])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([AR])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^AR$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([ac_ct_AR])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([ac_ct_AR])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^ac_ct_AR$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([STRIP])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([STRIP])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^STRIP$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([RANLIB])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([RANLIB])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^RANLIB$])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([LT_OBJDIR])
|
||||
m4trace:configure.ac:35: -1- AC_DEFINE_TRACE_LITERAL([LT_OBJDIR])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^LT_OBJDIR$])
|
||||
m4trace:configure.ac:35: -1- AH_OUTPUT([LT_OBJDIR], [/* Define to the sub-directory where libtool stores uninstalled libraries. */
|
||||
@%:@undef LT_OBJDIR])
|
||||
m4trace:configure.ac:35: -1- LT_SUPPORTED_TAG([CC])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([MANIFEST_TOOL])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([MANIFEST_TOOL])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^MANIFEST_TOOL$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([DSYMUTIL])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([DSYMUTIL])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^DSYMUTIL$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([NMEDIT])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([NMEDIT])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^NMEDIT$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([LIPO])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([LIPO])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^LIPO$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([OTOOL])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([OTOOL])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^OTOOL$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([OTOOL64])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([OTOOL64])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^OTOOL64$])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST([LT_SYS_LIBRARY_PATH])
|
||||
m4trace:configure.ac:35: -1- AC_SUBST_TRACE([LT_SYS_LIBRARY_PATH])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^LT_SYS_LIBRARY_PATH$])
|
||||
m4trace:configure.ac:35: -1- AH_OUTPUT([HAVE_DLFCN_H], [/* Define to 1 if you have the <dlfcn.h> header file. */
|
||||
@%:@undef HAVE_DLFCN_H])
|
||||
m4trace:configure.ac:35: -1- AC_DEFINE_TRACE_LITERAL([HAVE_DLFCN_H])
|
||||
m4trace:configure.ac:35: -1- m4_pattern_allow([^HAVE_DLFCN_H$])
|
||||
m4trace:configure.ac:38: -1- AC_SUBST([LT_VERSION], [0:63:0])
|
||||
m4trace:configure.ac:38: -1- AC_SUBST_TRACE([LT_VERSION])
|
||||
m4trace:configure.ac:38: -1- m4_pattern_allow([^LT_VERSION$])
|
||||
m4trace:configure.ac:40: -1- AM_SILENT_RULES([yes])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST([AM_V])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST_TRACE([AM_V])
|
||||
m4trace:configure.ac:40: -1- m4_pattern_allow([^AM_V$])
|
||||
m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AM_V])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST([AM_DEFAULT_V])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST_TRACE([AM_DEFAULT_V])
|
||||
m4trace:configure.ac:40: -1- m4_pattern_allow([^AM_DEFAULT_V$])
|
||||
m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AM_DEFAULT_V])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST([AM_DEFAULT_VERBOSITY])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST_TRACE([AM_DEFAULT_VERBOSITY])
|
||||
m4trace:configure.ac:40: -1- m4_pattern_allow([^AM_DEFAULT_VERBOSITY$])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST([AM_BACKSLASH])
|
||||
m4trace:configure.ac:40: -1- AC_SUBST_TRACE([AM_BACKSLASH])
|
||||
m4trace:configure.ac:40: -1- m4_pattern_allow([^AM_BACKSLASH$])
|
||||
m4trace:configure.ac:40: -1- _AM_SUBST_NOTMAKE([AM_BACKSLASH])
|
||||
m4trace:configure.ac:45: -1- AC_SUBST([LN_S], [$as_ln_s])
|
||||
m4trace:configure.ac:45: -1- AC_SUBST_TRACE([LN_S])
|
||||
m4trace:configure.ac:45: -1- m4_pattern_allow([^LN_S$])
|
||||
m4trace:configure.ac:46: -1- AC_SUBST([AWK])
|
||||
m4trace:configure.ac:46: -1- AC_SUBST_TRACE([AWK])
|
||||
m4trace:configure.ac:46: -1- m4_pattern_allow([^AWK$])
|
||||
m4trace:configure.ac:47: -1- AC_SUBST([NROFF])
|
||||
m4trace:configure.ac:47: -1- AC_SUBST_TRACE([NROFF])
|
||||
m4trace:configure.ac:47: -1- m4_pattern_allow([^NROFF$])
|
||||
m4trace:configure.ac:47: -1- AC_SUBST([MANTYPE])
|
||||
m4trace:configure.ac:47: -1- AC_SUBST_TRACE([MANTYPE])
|
||||
m4trace:configure.ac:47: -1- m4_pattern_allow([^MANTYPE$])
|
||||
m4trace:configure.ac:49: -1- AH_OUTPUT([HAVE_LIBNCURSES], [/* Define to 1 if you have the `ncurses\' library (-lncurses). */
|
||||
@%:@undef HAVE_LIBNCURSES])
|
||||
m4trace:configure.ac:49: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBNCURSES])
|
||||
m4trace:configure.ac:49: -1- m4_pattern_allow([^HAVE_LIBNCURSES$])
|
||||
m4trace:configure.ac:49: -1- AH_OUTPUT([HAVE_LIBCURSES], [/* Define to 1 if you have the `curses\' library (-lcurses). */
|
||||
@%:@undef HAVE_LIBCURSES])
|
||||
m4trace:configure.ac:49: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBCURSES])
|
||||
m4trace:configure.ac:49: -1- m4_pattern_allow([^HAVE_LIBCURSES$])
|
||||
m4trace:configure.ac:49: -1- AH_OUTPUT([HAVE_LIBTERMCAP], [/* Define to 1 if you have the `termcap\' library (-ltermcap). */
|
||||
@%:@undef HAVE_LIBTERMCAP])
|
||||
m4trace:configure.ac:49: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBTERMCAP])
|
||||
m4trace:configure.ac:49: -1- m4_pattern_allow([^HAVE_LIBTERMCAP$])
|
||||
m4trace:configure.ac:49: -1- AH_OUTPUT([HAVE_LIBTINFO], [/* Define to 1 if you have the `tinfo\' library (-ltinfo). */
|
||||
@%:@undef HAVE_LIBTINFO])
|
||||
m4trace:configure.ac:49: -1- AC_DEFINE_TRACE_LITERAL([HAVE_LIBTINFO])
|
||||
m4trace:configure.ac:49: -1- m4_pattern_allow([^HAVE_LIBTINFO$])
|
||||
m4trace:configure.ac:69: -1- AM_CONDITIONAL([ENABLE_EXAMPLES], [test "$enable_examples" = "yes"])
|
||||
m4trace:configure.ac:69: -1- AC_SUBST([ENABLE_EXAMPLES_TRUE])
|
||||
m4trace:configure.ac:69: -1- AC_SUBST_TRACE([ENABLE_EXAMPLES_TRUE])
|
||||
m4trace:configure.ac:69: -1- m4_pattern_allow([^ENABLE_EXAMPLES_TRUE$])
|
||||
m4trace:configure.ac:69: -1- AC_SUBST([ENABLE_EXAMPLES_FALSE])
|
||||
m4trace:configure.ac:69: -1- AC_SUBST_TRACE([ENABLE_EXAMPLES_FALSE])
|
||||
m4trace:configure.ac:69: -1- m4_pattern_allow([^ENABLE_EXAMPLES_FALSE$])
|
||||
m4trace:configure.ac:69: -1- _AM_SUBST_NOTMAKE([ENABLE_EXAMPLES_TRUE])
|
||||
m4trace:configure.ac:69: -1- _AM_SUBST_NOTMAKE([ENABLE_EXAMPLES_FALSE])
|
||||
m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_DIRENT_H], [/* Define to 1 if you have the <dirent.h> header file, and it defines `DIR\'.
|
||||
*/
|
||||
@%:@undef HAVE_DIRENT_H])
|
||||
m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_NDIR_H], [/* Define to 1 if you have the <sys/ndir.h> header file, and it defines `DIR\'.
|
||||
*/
|
||||
@%:@undef HAVE_SYS_NDIR_H])
|
||||
m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_SYS_DIR_H], [/* Define to 1 if you have the <sys/dir.h> header file, and it defines `DIR\'.
|
||||
*/
|
||||
@%:@undef HAVE_SYS_DIR_H])
|
||||
m4trace:configure.ac:72: -1- AH_OUTPUT([HAVE_NDIR_H], [/* Define to 1 if you have the <ndir.h> header file, and it defines `DIR\'. */
|
||||
@%:@undef HAVE_NDIR_H])
|
||||
m4trace:configure.ac:73: -1- AC_DEFINE_TRACE_LITERAL([STDC_HEADERS])
|
||||
m4trace:configure.ac:73: -1- m4_pattern_allow([^STDC_HEADERS$])
|
||||
m4trace:configure.ac:73: -1- AH_OUTPUT([STDC_HEADERS], [/* Define to 1 if you have the ANSI C header files. */
|
||||
@%:@undef STDC_HEADERS])
|
||||
m4trace:configure.ac:74: -1- AC_DEFINE_TRACE_LITERAL([HAVE_SYS_WAIT_H])
|
||||
m4trace:configure.ac:74: -1- m4_pattern_allow([^HAVE_SYS_WAIT_H$])
|
||||
m4trace:configure.ac:74: -1- AH_OUTPUT([HAVE_SYS_WAIT_H], [/* Define to 1 if you have <sys/wait.h> that is POSIX.1 compatible. */
|
||||
@%:@undef HAVE_SYS_WAIT_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_FCNTL_H], [/* Define to 1 if you have the <fcntl.h> header file. */
|
||||
@%:@undef HAVE_FCNTL_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_LIMITS_H], [/* Define to 1 if you have the <limits.h> header file. */
|
||||
@%:@undef HAVE_LIMITS_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_MALLOC_H], [/* Define to 1 if you have the <malloc.h> header file. */
|
||||
@%:@undef HAVE_MALLOC_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_STDLIB_H], [/* Define to 1 if you have the <stdlib.h> header file. */
|
||||
@%:@undef HAVE_STDLIB_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_STRING_H], [/* Define to 1 if you have the <string.h> header file. */
|
||||
@%:@undef HAVE_STRING_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_SYS_IOCTL_H], [/* Define to 1 if you have the <sys/ioctl.h> header file. */
|
||||
@%:@undef HAVE_SYS_IOCTL_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_SYS_PARAM_H], [/* Define to 1 if you have the <sys/param.h> header file. */
|
||||
@%:@undef HAVE_SYS_PARAM_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_UNISTD_H], [/* Define to 1 if you have the <unistd.h> header file. */
|
||||
@%:@undef HAVE_UNISTD_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_CURSES_H], [/* Define to 1 if you have the <curses.h> header file. */
|
||||
@%:@undef HAVE_CURSES_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_NCURSES_H], [/* Define to 1 if you have the <ncurses.h> header file. */
|
||||
@%:@undef HAVE_NCURSES_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_SYS_CDEFS_H], [/* Define to 1 if you have the <sys/cdefs.h> header file. */
|
||||
@%:@undef HAVE_SYS_CDEFS_H])
|
||||
m4trace:configure.ac:75: -1- AH_OUTPUT([HAVE_TERMCAP_H], [/* Define to 1 if you have the <termcap.h> header file. */
|
||||
@%:@undef HAVE_TERMCAP_H])
|
||||
m4trace:configure.ac:88: -1- AH_OUTPUT([HAVE_TERM_H], [/* Define to 1 if you have the <term.h> header file. */
|
||||
@%:@undef HAVE_TERM_H])
|
||||
m4trace:configure.ac:88: -1- AC_DEFINE_TRACE_LITERAL([HAVE_TERM_H])
|
||||
m4trace:configure.ac:88: -1- m4_pattern_allow([^HAVE_TERM_H$])
|
||||
m4trace:configure.ac:100: -2- AC_DEFINE_TRACE_LITERAL([HAVE_STRUCT_DIRENT_D_NAMLEN])
|
||||
m4trace:configure.ac:100: -2- m4_pattern_allow([^HAVE_STRUCT_DIRENT_D_NAMLEN$])
|
||||
m4trace:configure.ac:100: -2- AH_OUTPUT([HAVE_STRUCT_DIRENT_D_NAMLEN], [/* Define to 1 if struct dirent has member d_namlen */
|
||||
@%:@undef HAVE_STRUCT_DIRENT_D_NAMLEN])
|
||||
m4trace:configure.ac:108: -1- AC_DEFINE_TRACE_LITERAL([const])
|
||||
m4trace:configure.ac:108: -1- m4_pattern_allow([^const$])
|
||||
m4trace:configure.ac:108: -1- AH_OUTPUT([const], [/* Define to empty if `const\' does not conform to ANSI C. */
|
||||
@%:@undef const])
|
||||
m4trace:configure.ac:109: -1- AC_DEFINE_TRACE_LITERAL([pid_t])
|
||||
m4trace:configure.ac:109: -1- m4_pattern_allow([^pid_t$])
|
||||
m4trace:configure.ac:109: -1- AH_OUTPUT([pid_t], [/* Define to `int\' if <sys/types.h> does not define. */
|
||||
@%:@undef pid_t])
|
||||
m4trace:configure.ac:110: -1- AC_DEFINE_TRACE_LITERAL([size_t])
|
||||
m4trace:configure.ac:110: -1- m4_pattern_allow([^size_t$])
|
||||
m4trace:configure.ac:110: -1- AH_OUTPUT([size_t], [/* Define to `unsigned int\' if <sys/types.h> does not define. */
|
||||
@%:@undef size_t])
|
||||
m4trace:configure.ac:111: -1- AC_DEFINE_TRACE_LITERAL([HAVE_U_INT32_T])
|
||||
m4trace:configure.ac:111: -1- m4_pattern_allow([^HAVE_U_INT32_T$])
|
||||
m4trace:configure.ac:111: -1- AH_OUTPUT([HAVE_U_INT32_T], [/* Define to 1 if the system has the type `u_int32_t\'. */
|
||||
@%:@undef HAVE_U_INT32_T])
|
||||
m4trace:configure.ac:114: -1- AC_DEFINE_TRACE_LITERAL([CLOSEDIR_VOID])
|
||||
m4trace:configure.ac:114: -1- m4_pattern_allow([^CLOSEDIR_VOID$])
|
||||
m4trace:configure.ac:114: -1- AH_OUTPUT([CLOSEDIR_VOID], [/* Define to 1 if the `closedir\' function returns void instead of `int\'. */
|
||||
@%:@undef CLOSEDIR_VOID])
|
||||
m4trace:configure.ac:115: -1- AH_OUTPUT([HAVE_VFORK_H], [/* Define to 1 if you have the <vfork.h> header file. */
|
||||
@%:@undef HAVE_VFORK_H])
|
||||
m4trace:configure.ac:115: -1- AC_DEFINE_TRACE_LITERAL([HAVE_VFORK_H])
|
||||
m4trace:configure.ac:115: -1- m4_pattern_allow([^HAVE_VFORK_H$])
|
||||
m4trace:configure.ac:115: -1- AH_OUTPUT([HAVE_FORK], [/* Define to 1 if you have the `fork\' function. */
|
||||
@%:@undef HAVE_FORK])
|
||||
m4trace:configure.ac:115: -1- AH_OUTPUT([HAVE_VFORK], [/* Define to 1 if you have the `vfork\' function. */
|
||||
@%:@undef HAVE_VFORK])
|
||||
m4trace:configure.ac:115: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_VFORK])
|
||||
m4trace:configure.ac:115: -1- m4_pattern_allow([^HAVE_WORKING_VFORK$])
|
||||
m4trace:configure.ac:115: -1- AH_OUTPUT([HAVE_WORKING_VFORK], [/* Define to 1 if `vfork\' works. */
|
||||
@%:@undef HAVE_WORKING_VFORK])
|
||||
m4trace:configure.ac:115: -1- AC_DEFINE_TRACE_LITERAL([vfork])
|
||||
m4trace:configure.ac:115: -1- m4_pattern_allow([^vfork$])
|
||||
m4trace:configure.ac:115: -1- AH_OUTPUT([vfork], [/* Define as `fork\' if `vfork\' does not work. */
|
||||
@%:@undef vfork])
|
||||
m4trace:configure.ac:115: -1- AC_DEFINE_TRACE_LITERAL([HAVE_WORKING_FORK])
|
||||
m4trace:configure.ac:115: -1- m4_pattern_allow([^HAVE_WORKING_FORK$])
|
||||
m4trace:configure.ac:115: -1- AH_OUTPUT([HAVE_WORKING_FORK], [/* Define to 1 if `fork\' works. */
|
||||
@%:@undef HAVE_WORKING_FORK])
|
||||
m4trace:configure.ac:120: -1- _m4_warn([obsolete], [The macro `AC_TYPE_SIGNAL' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/types.m4:746: AC_TYPE_SIGNAL is expanded from...
|
||||
configure.ac:120: the top level])
|
||||
m4trace:configure.ac:120: -1- AC_DEFINE_TRACE_LITERAL([RETSIGTYPE])
|
||||
m4trace:configure.ac:120: -1- m4_pattern_allow([^RETSIGTYPE$])
|
||||
m4trace:configure.ac:120: -1- AH_OUTPUT([RETSIGTYPE], [/* Define as the return type of signal handlers (`int\' or `void\'). */
|
||||
@%:@undef RETSIGTYPE])
|
||||
m4trace:configure.ac:121: -1- AC_DEFINE_TRACE_LITERAL([LSTAT_FOLLOWS_SLASHED_SYMLINK])
|
||||
m4trace:configure.ac:121: -1- m4_pattern_allow([^LSTAT_FOLLOWS_SLASHED_SYMLINK$])
|
||||
m4trace:configure.ac:121: -1- AH_OUTPUT([LSTAT_FOLLOWS_SLASHED_SYMLINK], [/* Define to 1 if `lstat\' dereferences a symlink specified with a trailing
|
||||
slash. */
|
||||
@%:@undef LSTAT_FOLLOWS_SLASHED_SYMLINK])
|
||||
m4trace:configure.ac:121: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS lstat.$ac_objext"])
|
||||
m4trace:configure.ac:121: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
||||
m4trace:configure.ac:121: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
||||
m4trace:configure.ac:121: -1- AC_LIBSOURCE([lstat.c])
|
||||
m4trace:configure.ac:121: -1- AC_SUBST([LIB@&t@OBJS], ["$LIB@&t@OBJS stat.$ac_objext"])
|
||||
m4trace:configure.ac:121: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
||||
m4trace:configure.ac:121: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
||||
m4trace:configure.ac:121: -1- AC_LIBSOURCE([stat.c])
|
||||
m4trace:configure.ac:121: -1- AC_DEFINE_TRACE_LITERAL([HAVE_STAT_EMPTY_STRING_BUG])
|
||||
m4trace:configure.ac:121: -1- m4_pattern_allow([^HAVE_STAT_EMPTY_STRING_BUG$])
|
||||
m4trace:configure.ac:121: -1- AH_OUTPUT([HAVE_STAT_EMPTY_STRING_BUG], [/* Define to 1 if `stat\' has the bug that it succeeds when given the
|
||||
zero-length file name argument. */
|
||||
@%:@undef HAVE_STAT_EMPTY_STRING_BUG])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_ENDPWENT], [/* Define to 1 if you have the `endpwent\' function. */
|
||||
@%:@undef HAVE_ENDPWENT])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_ISASCII], [/* Define to 1 if you have the `isascii\' function. */
|
||||
@%:@undef HAVE_ISASCII])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_MEMCHR], [/* Define to 1 if you have the `memchr\' function. */
|
||||
@%:@undef HAVE_MEMCHR])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_MEMSET], [/* Define to 1 if you have the `memset\' function. */
|
||||
@%:@undef HAVE_MEMSET])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_RE_COMP], [/* Define to 1 if you have the `re_comp\' function. */
|
||||
@%:@undef HAVE_RE_COMP])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_REGCOMP], [/* Define to 1 if you have the `regcomp\' function. */
|
||||
@%:@undef HAVE_REGCOMP])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRCASECMP], [/* Define to 1 if you have the `strcasecmp\' function. */
|
||||
@%:@undef HAVE_STRCASECMP])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRCHR], [/* Define to 1 if you have the `strchr\' function. */
|
||||
@%:@undef HAVE_STRCHR])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRCSPN], [/* Define to 1 if you have the `strcspn\' function. */
|
||||
@%:@undef HAVE_STRCSPN])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRDUP], [/* Define to 1 if you have the `strdup\' function. */
|
||||
@%:@undef HAVE_STRDUP])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRERROR], [/* Define to 1 if you have the `strerror\' function. */
|
||||
@%:@undef HAVE_STRERROR])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRRCHR], [/* Define to 1 if you have the `strrchr\' function. */
|
||||
@%:@undef HAVE_STRRCHR])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRSTR], [/* Define to 1 if you have the `strstr\' function. */
|
||||
@%:@undef HAVE_STRSTR])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRTOL], [/* Define to 1 if you have the `strtol\' function. */
|
||||
@%:@undef HAVE_STRTOL])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_ISSETUGID], [/* Define to 1 if you have the `issetugid\' function. */
|
||||
@%:@undef HAVE_ISSETUGID])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_WCSDUP], [/* Define to 1 if you have the `wcsdup\' function. */
|
||||
@%:@undef HAVE_WCSDUP])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRLCPY], [/* Define to 1 if you have the `strlcpy\' function. */
|
||||
@%:@undef HAVE_STRLCPY])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRLCAT], [/* Define to 1 if you have the `strlcat\' function. */
|
||||
@%:@undef HAVE_STRLCAT])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_GETLINE], [/* Define to 1 if you have the `getline\' function. */
|
||||
@%:@undef HAVE_GETLINE])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_VIS], [/* Define to 1 if you have the `vis\' function. */
|
||||
@%:@undef HAVE_VIS])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRVIS], [/* Define to 1 if you have the `strvis\' function. */
|
||||
@%:@undef HAVE_STRVIS])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_STRUNVIS], [/* Define to 1 if you have the `strunvis\' function. */
|
||||
@%:@undef HAVE_STRUNVIS])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE___SECURE_GETENV], [/* Define to 1 if you have the `__secure_getenv\' function. */
|
||||
@%:@undef HAVE___SECURE_GETENV])
|
||||
m4trace:configure.ac:122: -1- AH_OUTPUT([HAVE_SECURE_GETENV], [/* Define to 1 if you have the `secure_getenv\' function. */
|
||||
@%:@undef HAVE_SECURE_GETENV])
|
||||
m4trace:configure.ac:126: -1- AM_CONDITIONAL([HAVE_STRLCPY], [test "x$found_strlcpy" = xyes])
|
||||
m4trace:configure.ac:126: -1- AC_SUBST([HAVE_STRLCPY_TRUE])
|
||||
m4trace:configure.ac:126: -1- AC_SUBST_TRACE([HAVE_STRLCPY_TRUE])
|
||||
m4trace:configure.ac:126: -1- m4_pattern_allow([^HAVE_STRLCPY_TRUE$])
|
||||
m4trace:configure.ac:126: -1- AC_SUBST([HAVE_STRLCPY_FALSE])
|
||||
m4trace:configure.ac:126: -1- AC_SUBST_TRACE([HAVE_STRLCPY_FALSE])
|
||||
m4trace:configure.ac:126: -1- m4_pattern_allow([^HAVE_STRLCPY_FALSE$])
|
||||
m4trace:configure.ac:126: -1- _AM_SUBST_NOTMAKE([HAVE_STRLCPY_TRUE])
|
||||
m4trace:configure.ac:126: -1- _AM_SUBST_NOTMAKE([HAVE_STRLCPY_FALSE])
|
||||
m4trace:configure.ac:130: -1- AM_CONDITIONAL([HAVE_STRLCAT], [test "x$found_strlcat" = xyes])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST([HAVE_STRLCAT_TRUE])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST_TRACE([HAVE_STRLCAT_TRUE])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^HAVE_STRLCAT_TRUE$])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST([HAVE_STRLCAT_FALSE])
|
||||
m4trace:configure.ac:130: -1- AC_SUBST_TRACE([HAVE_STRLCAT_FALSE])
|
||||
m4trace:configure.ac:130: -1- m4_pattern_allow([^HAVE_STRLCAT_FALSE$])
|
||||
m4trace:configure.ac:130: -1- _AM_SUBST_NOTMAKE([HAVE_STRLCAT_TRUE])
|
||||
m4trace:configure.ac:130: -1- _AM_SUBST_NOTMAKE([HAVE_STRLCAT_FALSE])
|
||||
m4trace:configure.ac:134: -1- AM_CONDITIONAL([HAVE_VIS], [test "x$found_vis" = xyes])
|
||||
m4trace:configure.ac:134: -1- AC_SUBST([HAVE_VIS_TRUE])
|
||||
m4trace:configure.ac:134: -1- AC_SUBST_TRACE([HAVE_VIS_TRUE])
|
||||
m4trace:configure.ac:134: -1- m4_pattern_allow([^HAVE_VIS_TRUE$])
|
||||
m4trace:configure.ac:134: -1- AC_SUBST([HAVE_VIS_FALSE])
|
||||
m4trace:configure.ac:134: -1- AC_SUBST_TRACE([HAVE_VIS_FALSE])
|
||||
m4trace:configure.ac:134: -1- m4_pattern_allow([^HAVE_VIS_FALSE$])
|
||||
m4trace:configure.ac:134: -1- _AM_SUBST_NOTMAKE([HAVE_VIS_TRUE])
|
||||
m4trace:configure.ac:134: -1- _AM_SUBST_NOTMAKE([HAVE_VIS_FALSE])
|
||||
m4trace:configure.ac:138: -1- AM_CONDITIONAL([HAVE_UNVIS], [test "x$found_unvis" = xyes])
|
||||
m4trace:configure.ac:138: -1- AC_SUBST([HAVE_UNVIS_TRUE])
|
||||
m4trace:configure.ac:138: -1- AC_SUBST_TRACE([HAVE_UNVIS_TRUE])
|
||||
m4trace:configure.ac:138: -1- m4_pattern_allow([^HAVE_UNVIS_TRUE$])
|
||||
m4trace:configure.ac:138: -1- AC_SUBST([HAVE_UNVIS_FALSE])
|
||||
m4trace:configure.ac:138: -1- AC_SUBST_TRACE([HAVE_UNVIS_FALSE])
|
||||
m4trace:configure.ac:138: -1- m4_pattern_allow([^HAVE_UNVIS_FALSE$])
|
||||
m4trace:configure.ac:138: -1- _AM_SUBST_NOTMAKE([HAVE_UNVIS_TRUE])
|
||||
m4trace:configure.ac:138: -1- _AM_SUBST_NOTMAKE([HAVE_UNVIS_FALSE])
|
||||
m4trace:configure.ac:141: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from...
|
||||
acinclude.m4:36: EL_GETPW_R_POSIX is expanded from...
|
||||
configure.ac:141: the top level])
|
||||
m4trace:configure.ac:141: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPW_R_POSIX])
|
||||
m4trace:configure.ac:141: -1- m4_pattern_allow([^HAVE_GETPW_R_POSIX$])
|
||||
m4trace:configure.ac:141: -1- AH_OUTPUT([HAVE_GETPW_R_POSIX], [/* Define to 1 if you have getpwnam_r and getpwuid_r that are POSIX.1
|
||||
compatible. */
|
||||
@%:@undef HAVE_GETPW_R_POSIX])
|
||||
m4trace:configure.ac:142: -1- _m4_warn([obsolete], [The macro `AC_TRY_LINK' is obsolete.
|
||||
You should run autoupdate.], [../../lib/autoconf/general.m4:2687: AC_TRY_LINK is expanded from...
|
||||
acinclude.m4:52: EL_GETPW_R_DRAFT is expanded from...
|
||||
configure.ac:142: the top level])
|
||||
m4trace:configure.ac:142: -1- AC_DEFINE_TRACE_LITERAL([HAVE_GETPW_R_DRAFT])
|
||||
m4trace:configure.ac:142: -1- m4_pattern_allow([^HAVE_GETPW_R_DRAFT$])
|
||||
m4trace:configure.ac:142: -1- AH_OUTPUT([HAVE_GETPW_R_DRAFT], [/* Define to 1 if you have getpwnam_r and getpwuid_r that are draft POSIX.1
|
||||
versions. */
|
||||
@%:@undef HAVE_GETPW_R_DRAFT])
|
||||
m4trace:configure.ac:145: -1- AH_OUTPUT([zzzz1], [
|
||||
#include "sys.h"
|
||||
#define SCCSID
|
||||
#undef LIBC_SCCS
|
||||
#define lint
|
||||
])
|
||||
m4trace:configure.ac:152: -1- AC_CONFIG_FILES([Makefile
|
||||
libedit.pc
|
||||
src/Makefile
|
||||
doc/Makefile
|
||||
examples/Makefile])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST([LIB@&t@OBJS], [$ac_libobjs])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([LIB@&t@OBJS])
|
||||
m4trace:configure.ac:157: -1- m4_pattern_allow([^LIB@&t@OBJS$])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST([LTLIBOBJS], [$ac_ltlibobjs])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([LTLIBOBJS])
|
||||
m4trace:configure.ac:157: -1- m4_pattern_allow([^LTLIBOBJS$])
|
||||
m4trace:configure.ac:157: -1- AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST([am__EXEEXT_TRUE])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([am__EXEEXT_TRUE])
|
||||
m4trace:configure.ac:157: -1- m4_pattern_allow([^am__EXEEXT_TRUE$])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST([am__EXEEXT_FALSE])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([am__EXEEXT_FALSE])
|
||||
m4trace:configure.ac:157: -1- m4_pattern_allow([^am__EXEEXT_FALSE$])
|
||||
m4trace:configure.ac:157: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_TRUE])
|
||||
m4trace:configure.ac:157: -1- _AM_SUBST_NOTMAKE([am__EXEEXT_FALSE])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([top_builddir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([top_build_prefix])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([srcdir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([abs_srcdir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([top_srcdir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([abs_top_srcdir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([builddir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([abs_builddir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([abs_top_builddir])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([INSTALL])
|
||||
m4trace:configure.ac:157: -1- AC_SUBST_TRACE([MKDIR_P])
|
||||
m4trace:configure.ac:157: -1- AC_REQUIRE_AUX_FILE([ltmain.sh])
|
4
thirdparty/libedit-3.1/config.h
vendored
4
thirdparty/libedit-3.1/config.h
vendored
@ -207,7 +207,7 @@
|
||||
#define LT_OBJDIR ".libs/"
|
||||
|
||||
/* Name of package */
|
||||
#define PACKAGE "libedit-20191231"
|
||||
#define PACKAGE "libedit-20201104"
|
||||
|
||||
/* Define to the address where bug reports for this package should be sent. */
|
||||
#define PACKAGE_BUGREPORT ""
|
||||
@ -219,7 +219,7 @@
|
||||
#define PACKAGE_STRING "libedit 3.1"
|
||||
|
||||
/* Define to the one symbol short name of this package. */
|
||||
#define PACKAGE_TARNAME "libedit-20191231"
|
||||
#define PACKAGE_TARNAME "libedit-20201104"
|
||||
|
||||
/* Define to the home page for this package. */
|
||||
#define PACKAGE_URL ""
|
||||
|
193
thirdparty/libedit-3.1/config.log
vendored
193
thirdparty/libedit-3.1/config.log
vendored
@ -4,7 +4,7 @@ running configure, to aid debugging if configure makes a mistake.
|
||||
It was created by libedit configure 3.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
$ ./configure --build=i686-pc-linux-gnu CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32
|
||||
$ ./configure --build=i686-pc-linux-gnu CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32 build_alias=i686-pc-linux-gnu --no-create --no-recursion
|
||||
|
||||
## --------- ##
|
||||
## Platform. ##
|
||||
@ -120,7 +120,7 @@ configure:3241: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -139,7 +139,7 @@ configure:3300: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -204,7 +204,7 @@ configure:3589: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -265,7 +265,7 @@ configure:3589: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -302,6 +302,8 @@ configure:4030: checking whether make sets $(MAKE)
|
||||
configure:4052: result: yes
|
||||
configure:4074: checking whether make supports the include directive
|
||||
configure:4089: make -f confmf.GNU && cat confinc.out
|
||||
make[1]: Entering directory '/home/nillerusr/projects/source-engine/thirdparty/libedit-3.1'
|
||||
make[1]: Leaving directory '/home/nillerusr/projects/source-engine/thirdparty/libedit-3.1'
|
||||
this is the am__doit target
|
||||
configure:4092: $? = 0
|
||||
configure:4111: result: yes (GNU style)
|
||||
@ -457,7 +459,7 @@ configure:9054: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -477,7 +479,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -771,7 +773,7 @@ configure:9797: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -791,7 +793,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -836,7 +838,7 @@ configure:9797: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -856,7 +858,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -909,7 +911,7 @@ configure:9891: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -929,7 +931,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1005,7 +1007,7 @@ configure:9902: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1025,7 +1027,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1101,7 +1103,7 @@ configure:9913: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1121,7 +1123,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1201,7 +1203,7 @@ configure:9969: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1221,7 +1223,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1289,7 +1291,7 @@ configure:9969: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1309,7 +1311,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1367,7 +1369,7 @@ configure:10243: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1387,7 +1389,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1522,14 +1524,14 @@ configure:10369: $? = 0
|
||||
configure:10369: result: yes
|
||||
configure:10369: checking for issetugid
|
||||
configure:10369: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/cc2c3jjf.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccQSucJm.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `issetugid'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10369: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1549,7 +1551,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1637,14 +1639,14 @@ configure:10369: $? = 0
|
||||
configure:10369: result: yes
|
||||
configure:10369: checking for strlcpy
|
||||
configure:10369: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/cc4YPXxf.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cczZXvBa.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `strlcpy'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10369: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1664,7 +1666,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1749,14 +1751,14 @@ configure: failed program was:
|
||||
configure:10369: result: no
|
||||
configure:10369: checking for strlcat
|
||||
configure:10369: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/ccVAwpVC.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccChciXy.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `strlcat'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10369: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1776,7 +1778,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1865,14 +1867,14 @@ configure:10369: $? = 0
|
||||
configure:10369: result: yes
|
||||
configure:10369: checking for vis
|
||||
configure:10369: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/ccdGYxip.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccoKKrMj.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `vis'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10369: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -1892,7 +1894,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -1978,14 +1980,14 @@ configure: failed program was:
|
||||
configure:10369: result: no
|
||||
configure:10369: checking for strvis
|
||||
configure:10369: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/ccWhtH5O.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccZIiHBI.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `strvis'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10369: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -2005,7 +2007,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -2091,14 +2093,14 @@ configure: failed program was:
|
||||
configure:10369: result: no
|
||||
configure:10369: checking for strunvis
|
||||
configure:10369: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/ccndAX5f.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccNjl4y4.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `strunvis'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10369: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -2118,7 +2120,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -2204,14 +2206,14 @@ configure: failed program was:
|
||||
configure:10369: result: no
|
||||
configure:10369: checking for __secure_getenv
|
||||
configure:10369: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/ccGb89vC.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccHaSaUo.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `__secure_getenv'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10369: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -2231,7 +2233,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -2327,14 +2329,14 @@ configure:10414: checking for vis
|
||||
configure:10414: result: no
|
||||
configure:10431: checking for unvis
|
||||
configure:10431: gcc -std=gnu99 -o conftest -m32 -Wno-narrowing -m32 conftest.c -lncurses >&5
|
||||
/usr/bin/ld: /tmp/cc08PNB3.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccxdxGMU.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `unvis'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:10431: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -2354,7 +2356,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -2464,7 +2466,7 @@ configure:10501: $? = 1
|
||||
configure: failed program was:
|
||||
| /* confdefs.h */
|
||||
| #define PACKAGE_NAME "libedit"
|
||||
| #define PACKAGE_TARNAME "libedit-20191231"
|
||||
| #define PACKAGE_TARNAME "libedit-20201104"
|
||||
| #define PACKAGE_VERSION "3.1"
|
||||
| #define PACKAGE_STRING "libedit 3.1"
|
||||
| #define PACKAGE_BUGREPORT ""
|
||||
@ -2484,7 +2486,7 @@ configure: failed program was:
|
||||
| #define _GNU_SOURCE 1
|
||||
| #define _POSIX_PTHREAD_SEMANTICS 1
|
||||
| #define _TANDEM_SOURCE 1
|
||||
| #define PACKAGE "libedit-20191231"
|
||||
| #define PACKAGE "libedit-20201104"
|
||||
| #define VERSION "3.1"
|
||||
| #define HAVE_DLFCN_H 1
|
||||
| #define LT_OBJDIR ".libs/"
|
||||
@ -2547,37 +2549,6 @@ configure:10621: checking that generated files are newer than configure
|
||||
configure:10627: result: done
|
||||
configure:10670: creating ./config.status
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by libedit config.status 3.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1143: creating Makefile
|
||||
config.status:1143: creating libedit.pc
|
||||
config.status:1143: creating src/Makefile
|
||||
config.status:1143: creating doc/Makefile
|
||||
config.status:1143: creating examples/Makefile
|
||||
config.status:1143: creating config.h
|
||||
config.status:1324: config.h is unchanged
|
||||
config.status:1372: executing depfiles commands
|
||||
config.status:1449: cd src && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make: Nothing to be done for 'am--depfiles'.
|
||||
config.status:1454: $? = 0
|
||||
config.status:1449: cd examples && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make: Nothing to be done for 'am--depfiles'.
|
||||
config.status:1454: $? = 0
|
||||
config.status:1372: executing libtool commands
|
||||
|
||||
## ---------------- ##
|
||||
## Cache variables. ##
|
||||
## ---------------- ##
|
||||
@ -2796,11 +2767,11 @@ OBJDUMP='objdump'
|
||||
OBJEXT='o'
|
||||
OTOOL64=''
|
||||
OTOOL=''
|
||||
PACKAGE='libedit-20191231'
|
||||
PACKAGE='libedit-20201104'
|
||||
PACKAGE_BUGREPORT=''
|
||||
PACKAGE_NAME='libedit'
|
||||
PACKAGE_STRING='libedit 3.1'
|
||||
PACKAGE_TARNAME='libedit-20191231'
|
||||
PACKAGE_TARNAME='libedit-20201104'
|
||||
PACKAGE_URL=''
|
||||
PACKAGE_VERSION='3.1'
|
||||
PATH_SEPARATOR=':'
|
||||
@ -2866,7 +2837,7 @@ target_alias=''
|
||||
|
||||
/* confdefs.h */
|
||||
#define PACKAGE_NAME "libedit"
|
||||
#define PACKAGE_TARNAME "libedit-20191231"
|
||||
#define PACKAGE_TARNAME "libedit-20201104"
|
||||
#define PACKAGE_VERSION "3.1"
|
||||
#define PACKAGE_STRING "libedit 3.1"
|
||||
#define PACKAGE_BUGREPORT ""
|
||||
@ -2886,7 +2857,7 @@ target_alias=''
|
||||
#define _GNU_SOURCE 1
|
||||
#define _POSIX_PTHREAD_SEMANTICS 1
|
||||
#define _TANDEM_SOURCE 1
|
||||
#define PACKAGE "libedit-20191231"
|
||||
#define PACKAGE "libedit-20201104"
|
||||
#define VERSION "3.1"
|
||||
#define HAVE_DLFCN_H 1
|
||||
#define LT_OBJDIR ".libs/"
|
||||
@ -2934,3 +2905,57 @@ target_alias=''
|
||||
#define HAVE_GETPW_R_POSIX 1
|
||||
|
||||
configure: exit 0
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by libedit config.status 3.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1143: creating Makefile
|
||||
config.status:1143: creating libedit.pc
|
||||
config.status:1143: creating src/Makefile
|
||||
config.status:1143: creating doc/Makefile
|
||||
config.status:1143: creating examples/Makefile
|
||||
config.status:1143: creating config.h
|
||||
config.status:1372: executing depfiles commands
|
||||
config.status:1449: cd src && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
|
||||
make[1]: Entering directory '/home/nillerusr/projects/source-engine/thirdparty/libedit-3.1/src'
|
||||
make[1]: Nothing to be done for 'am--depfiles'.
|
||||
make[1]: Leaving directory '/home/nillerusr/projects/source-engine/thirdparty/libedit-3.1/src'
|
||||
config.status:1454: $? = 0
|
||||
config.status:1449: cd examples && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
|
||||
make[1]: Entering directory '/home/nillerusr/projects/source-engine/thirdparty/libedit-3.1/examples'
|
||||
make[1]: Nothing to be done for 'am--depfiles'.
|
||||
make[1]: Leaving directory '/home/nillerusr/projects/source-engine/thirdparty/libedit-3.1/examples'
|
||||
config.status:1454: $? = 0
|
||||
config.status:1372: executing libtool commands
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by libedit config.status 3.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status config.h
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1143: creating config.h
|
||||
config.status:1324: config.h is unchanged
|
||||
|
14
thirdparty/libedit-3.1/config.status
vendored
14
thirdparty/libedit-3.1/config.status
vendored
@ -733,7 +733,7 @@ if test -n "${ZSH_VERSION+set}"; then
|
||||
fi
|
||||
|
||||
|
||||
PACKAGE='libedit-20191231'
|
||||
PACKAGE='libedit-20201104'
|
||||
VERSION='3.1'
|
||||
RM='rm -f'
|
||||
ofile='libtool'
|
||||
@ -894,7 +894,7 @@ S["AUTOMAKE"]="${SHELL} /home/nillerusr/projects/source-engine/thirdparty/libedi
|
||||
S["AUTOCONF"]="${SHELL} /home/nillerusr/projects/source-engine/thirdparty/libedit-3.1/missing autoconf"
|
||||
S["ACLOCAL"]="${SHELL} /home/nillerusr/projects/source-engine/thirdparty/libedit-3.1/missing aclocal-1.16"
|
||||
S["VERSION"]="3.1"
|
||||
S["PACKAGE"]="libedit-20191231"
|
||||
S["PACKAGE"]="libedit-20201104"
|
||||
S["CYGPATH_W"]="echo"
|
||||
S["am__isrc"]=""
|
||||
S["INSTALL_DATA"]="${INSTALL} -m 644"
|
||||
@ -944,7 +944,7 @@ S["PACKAGE_URL"]=""
|
||||
S["PACKAGE_BUGREPORT"]=""
|
||||
S["PACKAGE_STRING"]="libedit 3.1"
|
||||
S["PACKAGE_VERSION"]="3.1"
|
||||
S["PACKAGE_TARNAME"]="libedit-20191231"
|
||||
S["PACKAGE_TARNAME"]="libedit-20201104"
|
||||
S["PACKAGE_NAME"]="libedit"
|
||||
S["PATH_SEPARATOR"]=":"
|
||||
S["SHELL"]="/bin/sh"
|
||||
@ -991,7 +991,7 @@ if test -n "$CONFIG_HEADERS"; then
|
||||
cat >"$ac_tmp/defines.awk" <<\_ACAWK ||
|
||||
BEGIN {
|
||||
D["PACKAGE_NAME"]=" \"libedit\""
|
||||
D["PACKAGE_TARNAME"]=" \"libedit-20191231\""
|
||||
D["PACKAGE_TARNAME"]=" \"libedit-20201104\""
|
||||
D["PACKAGE_VERSION"]=" \"3.1\""
|
||||
D["PACKAGE_STRING"]=" \"libedit 3.1\""
|
||||
D["PACKAGE_BUGREPORT"]=" \"\""
|
||||
@ -1011,7 +1011,7 @@ D["_ALL_SOURCE"]=" 1"
|
||||
D["_GNU_SOURCE"]=" 1"
|
||||
D["_POSIX_PTHREAD_SEMANTICS"]=" 1"
|
||||
D["_TANDEM_SOURCE"]=" 1"
|
||||
D["PACKAGE"]=" \"libedit-20191231\""
|
||||
D["PACKAGE"]=" \"libedit-20201104\""
|
||||
D["VERSION"]=" \"3.1\""
|
||||
D["HAVE_DLFCN_H"]=" 1"
|
||||
D["LT_OBJDIR"]=" \".libs/\""
|
||||
@ -1462,7 +1462,9 @@ $as_echo X/"$am_mf" |
|
||||
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
||||
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
||||
as_fn_error $? "Something went wrong bootstrapping makefile fragments
|
||||
for automatic dependency tracking. Try re-running configure with the
|
||||
for automatic dependency tracking. If GNU make was not used, consider
|
||||
re-running the configure script with MAKE=\"gmake\" (or whatever is
|
||||
necessary). You can also try re-running configure with the
|
||||
'--disable-dependency-tracking' option to at least be able to build
|
||||
the package (albeit without support for automatic dependency tracking).
|
||||
See \`config.log' for more details" "$LINENO" 5; }
|
||||
|
10
thirdparty/libedit-3.1/configure
vendored
10
thirdparty/libedit-3.1/configure
vendored
@ -586,7 +586,7 @@ MAKEFLAGS=
|
||||
|
||||
# Identity of this package.
|
||||
PACKAGE_NAME='libedit'
|
||||
PACKAGE_TARNAME='libedit-20191231'
|
||||
PACKAGE_TARNAME='libedit-20201104'
|
||||
PACKAGE_VERSION='3.1'
|
||||
PACKAGE_STRING='libedit 3.1'
|
||||
PACKAGE_BUGREPORT=''
|
||||
@ -1374,7 +1374,7 @@ Fine tuning of the installation directories:
|
||||
--localedir=DIR locale-dependent data [DATAROOTDIR/locale]
|
||||
--mandir=DIR man documentation [DATAROOTDIR/man]
|
||||
--docdir=DIR documentation root
|
||||
[DATAROOTDIR/doc/libedit-20191231]
|
||||
[DATAROOTDIR/doc/libedit-20201104]
|
||||
--htmldir=DIR html documentation [DOCDIR]
|
||||
--dvidir=DIR dvi documentation [DOCDIR]
|
||||
--pdfdir=DIR pdf documentation [DOCDIR]
|
||||
@ -4223,7 +4223,7 @@ fi
|
||||
|
||||
|
||||
# Define the identity of the package.
|
||||
PACKAGE='libedit-20191231'
|
||||
PACKAGE='libedit-20201104'
|
||||
VERSION='3.1'
|
||||
|
||||
|
||||
@ -15490,7 +15490,9 @@ $as_echo X/"$am_mf" |
|
||||
{ { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5
|
||||
$as_echo "$as_me: error: in \`$ac_pwd':" >&2;}
|
||||
as_fn_error $? "Something went wrong bootstrapping makefile fragments
|
||||
for automatic dependency tracking. Try re-running configure with the
|
||||
for automatic dependency tracking. If GNU make was not used, consider
|
||||
re-running the configure script with MAKE=\"gmake\" (or whatever is
|
||||
necessary). You can also try re-running configure with the
|
||||
'--disable-dependency-tracking' option to at least be able to build
|
||||
the package (albeit without support for automatic dependency tracking).
|
||||
See \`config.log' for more details" "$LINENO" 5; }
|
||||
|
20
thirdparty/libedit-3.1/doc/Makefile
vendored
20
thirdparty/libedit-3.1/doc/Makefile
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# doc/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -69,10 +69,10 @@ am__make_running_with_option = \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/libedit-20191231
|
||||
pkgincludedir = $(includedir)/libedit-20191231
|
||||
pkglibdir = $(libdir)/libedit-20191231
|
||||
pkglibexecdir = $(libexecdir)/libedit-20191231
|
||||
pkgdatadir = $(datadir)/libedit-20201104
|
||||
pkgincludedir = $(includedir)/libedit-20201104
|
||||
pkglibdir = $(libdir)/libedit-20201104
|
||||
pkglibexecdir = $(libexecdir)/libedit-20201104
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
@ -207,11 +207,11 @@ OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = libedit-20191231
|
||||
PACKAGE = libedit-20201104
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = libedit
|
||||
PACKAGE_STRING = libedit 3.1
|
||||
PACKAGE_TARNAME = libedit-20191231
|
||||
PACKAGE_TARNAME = libedit-20201104
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 3.1
|
||||
PATH_SEPARATOR = :
|
||||
@ -298,9 +298,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu doc/Makefile
|
||||
$(AUTOMAKE) --foreign doc/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
|
8
thirdparty/libedit-3.1/doc/Makefile.in
vendored
8
thirdparty/libedit-3.1/doc/Makefile.in
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -298,9 +298,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu doc/Makefile'; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu doc/Makefile
|
||||
$(AUTOMAKE) --foreign doc/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
|
20
thirdparty/libedit-3.1/examples/Makefile
vendored
20
thirdparty/libedit-3.1/examples/Makefile
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# examples/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -70,10 +70,10 @@ am__make_running_with_option = \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/libedit-20191231
|
||||
pkgincludedir = $(includedir)/libedit-20191231
|
||||
pkglibdir = $(libdir)/libedit-20191231
|
||||
pkglibexecdir = $(libexecdir)/libedit-20191231
|
||||
pkgdatadir = $(datadir)/libedit-20201104
|
||||
pkgincludedir = $(includedir)/libedit-20201104
|
||||
pkglibdir = $(libdir)/libedit-20201104
|
||||
pkglibexecdir = $(libexecdir)/libedit-20201104
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
@ -235,11 +235,11 @@ OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = libedit-20191231
|
||||
PACKAGE = libedit-20201104
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = libedit
|
||||
PACKAGE_STRING = libedit 3.1
|
||||
PACKAGE_TARNAME = libedit-20191231
|
||||
PACKAGE_TARNAME = libedit-20201104
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 3.1
|
||||
PATH_SEPARATOR = :
|
||||
@ -319,9 +319,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/Makefile'; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu examples/Makefile
|
||||
$(AUTOMAKE) --foreign examples/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
|
8
thirdparty/libedit-3.1/examples/Makefile.in
vendored
8
thirdparty/libedit-3.1/examples/Makefile.in
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -319,9 +319,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu examples/Makefile'; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign examples/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu examples/Makefile
|
||||
$(AUTOMAKE) --foreign examples/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
|
2
thirdparty/libedit-3.1/libtool
vendored
2
thirdparty/libedit-3.1/libtool
vendored
@ -1,5 +1,5 @@
|
||||
#! /bin/sh
|
||||
# Generated automatically by config.status (libedit-20191231) 3.1
|
||||
# Generated automatically by config.status (libedit-20201104) 3.1
|
||||
# Libtool was configured on host lostnote:
|
||||
# NOTE: Changes made to this file will be lost: look at ltmain.sh.
|
||||
|
||||
|
20
thirdparty/libedit-3.1/src/Makefile
vendored
20
thirdparty/libedit-3.1/src/Makefile
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# src/Makefile. Generated from Makefile.in by configure.
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -71,10 +71,10 @@ am__make_running_with_option = \
|
||||
test $$has_opt = yes
|
||||
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
|
||||
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
|
||||
pkgdatadir = $(datadir)/libedit-20191231
|
||||
pkgincludedir = $(includedir)/libedit-20191231
|
||||
pkglibdir = $(libdir)/libedit-20191231
|
||||
pkglibexecdir = $(libexecdir)/libedit-20191231
|
||||
pkgdatadir = $(datadir)/libedit-20201104
|
||||
pkgincludedir = $(includedir)/libedit-20201104
|
||||
pkglibdir = $(libdir)/libedit-20201104
|
||||
pkglibexecdir = $(libexecdir)/libedit-20201104
|
||||
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
|
||||
install_sh_DATA = $(install_sh) -c -m 644
|
||||
install_sh_PROGRAM = $(install_sh) -c
|
||||
@ -296,11 +296,11 @@ OBJDUMP = objdump
|
||||
OBJEXT = o
|
||||
OTOOL =
|
||||
OTOOL64 =
|
||||
PACKAGE = libedit-20191231
|
||||
PACKAGE = libedit-20201104
|
||||
PACKAGE_BUGREPORT =
|
||||
PACKAGE_NAME = libedit
|
||||
PACKAGE_STRING = libedit 3.1
|
||||
PACKAGE_TARNAME = libedit-20191231
|
||||
PACKAGE_TARNAME = libedit-20201104
|
||||
PACKAGE_URL =
|
||||
PACKAGE_VERSION = 3.1
|
||||
PATH_SEPARATOR = :
|
||||
@ -394,9 +394,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu src/Makefile
|
||||
$(AUTOMAKE) --foreign src/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
|
8
thirdparty/libedit-3.1/src/Makefile.in
vendored
8
thirdparty/libedit-3.1/src/Makefile.in
vendored
@ -1,7 +1,7 @@
|
||||
# Makefile.in generated by automake 1.16.1 from Makefile.am.
|
||||
# Makefile.in generated by automake 1.16.2 from Makefile.am.
|
||||
# @configure_input@
|
||||
|
||||
# Copyright (C) 1994-2018 Free Software Foundation, Inc.
|
||||
# Copyright (C) 1994-2020 Free Software Foundation, Inc.
|
||||
|
||||
# This Makefile.in is free software; the Free Software Foundation
|
||||
# gives unlimited permission to copy and/or distribute it,
|
||||
@ -394,9 +394,9 @@ $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
|
||||
exit 1;; \
|
||||
esac; \
|
||||
done; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \
|
||||
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \
|
||||
$(am__cd) $(top_srcdir) && \
|
||||
$(AUTOMAKE) --gnu src/Makefile
|
||||
$(AUTOMAKE) --foreign src/Makefile
|
||||
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
|
||||
@case '$?' in \
|
||||
*config.status*) \
|
||||
|
2
thirdparty/libpng/config.log
vendored
2
thirdparty/libpng/config.log
vendored
@ -459,7 +459,7 @@ configure:9811: gcc -o conftest -m32 -Wno-narrowing -m32 conftest.c >&5
|
||||
conftest.c:48:6: warning: conflicting types for built-in function 'pow'
|
||||
char pow ();
|
||||
^
|
||||
/usr/bin/ld: /tmp/cc7yQsRp.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccPOoIMo.o: in function `main':
|
||||
conftest.c:(.text+0x12): undefined reference to `pow'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:9811: $? = 1
|
||||
|
464
thirdparty/protobuf-2.6.1/autom4te.cache/requests
vendored
464
thirdparty/protobuf-2.6.1/autom4te.cache/requests
vendored
@ -46,190 +46,190 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'LT_SYS_MODULE_EXT' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_LTDL_SHLIBEXT' => 1,
|
||||
'AC_LIBLTDL_CONVENIENCE' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AC_LIBLTDL_INSTALLABLE' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'LT_FUNC_ARGZ' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'LTDL_CONVENIENCE' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'LT_FUNC_DLSYM_USCORE' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'ACX_USE_SYSTEM_EXTENSIONS' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'include' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'LT_SYS_MODULE_PATH' => 1,
|
||||
'AC_LIB_LTDL' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'LT_SYS_DLSEARCH_PATH' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'AC_LTDL_DLLIB' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'AC_CXX_STL_HASH' => 1,
|
||||
'm4_include' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'_LTDL_SETUP' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'_LT_LIBOBJ' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'AC_LTDL_SHLIBPATH' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'ACX_PTHREAD' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'LT_LIB_DLLOAD' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'AC_LTDL_DLSYM_USCORE' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'LTDL_INSTALLABLE' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'LT_SYS_SYMBOL_USCORE' => 1,
|
||||
'LT_WITH_LTDL' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'LTDL_INIT' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AC_LTDL_SYMBOL_USCORE' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AC_WITH_LTDL' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'ACX_CHECK_SUNCC' => 1,
|
||||
'AC_LTDL_SYSSEARCHPATH' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'include' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'LT_SYS_SYMBOL_USCORE' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'LTDL_CONVENIENCE' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'LT_SYS_DLSEARCH_PATH' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'LT_LIB_DLLOAD' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'AC_WITH_LTDL' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'LT_SYS_MODULE_EXT' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_LTDL_SYMBOL_USCORE' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'AC_LTDL_DLLIB' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'_LT_LIBOBJ' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'LTDL_INIT' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'LT_SYS_MODULE_PATH' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'ACX_PTHREAD' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'm4_include' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'AC_LTDL_SHLIBPATH' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'_LTDL_SETUP' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AC_LTDL_DLSYM_USCORE' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'ACX_CHECK_SUNCC' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AC_LIBLTDL_CONVENIENCE' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'LT_WITH_LTDL' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'AC_LIBLTDL_INSTALLABLE' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'AC_LTDL_SHLIBEXT' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'AC_LTDL_SYSSEARCHPATH' => 1,
|
||||
'LT_FUNC_DLSYM_USCORE' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'AC_CXX_STL_HASH' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'ACX_USE_SYSTEM_EXTENSIONS' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'LT_FUNC_ARGZ' => 1,
|
||||
'LTDL_INSTALLABLE' => 1,
|
||||
'AC_LIB_LTDL' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
@ -244,65 +244,65 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'm4_include' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'include' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'sinclude' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'include' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'm4_include' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'm4_pattern_allow' => 1
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'sinclude' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1
|
||||
}
|
||||
], 'Autom4te::Request' )
|
||||
);
|
||||
|
87
thirdparty/protobuf-2.6.1/config.log
vendored
87
thirdparty/protobuf-2.6.1/config.log
vendored
@ -4,7 +4,7 @@ running configure, to aid debugging if configure makes a mistake.
|
||||
It was created by Protocol Buffers configure 2.6.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
$ ./configure --build=i686-pc-linux-gnu CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32
|
||||
$ ./configure --build=i686-pc-linux-gnu CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32 build_alias=i686-pc-linux-gnu --no-create --no-recursion
|
||||
|
||||
## --------- ##
|
||||
## Platform. ##
|
||||
@ -131,6 +131,8 @@ configure:4053: $? = 0
|
||||
configure:4065: result: yes
|
||||
configure:4085: checking whether make supports the include directive
|
||||
configure:4100: make -f confmf.GNU && cat confinc.out
|
||||
make[1]: Entering directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1'
|
||||
make[1]: Leaving directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1'
|
||||
this is the am__doit target
|
||||
configure:4103: $? = 0
|
||||
configure:4122: result: yes (GNU style)
|
||||
@ -714,7 +716,7 @@ configure:12171: $? = 0
|
||||
configure:12173: result: ok (1.2.0.4 or later)
|
||||
configure:12177: checking for library containing zlibVersion
|
||||
configure:12208: g++ -o conftest -m32 -Wno-narrowing -fpermissive -m32 conftest.cpp >&5
|
||||
/usr/bin/ld: /tmp/ccOFmytO.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccUSFl0X.o: in function `main':
|
||||
conftest.cpp:(.text+0x12): undefined reference to `zlibVersion'
|
||||
collect2: error: ld returned 1 exit status
|
||||
configure:12208: $? = 1
|
||||
@ -835,7 +837,7 @@ configure: failed program was:
|
||||
configure:12518: result: no
|
||||
configure:12421: checking whether pthreads work without any flags
|
||||
configure:12509: gcc -o conftest -m32 -Wno-narrowing -m32 conftest.c -lz >&5
|
||||
/usr/bin/ld: /tmp/ccXK16Rc.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccqGKHpb.o: in function `main':
|
||||
conftest.c:(.text+0x1a): undefined reference to `pthread_join'
|
||||
/usr/bin/ld: conftest.c:(.text+0x71): undefined reference to `__pthread_register_cancel'
|
||||
/usr/bin/ld: conftest.c:(.text+0x7e): undefined reference to `pthread_create'
|
||||
@ -1083,7 +1085,7 @@ configure:12710: $? = 0
|
||||
configure:12717: result: yes
|
||||
configure:12805: checking whether what we have so far is sufficient with -nostdlib
|
||||
configure:12823: gcc -o conftest -nostdlib -shared -fPIC -Wl,-z,defs -m32 -Wno-narrowing -pthread -m32 conftest.c -lz -lc >&5
|
||||
/usr/bin/ld: /tmp/ccch5iEP.o: in function `main':
|
||||
/usr/bin/ld: /tmp/ccKiN42K.o: in function `main':
|
||||
conftest.c:(.text+0x26): undefined reference to `pthread_join'
|
||||
/usr/bin/ld: conftest.c:(.text+0x7d): undefined reference to `__pthread_register_cancel'
|
||||
/usr/bin/ld: conftest.c:(.text+0x8a): undefined reference to `pthread_create'
|
||||
@ -1350,35 +1352,6 @@ configure:13216: checking that generated files are newer than configure
|
||||
configure:13222: result: done
|
||||
configure:13261: creating ./config.status
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by Protocol Buffers config.status 2.6.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1192: creating Makefile
|
||||
config.status:1192: creating src/Makefile
|
||||
config.status:1192: creating protobuf.pc
|
||||
config.status:1192: creating protobuf-lite.pc
|
||||
config.status:1192: creating config.h
|
||||
config.status:1373: config.h is unchanged
|
||||
config.status:1421: executing depfiles commands
|
||||
config.status:1498: cd src && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make: Nothing to be done for 'am--depfiles'.
|
||||
config.status:1503: $? = 0
|
||||
config.status:1421: executing libtool commands
|
||||
configure:15740: === configuring in gtest (/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1/gtest)
|
||||
configure:15803: running /bin/sh ./configure --disable-option-checking '--prefix=/usr/local' '--build=i686-pc-linux-gnu' 'CFLAGS=-m32 -Wno-narrowing' 'CXXFLAGS=-m32 -Wno-narrowing -fpermissive' 'LDFLAGS=-m32' 'build_alias=i686-pc-linux-gnu' --cache-file=/dev/null --srcdir=.
|
||||
|
||||
## ---------------- ##
|
||||
## Cache variables. ##
|
||||
## ---------------- ##
|
||||
@ -1707,3 +1680,51 @@ target_vendor='pc'
|
||||
#define HASH_SET_CLASS unordered_set
|
||||
|
||||
configure: exit 0
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by Protocol Buffers config.status 2.6.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1192: creating Makefile
|
||||
config.status:1192: creating src/Makefile
|
||||
config.status:1192: creating protobuf.pc
|
||||
config.status:1192: creating protobuf-lite.pc
|
||||
config.status:1192: creating config.h
|
||||
config.status:1373: config.h is unchanged
|
||||
config.status:1421: executing depfiles commands
|
||||
config.status:1498: cd src && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.
|
||||
make[1]: Entering directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1/src'
|
||||
make[1]: Nothing to be done for 'am--depfiles'.
|
||||
make[1]: Leaving directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1/src'
|
||||
config.status:1503: $? = 0
|
||||
config.status:1421: executing libtool commands
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by Protocol Buffers config.status 2.6.1, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status config.h
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1192: creating config.h
|
||||
config.status:1373: config.h is unchanged
|
||||
|
@ -42,188 +42,188 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_LIBLTDL_INSTALLABLE' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'_LTDL_SETUP' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'AC_LTDL_SHLIBEXT' => 1,
|
||||
'LT_FUNC_DLSYM_USCORE' => 1,
|
||||
'LT_SYS_MODULE_PATH' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'AM_PYTHON_CHECK_VERSION' => 1,
|
||||
'AC_LIBLTDL_CONVENIENCE' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'LT_LIB_DLLOAD' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'AC_LTDL_SHLIBPATH' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'AM_PATH_PYTHON' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'LTDL_CONVENIENCE' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'LT_SYS_DLSEARCH_PATH' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'_LT_LIBOBJ' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'LT_WITH_LTDL' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'LT_FUNC_ARGZ' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'LT_SYS_SYMBOL_USCORE' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LTDL_DLSYM_USCORE' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'LT_SYS_MODULE_EXT' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'm4_include' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'LTDL_INIT' => 1,
|
||||
'AC_LIB_LTDL' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'LTDL_INSTALLABLE' => 1,
|
||||
'LT_OUTPUT' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'AC_LTDL_SYMBOL_USCORE' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'AC_LTDL_SYSSEARCHPATH' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'AC_LTDL_DLLIB' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'include' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AC_WITH_LTDL' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AM_SET_CURRENT_AUTOMAKE_VERSION' => 1,
|
||||
'LT_CMD_MAX_LEN' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'_LT_AC_TRY_DLOPEN_SELF' => 1,
|
||||
'AC_LTDL_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'_AM_MANGLE_OPTION' => 1,
|
||||
'AM_SANITY_CHECK' => 1,
|
||||
'LTSUGAR_VERSION' => 1,
|
||||
'AM_MISSING_HAS_RUN' => 1,
|
||||
'_LT_AC_FILE_LTDLL_C' => 1,
|
||||
'AC_LTDL_DLLIB' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_PIC' => 1,
|
||||
'_LT_AC_LANG_C_CONFIG' => 1,
|
||||
'AC_LIBTOOL_CONFIG' => 1,
|
||||
'AC_CONFIG_MACRO_DIR' => 1,
|
||||
'AC_PROG_EGREP' => 1,
|
||||
'AM_PROG_INSTALL_SH' => 1,
|
||||
'AC_LIBTOOL_SETUP' => 1,
|
||||
'_LT_AC_LANG_RC_CONFIG' => 1,
|
||||
'AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE' => 1,
|
||||
'AC_PROG_LD' => 1,
|
||||
'LT_WITH_LTDL' => 1,
|
||||
'AC_LTDL_SYMBOL_USCORE' => 1,
|
||||
'_LT_DLL_DEF_P' => 1,
|
||||
'AC_LTDL_SHLIBPATH' => 1,
|
||||
'AC_LIBTOOL_FC' => 1,
|
||||
'LT_PROG_RC' => 1,
|
||||
'AC_LTDL_SHLIBEXT' => 1,
|
||||
'include' => 1,
|
||||
'AM_PROG_INSTALL_STRIP' => 1,
|
||||
'_LT_AC_LANG_GCJ' => 1,
|
||||
'LT_PATH_NM' => 1,
|
||||
'AC_LIBTOOL_LANG_RC_CONFIG' => 1,
|
||||
'_LT_AC_LANG_GCJ_CONFIG' => 1,
|
||||
'_LT_AC_CHECK_DLFCN' => 1,
|
||||
'AM_MISSING_PROG' => 1,
|
||||
'AM_ENABLE_SHARED' => 1,
|
||||
'AC_LIBTOOL_SYS_OLD_ARCHIVE' => 1,
|
||||
'AC_PATH_MAGIC' => 1,
|
||||
'AC_DISABLE_SHARED' => 1,
|
||||
'AC_DISABLE_STATIC' => 1,
|
||||
'LT_PROG_GO' => 1,
|
||||
'LT_AC_PROG_EGREP' => 1,
|
||||
'_LT_AC_LANG_F77' => 1,
|
||||
'AC_LIBTOOL_PROG_CC_C_O' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AC_DEFUN_ONCE' => 1,
|
||||
'AC_LIBTOOL_LANG_GCJ_CONFIG' => 1,
|
||||
'_LT_AC_LANG_F77_CONFIG' => 1,
|
||||
'ACX_PTHREAD' => 1
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_SHLIBS' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'LTVERSION_VERSION' => 1,
|
||||
'AU_DEFUN' => 1,
|
||||
'AC_LIBTOOL_PROG_COMPILER_NO_RTTI' => 1,
|
||||
'_AM_SET_OPTION' => 1,
|
||||
'_LT_COMPILER_BOILERPLATE' => 1,
|
||||
'AM_PROG_NM' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'LTOPTIONS_VERSION' => 1,
|
||||
'_AM_PROG_TAR' => 1,
|
||||
'AC_LTDL_OBJDIR' => 1,
|
||||
'AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AC_DEFUN' => 1,
|
||||
'AC_LIBTOOL_F77' => 1,
|
||||
'_LT_PROG_FC' => 1,
|
||||
'_LT_AC_TAGVAR' => 1,
|
||||
'_LT_LINKER_BOILERPLATE' => 1,
|
||||
'AC_LIBTOOL_LINKER_OPTION' => 1,
|
||||
'AM_PYTHON_CHECK_VERSION' => 1,
|
||||
'AC_LIBTOOL_SYS_DYNAMIC_LINKER' => 1,
|
||||
'_LT_REQUIRED_DARWIN_CHECKS' => 1,
|
||||
'AC_PROG_LD_GNU' => 1,
|
||||
'LT_SYS_DLSEARCH_PATH' => 1,
|
||||
'LT_LANG' => 1,
|
||||
'AC_PROG_LD_RELOAD_FLAG' => 1,
|
||||
'AC_LIBTOOL_PICMODE' => 1,
|
||||
'_AM_DEPENDENCIES' => 1,
|
||||
'AM_RUN_LOG' => 1,
|
||||
'LT_AC_PROG_SED' => 1,
|
||||
'_LT_AC_PROG_CXXCPP' => 1,
|
||||
'AM_ENABLE_STATIC' => 1,
|
||||
'AC_LIBLTDL_INSTALLABLE' => 1,
|
||||
'LTDL_INIT' => 1,
|
||||
'm4_include' => 1,
|
||||
'_AC_PROG_LIBTOOL' => 1,
|
||||
'AC_PATH_TOOL_PREFIX' => 1,
|
||||
'AC_LIBTOOL_DLOPEN_SELF' => 1,
|
||||
'_LT_CC_BASENAME' => 1,
|
||||
'LT_SYS_MODULE_PATH' => 1,
|
||||
'AC_CONFIG_MACRO_DIR_TRACE' => 1,
|
||||
'AC_LIBTOOL_SYS_LIB_STRIP' => 1,
|
||||
'LTOBSOLETE_VERSION' => 1,
|
||||
'LTDL_CONVENIENCE' => 1,
|
||||
'_AM_SET_OPTIONS' => 1,
|
||||
'AC_CHECK_LIBM' => 1,
|
||||
'AC_WITH_LTDL' => 1,
|
||||
'LT_AC_PROG_RC' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AC_ENABLE_STATIC' => 1,
|
||||
'AM_AUX_DIR_EXPAND' => 1,
|
||||
'_AM_OUTPUT_DEPENDENCY_COMMANDS' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'LT_AC_PROG_GCJ' => 1,
|
||||
'AC_LIBTOOL_LANG_CXX_CONFIG' => 1,
|
||||
'LTDL_INSTALLABLE' => 1,
|
||||
'AM_SET_DEPDIR' => 1,
|
||||
'LT_SYS_DLOPEN_DEPLIBS' => 1,
|
||||
'_LT_AC_SHELL_INIT' => 1,
|
||||
'_LT_AC_LANG_CXX' => 1,
|
||||
'LT_PATH_LD' => 1,
|
||||
'AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH' => 1,
|
||||
'_LT_AC_LANG_CXX_CONFIG' => 1,
|
||||
'_LT_PROG_CXX' => 1,
|
||||
'AC_LIBTOOL_SYS_MAX_CMD_LEN' => 1,
|
||||
'_LT_PREPARE_SED_QUOTE_VARS' => 1,
|
||||
'AC_LIB_LTDL' => 1,
|
||||
'AM_PATH_PYTHON' => 1,
|
||||
'LT_SYS_MODULE_EXT' => 1,
|
||||
'LT_SYS_SYMBOL_USCORE' => 1,
|
||||
'AC_LIBTOOL_DLOPEN' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'_AM_IF_OPTION' => 1,
|
||||
'AM_SET_LEADING_DOT' => 1,
|
||||
'AC_LIBTOOL_POSTDEP_PREDEP' => 1,
|
||||
'AC_PROG_NM' => 1,
|
||||
'AM_MAKE_INCLUDE' => 1,
|
||||
'LT_LIB_DLLOAD' => 1,
|
||||
'_LT_LINKER_OPTION' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AC_LIBTOOL_LANG_F77_CONFIG' => 1,
|
||||
'_LT_PATH_TOOL_PREFIX' => 1,
|
||||
'_LT_LIBOBJ' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AC_LTDL_ENABLE_INSTALL' => 1,
|
||||
'AM_PROG_LD' => 1,
|
||||
'_LTDL_SETUP' => 1,
|
||||
'AC_DEPLIBS_CHECK_METHOD' => 1,
|
||||
'AC_ENABLE_SHARED' => 1,
|
||||
'_AM_AUTOCONF_VERSION' => 1,
|
||||
'AM_DISABLE_SHARED' => 1,
|
||||
'AM_DISABLE_STATIC' => 1,
|
||||
'_AC_AM_CONFIG_HEADER_HOOK' => 1,
|
||||
'AC_LIBTOOL_WIN32_DLL' => 1,
|
||||
'AC_LTDL_DLSYM_USCORE' => 1,
|
||||
'LT_SYS_DLOPEN_SELF' => 1,
|
||||
'AC_LIBTOOL_SYS_HARD_LINK_LOCKS' => 1,
|
||||
'AC_LIBTOOL_OBJDIR' => 1,
|
||||
'ACX_PTHREAD' => 1,
|
||||
'AC_LIBTOOL_COMPILER_OPTION' => 1,
|
||||
'AC_LIBTOOL_GCJ' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_SUBST_NOTMAKE' => 1,
|
||||
'AC_LTDL_SYSSEARCHPATH' => 1,
|
||||
'_LT_AC_LOCK' => 1,
|
||||
'_LT_PROG_LTMAIN' => 1,
|
||||
'_AM_PROG_CC_C_O' => 1,
|
||||
'LT_LIB_M' => 1,
|
||||
'AC_LIBLTDL_CONVENIENCE' => 1,
|
||||
'AC_LIBTOOL_CXX' => 1,
|
||||
'_LT_PROG_F77' => 1,
|
||||
'_LT_COMPILER_OPTION' => 1,
|
||||
'AM_DEP_TRACK' => 1,
|
||||
'LT_FUNC_DLSYM_USCORE' => 1,
|
||||
'_LT_PROG_ECHO_BACKSLASH' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'AC_LTDL_PREOPEN' => 1,
|
||||
'_LT_WITH_SYSROOT' => 1,
|
||||
'_LT_AC_SYS_LIBPATH_AIX' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_LIBTOOL_RC' => 1,
|
||||
'AC_DISABLE_FAST_INSTALL' => 1,
|
||||
'_AM_CONFIG_MACRO_DIRS' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'LT_PROG_GCJ' => 1,
|
||||
'_LT_AC_SYS_COMPILER' => 1,
|
||||
'AC_LIBTOOL_LANG_C_CONFIG' => 1,
|
||||
'LT_FUNC_ARGZ' => 1,
|
||||
'AC_ENABLE_FAST_INSTALL' => 1,
|
||||
'_LT_AC_PROG_ECHO_BACKSLASH' => 1
|
||||
}
|
||||
], 'Autom4te::Request' ),
|
||||
bless( [
|
||||
@ -238,66 +238,66 @@
|
||||
'configure.ac'
|
||||
],
|
||||
{
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'include' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'sinclude' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AC_FC_PP_DEFINE' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'AM_MAKEFILE_INCLUDE' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'include' => 1,
|
||||
'_AM_COND_IF' => 1,
|
||||
'AC_CANONICAL_BUILD' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AC_FC_PP_SRCEXT' => 1,
|
||||
'm4_include' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'AM_PROG_MOC' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'AM_PROG_LIBTOOL' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AC_REQUIRE_AUX_FILE' => 1,
|
||||
'AM_PROG_F77_C_O' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'm4_sinclude' => 1,
|
||||
'AC_SUBST_TRACE' => 1,
|
||||
'AM_PATH_GUILE' => 1,
|
||||
'sinclude' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_INIT' => 1,
|
||||
'AM_SILENT_RULES' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'AC_CONFIG_AUX_DIR' => 1,
|
||||
'_AM_COND_ELSE' => 1,
|
||||
'AH_OUTPUT' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'_AM_COND_ENDIF' => 1,
|
||||
'AC_LIBSOURCE' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AM_MAINTAINER_MODE' => 1,
|
||||
'AC_CANONICAL_SYSTEM' => 1,
|
||||
'm4_pattern_allow' => 1,
|
||||
'AM_POT_TOOLS' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1,
|
||||
'AC_FC_SRCEXT' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AM_NLS' => 1,
|
||||
'AM_PROG_MKDIR_P' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_CONFIG_HEADERS' => 1,
|
||||
'LT_CONFIG_LTDL_DIR' => 1,
|
||||
'm4_include' => 1,
|
||||
'AM_PROG_AR' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AC_CANONICAL_HOST' => 1,
|
||||
'_AM_MAKEFILE_INCLUDE' => 1,
|
||||
'LT_SUPPORTED_TAG' => 1,
|
||||
'AM_ENABLE_MULTILIB' => 1,
|
||||
'AC_CONFIG_LIBOBJ_DIR' => 1,
|
||||
'_LT_AC_TAGCONFIG' => 1,
|
||||
'AC_CONFIG_LINKS' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AM_AUTOMAKE_VERSION' => 1,
|
||||
'AC_CONFIG_SUBDIRS' => 1,
|
||||
'AM_INIT_AUTOMAKE' => 1,
|
||||
'_AM_SUBST_NOTMAKE' => 1,
|
||||
'm4_pattern_forbid' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AC_CANONICAL_TARGET' => 1,
|
||||
'AM_GNU_GETTEXT' => 1,
|
||||
'AM_XGETTEXT_OPTION' => 1,
|
||||
'AM_PROG_FC_C_O' => 1,
|
||||
'AC_SUBST' => 1,
|
||||
'LT_INIT' => 1,
|
||||
'AM_CONDITIONAL' => 1,
|
||||
'AM_PROG_CXX_C_O' => 1,
|
||||
'AM_PROG_CC_C_O' => 1,
|
||||
'AC_CONFIG_FILES' => 1,
|
||||
'AM_EXTRA_RECURSIVE_TARGETS' => 1,
|
||||
'_m4_warn' => 1,
|
||||
'AC_PROG_LIBTOOL' => 1,
|
||||
'AC_FC_FREEFORM' => 1,
|
||||
'AC_DEFINE_TRACE_LITERAL' => 1,
|
||||
'AM_GNU_GETTEXT_INTL_SUBDIR' => 1
|
||||
'm4_sinclude' => 1
|
||||
}
|
||||
], 'Autom4te::Request' )
|
||||
);
|
||||
|
58
thirdparty/protobuf-2.6.1/gtest/config.log
vendored
58
thirdparty/protobuf-2.6.1/gtest/config.log
vendored
@ -4,7 +4,7 @@ running configure, to aid debugging if configure makes a mistake.
|
||||
It was created by Google C++ Testing Framework configure 1.6.0, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
$ ./configure --disable-option-checking --prefix=/usr/local --build=i686-pc-linux-gnu CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32 build_alias=i686-pc-linux-gnu --cache-file=/dev/null --srcdir=.
|
||||
$ ./configure --disable-option-checking --prefix=/usr/local --build=i686-pc-linux-gnu CFLAGS=-m32 -Wno-narrowing CXXFLAGS=-m32 -Wno-narrowing -fpermissive LDFLAGS=-m32 build_alias=i686-pc-linux-gnu --cache-file=/dev/null --srcdir=. --no-create --no-recursion
|
||||
|
||||
## --------- ##
|
||||
## Platform. ##
|
||||
@ -123,6 +123,8 @@ configure:3679: $? = 0
|
||||
configure:3691: result: yes
|
||||
configure:3711: checking whether make supports the include directive
|
||||
configure:3726: make -f confmf.GNU && cat confinc.out
|
||||
make[3]: Entering directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1/gtest'
|
||||
make[3]: Leaving directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1/gtest'
|
||||
this is the am__doit target
|
||||
configure:3729: $? = 0
|
||||
configure:3748: result: yes (GNU style)
|
||||
@ -524,7 +526,7 @@ configure: failed program was:
|
||||
configure:11586: result: no
|
||||
configure:11489: checking whether pthreads work without any flags
|
||||
configure:11577: gcc -o conftest -m32 -Wno-narrowing -m32 conftest.c >&5
|
||||
/usr/bin/ld: /tmp/cczm3gkH.o: in function `main':
|
||||
/usr/bin/ld: /tmp/cciWJcG2.o: in function `main':
|
||||
conftest.c:(.text+0x1a): undefined reference to `pthread_join'
|
||||
/usr/bin/ld: conftest.c:(.text+0x71): undefined reference to `__pthread_register_cancel'
|
||||
/usr/bin/ld: conftest.c:(.text+0x7e): undefined reference to `pthread_create'
|
||||
@ -702,31 +704,6 @@ configure:12026: checking that generated files are newer than configure
|
||||
configure:12032: result: done
|
||||
configure:12067: creating ./config.status
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by Google C++ Testing Framework config.status 1.6.0, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1153: creating Makefile
|
||||
config.status:1153: creating scripts/gtest-config
|
||||
config.status:1153: creating build-aux/config.h
|
||||
config.status:1334: build-aux/config.h is unchanged
|
||||
config.status:1382: executing depfiles commands
|
||||
config.status:1460: cd . && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make: Nothing to be done for 'am--depfiles'.
|
||||
config.status:1465: $? = 0
|
||||
config.status:1382: executing libtool commands
|
||||
|
||||
## ---------------- ##
|
||||
## Cache variables. ##
|
||||
## ---------------- ##
|
||||
@ -1001,3 +978,30 @@ target_alias=''
|
||||
#define HAVE_PTHREAD 1
|
||||
|
||||
configure: exit 0
|
||||
|
||||
## ---------------------- ##
|
||||
## Running config.status. ##
|
||||
## ---------------------- ##
|
||||
|
||||
This file was extended by Google C++ Testing Framework config.status 1.6.0, which was
|
||||
generated by GNU Autoconf 2.69. Invocation command line was
|
||||
|
||||
CONFIG_FILES =
|
||||
CONFIG_HEADERS =
|
||||
CONFIG_LINKS =
|
||||
CONFIG_COMMANDS =
|
||||
$ ./config.status
|
||||
|
||||
on lostnote
|
||||
|
||||
config.status:1153: creating Makefile
|
||||
config.status:1153: creating scripts/gtest-config
|
||||
config.status:1153: creating build-aux/config.h
|
||||
config.status:1334: build-aux/config.h is unchanged
|
||||
config.status:1382: executing depfiles commands
|
||||
config.status:1460: cd . && sed -e '/# am--include-marker/d' Makefile | make -f - am--depfiles
|
||||
make[3]: Entering directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1/gtest'
|
||||
make[3]: Nothing to be done for 'am--depfiles'.
|
||||
make[3]: Leaving directory '/home/nillerusr/projects/source-engine/thirdparty/protobuf-2.6.1/gtest'
|
||||
config.status:1465: $? = 0
|
||||
config.status:1382: executing libtool commands
|
||||
|
693
thirdparty/telemetry/include/radtypes.h
vendored
693
thirdparty/telemetry/include/radtypes.h
vendored
@ -1,693 +0,0 @@
|
||||
/// ========================================================================
|
||||
// (C) Copyright 1994- 2014 RAD Game Tools, Inc. Global types header file
|
||||
// ========================================================================
|
||||
|
||||
#if !defined(__RADTYPESH__) && !defined(__RADRR_COREH__)
|
||||
#define __RADTYPESH__
|
||||
#define __RADRR_COREH__ // block old rr_core
|
||||
|
||||
#define RADCOPYRIGHT "Copyright (C) 1994-2014, RAD Game Tools, Inc."
|
||||
|
||||
#if !defined(__RADRES__) // don't include anything for resource compiles
|
||||
|
||||
// __RAD32__ means at least 32 bit code (always defined)
|
||||
// __RAD64__ means 64 bit code (64-bit OSes only)
|
||||
|
||||
// __RADNT__ means Win32 and Win64 desktop
|
||||
// __RADWINRT__ means Windows Store/Phone App (x86, x64, arm)
|
||||
// __RADWIN__ means win32, win64, windows store/phone, xenon, durango
|
||||
// __RADWINRTAPI__ means Windows RT API (Win Store, Win Phone, Durango)
|
||||
// __RADMAC__ means MacOS (32 or 64-bit)
|
||||
// __RADXENON__ means the Xbox360 console
|
||||
// __RADXBOXONE__ means Xbox One
|
||||
// __RADWIIU__ means the Nintendo Wii U
|
||||
// __RAD3DS__ means the Nintendo 3DS
|
||||
// __RADPS3__ means the Sony PlayStation 3
|
||||
// __RADPS4__ means the Sony PlayStation 4
|
||||
// __RADANDROID__ means Android NDK
|
||||
// __RADNACL__ means Native Client SDK
|
||||
// __RADLINUX__ means Linux (32 or 64-bit)
|
||||
// __RADPSP2__ means PS Vita
|
||||
// __RADQNX__ means QNX
|
||||
// __RADIPHONE__ means iphone
|
||||
|
||||
// __RADARM__ means arm
|
||||
// __RADPPC__ means powerpc
|
||||
// __RADX86__ means x86 or x64
|
||||
// __RADX64__ means x64
|
||||
// __RADX64__ means x64
|
||||
|
||||
// __RADNOVARARGMACROS__ means #defines can't use ...
|
||||
|
||||
// RADDEFSTART is "extern "C" {" on C++, nothing on C
|
||||
// RADDEFEND is "}" on C++, nothing on C
|
||||
|
||||
// RADEXPFUNC and RADEXPLINK are used on both the declaration
|
||||
// and definition of exported functions.
|
||||
// RADEXPFUNC int RADEXPLINK exported_func()
|
||||
|
||||
// RADDEFFUNC and RADLINK are used on both the declaration
|
||||
// and definition of public functions (but not exported).
|
||||
// RADDEFFUNC int RADLINK public_c_func()
|
||||
|
||||
// RADRESTRICT is for non-aliasing pointers/
|
||||
|
||||
// RADSTRUCT is defined as "struct" on msvc, and
|
||||
// "struct __attribute__((__packed__))" on gcc/clang
|
||||
// Used to sort of address generic structure packing
|
||||
// (we still require #pragma packs to fix the
|
||||
// packing on windows, though)
|
||||
|
||||
|
||||
// ========================================================
|
||||
// First off, we detect your platform
|
||||
|
||||
#if defined(ANDROID)
|
||||
#define __RADANDROID__ 1
|
||||
#define __RADDETECTED__ __RADANDROID__
|
||||
#endif
|
||||
|
||||
#if defined(__QNX__)
|
||||
#define __RADQNX__ 2
|
||||
#define __RADDETECTED__ __RADQNX__
|
||||
#endif
|
||||
|
||||
#if defined(__linux__) && !defined(ANDROID)
|
||||
#define __RADLINUX__ 3
|
||||
#define __RADDETECTED__ __RADLINUX__
|
||||
#endif
|
||||
|
||||
#if defined(__native_client__)
|
||||
#define __RADNACL__ 4
|
||||
#define __RADDETECTED__ __RADNACL__
|
||||
#endif
|
||||
|
||||
#if defined(_DURANGO) || defined(_SEKRIT) || defined(_SEKRIT1) || defined(_XBOX_ONE)
|
||||
#define __RADXBOXONE__ 5
|
||||
#define __RADDETECTED__ __RADXBOXONE__
|
||||
#endif
|
||||
|
||||
#if defined(__ORBIS__)
|
||||
#define __RADPS4__ 6
|
||||
#define __RADDETECTED__ __RADPS4__
|
||||
#endif
|
||||
|
||||
#if defined(CAFE)
|
||||
#define __RADWIIU__ 7
|
||||
#define __RADDETECTED__ __RADWIIU__
|
||||
#endif
|
||||
|
||||
#if defined(NN_PLATFORM_CTR)
|
||||
#define __RAD3DS__ 8
|
||||
#define __RADDETECTED__ __RAD3DS__
|
||||
#endif
|
||||
|
||||
#if defined(__psp2__)
|
||||
#define __RADPSP2__ 9
|
||||
#define __RADDETECTED__ __RADPSP2__
|
||||
#endif
|
||||
|
||||
#if defined(__CELLOS_LV2__)
|
||||
#ifdef __SPU__
|
||||
#define __RADSPU__ 10
|
||||
#define __RADDETECTED__ __RADSPU__
|
||||
#else
|
||||
#define __RADPS3__ 11
|
||||
#define __RADDETECTED__ __RADPS3__
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(_XENON) || ( defined(_XBOX_VER) && (_XBOX_VER == 200) )
|
||||
#define __RADXENON__ 12
|
||||
#define __RADDETECTED__ __RADXENON__
|
||||
#endif
|
||||
|
||||
#if !defined(__RADXENON__) && !defined(__RADXBOXONE__) &&( defined(_Windows) || defined(WIN32) || defined(__WINDOWS__) || defined(_WIN32) || defined(_WIN64) || defined(WINAPI_FAMILY) )
|
||||
|
||||
#ifdef WINAPI_FAMILY
|
||||
// If this is #defined, we might be in a Windows Store App. But
|
||||
// VC++ by default #defines this to a symbolic name, not an integer
|
||||
// value, and those names are defined in "winapifamily.h". So if
|
||||
// WINAPI_FAMILY is #defined, #include the header so we can parse it.
|
||||
#include <winapifamily.h>
|
||||
#define RAD_WINAPI_IS_APP (!WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP))
|
||||
#if RAD_WINAPI_IS_APP
|
||||
#define __RADWINRTAPI__
|
||||
#define __RADWINRT__ 13
|
||||
#define __RADDETECTED__ __RADWINRT__
|
||||
#endif
|
||||
#else
|
||||
#define RAD_WINAPI_IS_APP 0
|
||||
#endif
|
||||
|
||||
#ifndef __RADWINRT__
|
||||
// if we aren't WinRT, then we are plain old NT
|
||||
#define __RADNT__ 14
|
||||
#define __RADDETECTED__ __RADNT__
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__APPLE__)
|
||||
#include "TargetConditionals.h"
|
||||
#if defined(TARGET_IPHONE_SIMULATOR) && TARGET_IPHONE_SIMULATOR
|
||||
#define __RADIPHONE__ 15
|
||||
#define __RADIPHONESIM__ 16
|
||||
#define __RADDETECTED__ __RADIPHONESIM__
|
||||
#elif defined(TARGET_OS_IPHONE) && TARGET_OS_IPHONE
|
||||
#define __RADIPHONE__ 15
|
||||
#define __RADDETECTED__ __RADIPHONE__
|
||||
#else
|
||||
#define __RADMAC__ 17
|
||||
#define __RADDETECTED__ __RADMAC__
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if !defined(__RADDETECTED__)
|
||||
#error "radtypes.h did not detect your platform."
|
||||
#endif
|
||||
|
||||
// ========================================================
|
||||
// Now detect some architexture stuff
|
||||
|
||||
#define __RAD32__ // we have no non-at-least-32-bit cpus any more
|
||||
|
||||
#if defined(__arm__) || defined( _M_ARM )
|
||||
#define __RADARM__ 1
|
||||
#define __RADDETECTEDPROC__ __RADARM__
|
||||
#define __RADLITTLEENDIAN__
|
||||
#endif
|
||||
#if defined(__i386) || defined( __i386__ ) || defined( _M_IX86 ) || defined( _X86_ )
|
||||
#define __RADX86__ 2
|
||||
#if !defined __RADIPHONESIM__
|
||||
// only use mmx on PC, Win, Linux - not iphone sim!
|
||||
#define __RADMMX__
|
||||
#endif
|
||||
#define __RADDETECTEDPROC__ __RADX86__
|
||||
#define __RADLITTLEENDIAN__
|
||||
#endif
|
||||
#if defined(_x86_64) || defined( __x86_64__ ) || defined( _M_X64 ) || defined( _M_AMD64 )
|
||||
#define __RADX86__ 2
|
||||
#define __RADX64__ 3
|
||||
#define __RADMMX__
|
||||
#define __RADDETECTEDPROC__ __RADX64__
|
||||
#define __RADLITTLEENDIAN__
|
||||
#endif
|
||||
#if defined(__powerpc) || defined( _M_PPC ) || defined( CAFE ) || defined( _XENON ) || (defined( __CELLOS_LV2__ ) && !defined( __SPU__ ))
|
||||
#define __RADPPC__ 4
|
||||
#if !defined( CAFE )
|
||||
#define __RADALTIVEC__
|
||||
#endif
|
||||
#define __RADDETECTEDPROC__ __RADPPC__
|
||||
#define __RADBIGENDIAN__
|
||||
#endif
|
||||
#if defined( __CELLOS_LV2__ ) && defined( __SPU__ )
|
||||
#define __RADCELLSPU__ 5
|
||||
#define __RADDETECTEDPROC__ __RADCELLSPU__
|
||||
#define __RADBIGENDIAN__
|
||||
#endif
|
||||
|
||||
#if !defined(__RADDETECTEDPROC__)
|
||||
#error "radtypes.h did not detect your processor type."
|
||||
#endif
|
||||
|
||||
#if defined(__ppc64__) || defined(__aarch64__) || defined(_M_X64) || defined(__x86_64__) || defined(__x86_64)
|
||||
#define __RAD64__
|
||||
#define __RAD64REGS__ // need to set this for platforms that aren't 64-bit, but have 64-bit regs (xenon, ps3)
|
||||
#endif
|
||||
|
||||
|
||||
// ========================================================
|
||||
// C++ name demangaling nonsense
|
||||
|
||||
#ifdef __cplusplus
|
||||
#define RADDEFFUNC extern "C"
|
||||
#define RADDEFSTART extern "C" {
|
||||
#define RADDEFEND }
|
||||
#define RADDEFAULT( val ) =val
|
||||
#else
|
||||
#define RADDEFFUNC
|
||||
#define RADDEFSTART
|
||||
#define RADDEFEND
|
||||
#define RADDEFAULT( val )
|
||||
#endif
|
||||
|
||||
// ========================================================
|
||||
// handle exported function declarations:
|
||||
// in anything with __RADNOEXPORTS__, RADEXPFUNC == nothing (turn off exports with this flag)
|
||||
// in DLL, RADEXPFUNC == DLL export
|
||||
// in EXE, RADEXPFUNC == DLL import
|
||||
// in EXE with RADNOEXEEXPORTS, RADEXPFUNC == nothing (turn off imports in EXE with this flag)
|
||||
// in static lib, RADEXPFUNC == nothing
|
||||
#if ( defined(__RADINSTATICLIB__) || defined(__RADNOEXPORTS__ ) || ( defined(__RADNOEXEEXPORTS__) && ( !defined(__RADINDLL__) ) && ( !defined(__RADINSTATICLIB__) ) ) )
|
||||
// if we are in a static lib, or exports are off, or if we are in an EXE we asked for no exe exports (or imports)
|
||||
// then EXPFUNC is just a normal function
|
||||
#define RADEXPFUNC RADDEFFUNC
|
||||
#else
|
||||
// otherwise, we use imprt or export base on the build flag __RADINDLL__
|
||||
#if defined(__RADINDLL__)
|
||||
#define RADEXPFUNC RADDEFFUNC RADDLLEXPORTDLL
|
||||
#else
|
||||
#define RADEXPFUNC RADDEFFUNC RADDLLIMPORTDLL
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__RADANDROID__)
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADQNX__)
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK RADLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADLINUX__)
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#if defined(__RADX86__) && !defined(__RADX64__)
|
||||
#define RADLINK __attribute__((cdecl))
|
||||
#define RADEXPLINK __attribute__((cdecl))
|
||||
#else
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#endif
|
||||
// for linux, we assume you are building with hidden visibility,
|
||||
// so for RADEXPFUNC, we turn the vis back on...
|
||||
#define RADDLLEXPORTDLL __attribute__((visibility("default")))
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADNACL__)
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADXBOXONE__)
|
||||
#define __RADDURANGO__
|
||||
#define __RADWIN__
|
||||
#define __RADSEKRIT__
|
||||
|
||||
#define __RADWIN__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct
|
||||
#define __RADWINRTAPI__
|
||||
|
||||
#define RADLINK __stdcall
|
||||
#define RADEXPLINK __stdcall
|
||||
#define RADDLLEXPORTDLL // we don't use dlls on xbox
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADPS4__)
|
||||
#define __RADSEKRIT2__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADNT__)
|
||||
#define __RADWIN__
|
||||
#if _MSC_VER >= 1400
|
||||
#define RADRESTRICT __restrict
|
||||
#else
|
||||
// vc6 and older
|
||||
#define RADRESTRICT
|
||||
#define __RADNOVARARGMACROS__
|
||||
#endif
|
||||
#define RADSTRUCT struct
|
||||
|
||||
#define RADLINK __stdcall
|
||||
#define RADEXPLINK __stdcall
|
||||
|
||||
#define RADDLLEXPORTDLL __declspec(dllexport)
|
||||
#ifdef __RADX32__
|
||||
// on weird NT DLLs built to run on Linux and Mac, no imports
|
||||
#define RADDLLIMPORTDLL
|
||||
#else
|
||||
// normal win32 dll import
|
||||
#define RADDLLIMPORTDLL __declspec(dllimport)
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__RADWINRT__)
|
||||
#define __RADWIN__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct
|
||||
|
||||
#define RADLINK __stdcall
|
||||
#define RADEXPLINK __stdcall
|
||||
#define RADDLLEXPORTDLL __declspec(dllexport)
|
||||
#define RADDLLIMPORTDLL __declspec(dllimport)
|
||||
#endif
|
||||
|
||||
#if defined(__RADWIIU__)
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RAD3DS__)
|
||||
#define RADRESTRICT
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADPSP2__)
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADPS3__)
|
||||
#define __RAD64REGS__
|
||||
#define __RADCELL__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADSPU__)
|
||||
#define __RADCELL__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADIPHONE__)
|
||||
#define __RADMACAPI__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
#define RADDLLEXPORTDLL
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#if defined(__RADMAC__)
|
||||
#define __RADMACH__
|
||||
#define __RADMACAPI__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct __attribute__((__packed__))
|
||||
|
||||
#define RADLINK
|
||||
#define RADEXPLINK
|
||||
// for mac, we assume you are building with hidden visibility,
|
||||
// so for RADEXPFUNC, we turn the vis back on...
|
||||
#define RADDLLEXPORTDLL __attribute__((visibility("default")))
|
||||
#define RADDLLIMPORTDLL
|
||||
|
||||
#ifdef TARGET_API_MAC_CARBON
|
||||
#if TARGET_API_MAC_CARBON
|
||||
#ifndef __RADCARBON__
|
||||
#define __RADCARBON__
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__RADXENON__)
|
||||
#define __RAD64REGS__
|
||||
#define __RADWIN__
|
||||
#define RADRESTRICT __restrict
|
||||
#define RADSTRUCT struct
|
||||
|
||||
#define RADLINK __stdcall
|
||||
#define RADEXPLINK __stdcall
|
||||
#define RADDLLEXPORTDLL // we don't use dlls on xbox
|
||||
#define RADDLLIMPORTDLL
|
||||
#endif
|
||||
|
||||
#ifndef RADLINK
|
||||
#error RADLINK was not defined.
|
||||
#endif
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define RADINLINE __inline
|
||||
#else
|
||||
#define RADINLINE inline
|
||||
#endif
|
||||
|
||||
//===========================================================================
|
||||
// RR_STRING_JOIN joins strings in the preprocessor and works with LINESTRING
|
||||
#define RR_STRING_JOIN(arg1, arg2) RR_STRING_JOIN_DELAY(arg1, arg2)
|
||||
#define RR_STRING_JOIN_DELAY(arg1, arg2) RR_STRING_JOIN_IMMEDIATE(arg1, arg2)
|
||||
#define RR_STRING_JOIN_IMMEDIATE(arg1, arg2) arg1 ## arg2
|
||||
|
||||
//===========================================================================
|
||||
// RR_NUMBERNAME is a macro to make a name unique, so that you can use it to declare
|
||||
// variable names and they won't conflict with each other
|
||||
// using __LINE__ is broken in MSVC with /ZI , but __COUNTER__ is an MSVC extension that works
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#define RR_NUMBERNAME(name) RR_STRING_JOIN(name,__COUNTER__)
|
||||
#else
|
||||
#define RR_NUMBERNAME(name) RR_STRING_JOIN(name,__LINE__)
|
||||
#endif
|
||||
|
||||
//===================================================================
|
||||
// simple compiler assert
|
||||
// this happens at declaration time, so if it's inside a function in a C file, drop {} around it
|
||||
#ifndef RR_COMPILER_ASSERT
|
||||
#define RR_COMPILER_ASSERT(exp) typedef char RR_NUMBERNAME(_dummy_array) [ (exp) ? 1 : -1 ]
|
||||
#endif
|
||||
|
||||
|
||||
//===========================================
|
||||
// first, we set defines for each of the types
|
||||
|
||||
#define RAD_S8 signed char
|
||||
#define RAD_U8 unsigned char
|
||||
#define RAD_U16 unsigned short
|
||||
#define RAD_S16 signed short
|
||||
|
||||
#if defined(__RAD64__)
|
||||
#define RAD_U32 unsigned int
|
||||
#define RAD_S32 signed int
|
||||
|
||||
// pointers are 64 bits.
|
||||
#if (_MSC_VER >= 1300 && defined(_Wp64) && _Wp64 )
|
||||
#define RAD_SINTa __w64 signed __int64
|
||||
#define RAD_UINTa __w64 unsigned __int64
|
||||
#else
|
||||
// non-vc.net compiler or /Wp64 turned off
|
||||
#define RAD_UINTa unsigned long long
|
||||
#define RAD_SINTa signed long long
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if defined(__RAD32__) && !defined(__RAD64__)
|
||||
#define RAD_U32 unsigned int
|
||||
#define RAD_S32 signed int
|
||||
|
||||
#if ( ( defined(_MSC_VER) && (_MSC_VER >= 1300 ) ) && ( defined(_Wp64) && ( _Wp64 ) ) )
|
||||
#define RAD_SINTa __w64 signed long
|
||||
#define RAD_UINTa __w64 unsigned long
|
||||
#else
|
||||
// non-vc.net compiler or /Wp64 turned off
|
||||
#ifdef _Wp64
|
||||
#define RAD_SINTa signed long
|
||||
#define RAD_UINTa unsigned long
|
||||
#else
|
||||
#define RAD_SINTa signed int
|
||||
#define RAD_UINTa unsigned int
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#define RAD_F32 float
|
||||
#define RAD_F64 double
|
||||
|
||||
#if defined(_MSC_VER)
|
||||
#define RAD_U64 unsigned __int64
|
||||
#define RAD_S64 signed __int64
|
||||
#else
|
||||
#define RAD_U64 unsigned long long
|
||||
#define RAD_S64 signed long long
|
||||
#endif
|
||||
|
||||
|
||||
//================================================================
|
||||
// Then, we either typedef or define them based on switch settings
|
||||
|
||||
#if !defined(RADNOTYPEDEFS) // this define will turn off typedefs
|
||||
|
||||
#ifndef S8_DEFINED
|
||||
#define S8_DEFINED
|
||||
typedef RAD_S8 S8;
|
||||
#endif
|
||||
|
||||
#ifndef U8_DEFINED
|
||||
#define U8_DEFINED
|
||||
typedef RAD_U8 U8;
|
||||
#endif
|
||||
|
||||
#ifndef S16_DEFINED
|
||||
#define S16_DEFINED
|
||||
typedef RAD_S16 S16;
|
||||
#endif
|
||||
|
||||
#ifndef U16_DEFINED
|
||||
#define U16_DEFINED
|
||||
typedef RAD_U16 U16;
|
||||
#endif
|
||||
|
||||
#ifndef S32_DEFINED
|
||||
#define S32_DEFINED
|
||||
typedef RAD_S32 S32;
|
||||
#endif
|
||||
|
||||
#ifndef U32_DEFINED
|
||||
#define U32_DEFINED
|
||||
typedef RAD_U32 U32;
|
||||
#endif
|
||||
|
||||
#ifndef S64_DEFINED
|
||||
#define S64_DEFINED
|
||||
typedef RAD_S64 S64;
|
||||
#endif
|
||||
|
||||
#ifndef U64_DEFINED
|
||||
#define U64_DEFINED
|
||||
typedef RAD_U64 U64;
|
||||
#endif
|
||||
|
||||
#ifndef F32_DEFINED
|
||||
#define F32_DEFINED
|
||||
typedef RAD_F32 F32;
|
||||
#endif
|
||||
|
||||
#ifndef F64_DEFINED
|
||||
#define F64_DEFINED
|
||||
typedef RAD_F64 F64;
|
||||
#endif
|
||||
|
||||
#ifndef SINTa_DEFINED
|
||||
#define SINTa_DEFINED
|
||||
typedef RAD_SINTa SINTa;
|
||||
#endif
|
||||
|
||||
#ifndef UINTa_DEFINED
|
||||
#define UINTa_DEFINED
|
||||
typedef RAD_UINTa UINTa;
|
||||
#endif
|
||||
|
||||
#ifndef RRBOOL_DEFINED
|
||||
#define RRBOOL_DEFINED
|
||||
typedef S32 rrbool;
|
||||
typedef S32 RRBOOL;
|
||||
#endif
|
||||
|
||||
#elif !defined(RADNOTYPEDEFINES) // this define will turn off type defines
|
||||
|
||||
#ifndef S8_DEFINED
|
||||
#define S8_DEFINED
|
||||
#define S8 RAD_S8
|
||||
#endif
|
||||
|
||||
#ifndef U8_DEFINED
|
||||
#define U8_DEFINED
|
||||
#define U8 RAD_U8
|
||||
#endif
|
||||
|
||||
#ifndef S16_DEFINED
|
||||
#define S16_DEFINED
|
||||
#define S16 RAD_S16
|
||||
#endif
|
||||
|
||||
#ifndef U16_DEFINED
|
||||
#define U16_DEFINED
|
||||
#define U16 RAD_U16
|
||||
#endif
|
||||
|
||||
#ifndef S32_DEFINED
|
||||
#define S32_DEFINED
|
||||
#define S32 RAD_S32
|
||||
#endif
|
||||
|
||||
#ifndef U32_DEFINED
|
||||
#define U32_DEFINED
|
||||
#define U32 RAD_U32
|
||||
#endif
|
||||
|
||||
#ifndef S64_DEFINED
|
||||
#define S64_DEFINED
|
||||
#define S64 RAD_S64
|
||||
#endif
|
||||
|
||||
#ifndef U64_DEFINED
|
||||
#define U64_DEFINED
|
||||
#define U64 RAD_U64
|
||||
#endif
|
||||
|
||||
#ifndef F32_DEFINED
|
||||
#define F32_DEFINED
|
||||
#define F32 RAD_F32
|
||||
#endif
|
||||
|
||||
#ifndef F64_DEFINED
|
||||
#define F64_DEFINED
|
||||
#define F64 RAD_F64
|
||||
#endif
|
||||
|
||||
#ifndef SINTa_DEFINED
|
||||
#define SINTa_DEFINED
|
||||
#define SINTa RAD_SINTa
|
||||
#endif
|
||||
|
||||
#ifndef UINTa_DEFINED
|
||||
#define UINTa_DEFINED
|
||||
#define UINTa RAD_UINTa
|
||||
#endif
|
||||
|
||||
#ifndef RRBOOL_DEFINED
|
||||
#define RRBOOL_DEFINED
|
||||
#define rrbool S32
|
||||
#define RRBOOL S32
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#endif // __RADRES__
|
||||
|
||||
#endif // __RADTYPESH__
|
1317
thirdparty/telemetry/include/telemetry.h
vendored
1317
thirdparty/telemetry/include/telemetry.h
vendored
File diff suppressed because it is too large
Load Diff
46
thirdparty/telemetry/include/tmtypes.h
vendored
46
thirdparty/telemetry/include/tmtypes.h
vendored
@ -1,46 +0,0 @@
|
||||
|
||||
#ifndef TMTYPES_H
|
||||
#define TMTYPES_H
|
||||
|
||||
#ifdef _MSC_VER
|
||||
#pragma warning(disable:4121)
|
||||
#pragma warning(disable:4127)
|
||||
#endif
|
||||
|
||||
#ifndef __RADTYPESH__
|
||||
#include "radtypes.h"
|
||||
#endif
|
||||
|
||||
// This is documentation stuff
|
||||
#undef EXPTYPE
|
||||
#define EXPTYPE
|
||||
#undef EXPGROUP
|
||||
#define EXPGROUP(x)
|
||||
EXPGROUP(TMAPI)
|
||||
|
||||
EXPTYPE typedef RAD_S8 TmI8; // Signed 8-bit integer
|
||||
EXPTYPE typedef RAD_U8 TmU8; // Unsigned 8-bit integer
|
||||
EXPTYPE typedef RAD_S16 TmI16; // Signed 16-bit integer
|
||||
EXPTYPE typedef RAD_U16 TmU16; // Unsigned 16-bit integer
|
||||
EXPTYPE typedef RAD_S32 TmI32; // Signed 32-bit integer
|
||||
EXPTYPE typedef RAD_U32 TmU32; // Unsigned 32-bit integer
|
||||
EXPTYPE typedef RAD_F32 TmF32; // IEEE 32-bit float
|
||||
EXPTYPE typedef RAD_F64 TmF64; // IEEE 64-bit float (double)
|
||||
EXPTYPE typedef RAD_S64 TmI64; // Signed 64-bit integer
|
||||
EXPTYPE typedef RAD_U64 TmU64; // Unsigned 64-bit integer
|
||||
EXPTYPE typedef RAD_UINTa TmIntPtr; // Minimal size guaranteed to hold a pointer
|
||||
|
||||
typedef struct _TmFormatCode
|
||||
{
|
||||
TmU32 fc_format;
|
||||
TmU32 fc_fbits;
|
||||
char const *fc_ptr;
|
||||
} TmFormatCode;
|
||||
|
||||
// This is documentation stuff
|
||||
#undef EXPGROUP
|
||||
#define EXPGROUP()
|
||||
EXPGROUP()
|
||||
#undef EXPGROUP
|
||||
|
||||
#endif //TMTYPES_H
|
165
thirdparty/zlib/configure.log
vendored
165
thirdparty/zlib/configure.log
vendored
@ -529,3 +529,168 @@ uname = Linux
|
||||
--------------------
|
||||
|
||||
|
||||
--------------------
|
||||
./configure
|
||||
Wed Nov 4 05:37:33 PM MSK 2020
|
||||
Checking for gcc...
|
||||
=== ztest14911.c ===
|
||||
extern int getchar();
|
||||
int hello() {return getchar();}
|
||||
===
|
||||
gcc -c ztest14911.c
|
||||
... using gcc
|
||||
|
||||
Checking for obsessive-compulsive compiler options...
|
||||
=== ztest14911.c ===
|
||||
int foo() { return 0; }
|
||||
===
|
||||
gcc -c -m32 ztest14911.c
|
||||
|
||||
Checking for shared library support...
|
||||
=== ztest14911.c ===
|
||||
extern int getchar();
|
||||
int hello() {return getchar();}
|
||||
===
|
||||
gcc -w -c -m32 -fPIC ztest14911.c
|
||||
gcc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map -m32 -fPIC -o ztest14911.so ztest14911.o
|
||||
Building shared library libz.so.1.2.11 with gcc.
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
size_t dummy = 0;
|
||||
===
|
||||
gcc -c -m32 ztest14911.c
|
||||
Checking for size_t... Yes.
|
||||
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <sys/types.h>
|
||||
off64_t dummy = 0;
|
||||
===
|
||||
gcc -c -m32 -D_LARGEFILE64_SOURCE=1 ztest14911.c
|
||||
Checking for off64_t... Yes.
|
||||
Checking for fseeko... Yes.
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
int main() { return strlen(strerror(errno)); }
|
||||
===
|
||||
gcc -m32 -D_LARGEFILE64_SOURCE=1 -o ztest14911 ztest14911.c
|
||||
Checking for strerror... Yes.
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <unistd.h>
|
||||
int main() { return 0; }
|
||||
===
|
||||
gcc -c -m32 -D_LARGEFILE64_SOURCE=1 ztest14911.c
|
||||
Checking for unistd.h... Yes.
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <stdarg.h>
|
||||
int main() { return 0; }
|
||||
===
|
||||
gcc -c -m32 -D_LARGEFILE64_SOURCE=1 ztest14911.c
|
||||
Checking for stdarg.h... Yes.
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
#include "zconf.h"
|
||||
int main()
|
||||
{
|
||||
#ifndef STDC
|
||||
choke me
|
||||
#endif
|
||||
return 0;
|
||||
}
|
||||
===
|
||||
gcc -c -m32 -D_LARGEFILE64_SOURCE=1 ztest14911.c
|
||||
Checking whether to use vs[n]printf() or s[n]printf()... using vs[n]printf().
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
int mytest(const char *fmt, ...)
|
||||
{
|
||||
char buf[20];
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
vsnprintf(buf, sizeof(buf), fmt, ap);
|
||||
va_end(ap);
|
||||
return 0;
|
||||
}
|
||||
int main()
|
||||
{
|
||||
return (mytest("Hello%d\n", 1));
|
||||
}
|
||||
===
|
||||
gcc -m32 -D_LARGEFILE64_SOURCE=1 -o ztest14911 ztest14911.c
|
||||
Checking for vsnprintf() in stdio.h... Yes.
|
||||
|
||||
=== ztest14911.c ===
|
||||
#include <stdio.h>
|
||||
#include <stdarg.h>
|
||||
int mytest(const char *fmt, ...)
|
||||
{
|
||||
int n;
|
||||
char buf[20];
|
||||
va_list ap;
|
||||
va_start(ap, fmt);
|
||||
n = vsnprintf(buf, sizeof(buf), fmt, ap);
|
||||
va_end(ap);
|
||||
return n;
|
||||
}
|
||||
int main()
|
||||
{
|
||||
return (mytest("Hello%d\n", 1));
|
||||
}
|
||||
===
|
||||
gcc -c -m32 -D_LARGEFILE64_SOURCE=1 ztest14911.c
|
||||
Checking for return value of vsnprintf()... Yes.
|
||||
|
||||
=== ztest14911.c ===
|
||||
#define ZLIB_INTERNAL __attribute__((visibility ("hidden")))
|
||||
int ZLIB_INTERNAL foo;
|
||||
int main()
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
===
|
||||
gcc -c -m32 -D_LARGEFILE64_SOURCE=1 ztest14911.c
|
||||
Checking for attribute(visibility) support... Yes.
|
||||
|
||||
ALL = static shared all64
|
||||
AR = ar
|
||||
ARFLAGS = rc
|
||||
CC = gcc
|
||||
CFLAGS = -m32 -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN
|
||||
CPP = gcc -E
|
||||
EXE =
|
||||
LDCONFIG = ldconfig
|
||||
LDFLAGS = -m32
|
||||
LDSHARED = gcc -shared -Wl,-soname,libz.so.1,--version-script,zlib.map
|
||||
LDSHAREDLIBC = -lc
|
||||
OBJC = $(OBJZ) $(OBJG)
|
||||
PIC_OBJC = $(PIC_OBJZ) $(PIC_OBJG)
|
||||
RANLIB = ranlib
|
||||
SFLAGS = -m32 -fPIC -D_LARGEFILE64_SOURCE=1 -DHAVE_HIDDEN
|
||||
SHAREDLIB = libz.so
|
||||
SHAREDLIBM = libz.so.1
|
||||
SHAREDLIBV = libz.so.1.2.11
|
||||
STATICLIB = libz.a
|
||||
TEST = all teststatic testshared test64
|
||||
VER = 1.2.11
|
||||
Z_U4 =
|
||||
SRCDIR =
|
||||
exec_prefix = ${prefix}
|
||||
includedir = ${prefix}/include
|
||||
libdir = ${exec_prefix}/lib
|
||||
mandir = ${prefix}/share/man
|
||||
prefix = /usr/local
|
||||
sharedlibdir = ${libdir}
|
||||
uname = Linux
|
||||
--------------------
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user