Files
ZSNES/zsnes/src/acinclude.m4

569 lines
16 KiB
Plaintext

dnl -- Begin zlib autoconf macro
dnl Copyright (c) 2002 Patrick McFarland
dnl Under the GPL License
dnl When copying, include from Begin to End zlib autoconf macro, including
dnl those tags, so others can easily copy it too. (Maybe someday this will
dnl become zlib.m4?)
dnl
dnl AM_PATH_ZLIB([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Tests for zlib, outputs ZLIB_VERSION, ZLIB_LIBS, and ZLIB_CFLAGS
AC_DEFUN([AM_PATH_ZLIB],
[dnl
dnl
dnl
AC_ARG_WITH(zlib-prefix,[ --with-zlib-prefix=PFX Prefix where zlib is installed (optional)], zlib_prefix="$withval", zlib_prefix="")
min_zlib_version=ifelse([$1], ,1.1.0,$1)
AC_MSG_CHECKING(for zlib - version >= $min_zlib_version)
tempLIBS="$LIBS"
tempCFLAGS="$CFLAGS"
if test x$zlib_prefix != x ; then
ZLIB_LIBS="-L$zlib_prefix"
ZLIB_CFLAGS="-I$zlib_prefix"
fi
ZLIB_LIBS="$ZLIB_LIBS -lz"
LIBS="$LIBS $ZLIB_LIBS"
CFLAGS="$CFLAGS $ZLIB_CFLAGS"
with_zlib=no
AC_TRY_RUN([
#include <zlib.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* my_strdup (char *str)
{
char *new_str;
if (str)
{
new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
strcpy (new_str, str);
}
else new_str = NULL;
return new_str;
}
int main (int argc, char *argv[])
{
int major, minor, micro, zlib_major_version, zlib_minor_version, zlib_micro_version;
char *zlibver, *tmp_version;
zlibver = ZLIB_VERSION;
FILE *fp = fopen("conf.zlibtest", "a");
if ( fp ) {
fprintf(fp, "%s", zlibver);
fclose(fp);
}
/* HP/UX 9 (%@#!) writes to sscanf strings */
tmp_version = my_strdup("$min_zlib_version");
if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
printf("%s, bad version string for\n\tmin_zlib_version... ", "$min_zlib_version");
exit(1);
}
if (sscanf(zlibver, "%d.%d.%d", &zlib_major_version, &zlib_minor_version, &zlib_micro_version) != 3) {
printf("%s, bad version string given\n", zlibver);
puts("\tby zlib, sometimes due to very old zlibs that didnt correctly");
printf("\tdefine their version. Please upgrade if you are running an\n\told zlib... ");
exit(1);
}
if ((zlib_major_version > major) ||
((zlib_major_version == major) && (zlib_minor_version > minor)) ||
((zlib_major_version == major) && (zlib_minor_version == minor) && (zlib_micro_version >= micro)))
{
return 0;
}
else
{
return 1;
}
}
],with_zlib=yes,,[AC_MSG_WARN(Cross Compiling, Assuming zlib is avalible)])
if test x$with_zlib = xyes; then
AC_MSG_RESULT(yes)
ZLIB_VERSION=$(<conf.zlibtest)
ifelse([$2], , :, [$2])
else
AC_MSG_RESULT(no)
ZLIB_CFLAGS=""
ZLIB_LIBS=""
ZLIB_VERSION=""
ifelse([$3], , :, [$3])
fi
LIBS="$tempLIBS"
CFLAGS="$tempCFLAGS"
rm conf.zlibtest
AC_SUBST(ZLIB_CFLAGS)
AC_SUBST(ZLIB_VERSION)
AC_SUBST(ZLIB_LIBS)
])
dnl -- End zlib autoconf macro
dnl ----
dnl -- Begin libpng autoconf macro
dnl Copyright (c) 2002 Patrick McFarland
dnl Under the GPL License
dnl When copying, include from Begin to End libpng autoconf macro, including
dnl those tags, so others can easily copy it too. (Maybe someday this will
dnl become libpng.m4?)
dnl
dnl AM_PATH_LIBPNG([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]])
dnl Tests for libpng, outputs LIBPNG_VERSION, LIBPNG_LIBS, and LIBPNG_CFLAGS
AC_DEFUN([AM_PATH_LIBPNG],
[dnl
dnl
dnl
dnl Comment out this section, and the other labled parts to disable the user
dnl having a choice about being able to disable libpng or not. Recommended
dnl you use AC_MSG_ERROR(LIBPNG >= 1.0.0 is required) for the
dnl ACTION-IF-NOT-FOUND if you plan on disabling user choice.
dnl <--- disable for no user choice part #1
AC_ARG_ENABLE(libpng,[ --disable-libpng Build without libpng support ],,enable_libpng=yes)
dnl --->
AC_ARG_WITH(libpng-prefix,[ --with-libpng-prefix=PFX Prefix where libpng is installed (optional)], libpng_prefix="$withval", libpng_prefix="")
min_libpng_version=ifelse([$1], ,1.2.0,$1)
tempLIBS="$LIBS"
tempCFLAGS="$CFLAGS"
if test x$libpng_prefix != x ; then
LIBPNG_LIBS="-L$libpng_prefix"
LIBPNG_CFLAGS="-I$libpng_prefix"
fi
LIBPNG_LIBS="$LIBPNG_LIBS -lpng -lm"
LIBS="$LIBS $LIBPNG_LIBS"
CFLAGS="$CFLAGS $LIBPNG_CFLAGS"
AC_MSG_CHECKING(for libpng - version >= $min_libpng_version)
with_libpng=no
dnl <--- disable for no user choice part #2
if test x$enable_libpng != xno; then
dnl --->
AC_TRY_RUN([
#include <png.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
char* my_strdup (char *str)
{
char *new_str;
if (str)
{
new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char));
strcpy (new_str, str);
}
else new_str = NULL;
return new_str;
}
int main (int argc, char *argv[])
{
int major, minor, micro, libpng_major_version, libpng_minor_version, libpng_micro_version;
char *libpngver, *tmp_version;
libpngver = PNG_LIBPNG_VER_STRING;
FILE *fp = fopen("conf.libpngtest", "a");
if ( fp ) {
fprintf(fp, "%s", libpngver);
fclose(fp);
}
/* HP/UX 9 (%@#!) writes to sscanf strings */
tmp_version = my_strdup("$min_libpng_version");
if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, &micro) != 3) {
printf("%s, bad version string for\n\tmin_libpng_version... ", "$min_libpng_version");
exit(1);
}
if (sscanf(libpngver, "%d.%d.%d", &libpng_major_version, &libpng_minor_version, &libpng_micro_version) != 3) {
printf("%s, bad version string given\n", libpngver);
puts("\tby libpng, sometimes due to very old libpngs that didnt correctly");
printf("\tdefine their version. Please upgrade if you are running an\n\told libpng... ");
exit(1);
}
if ((libpng_major_version > major) ||
((libpng_major_version == major) && (libpng_minor_version > minor)) ||
((libpng_major_version == major) && (libpng_minor_version == minor) && (libpng_micro_version >= micro)))
{
return 0;
}
else
{
return 1;
}
}
],with_libpng=yes,,[AC_MSG_WARN(Cross Compiling, Assuming libpng is avalible)])
if test x$with_libpng = xyes; then
AC_MSG_RESULT(yes)
LIBPNG_VERSION=$(<conf.libpngtest)
ifelse([$2], , :, [$2])
else
AC_MSG_RESULT(no)
LIBPNG_CFLAGS=""
LIBPNG_LIBS=""
LIBPNG_VERSION=""
ifelse([$3], , :, [$3])
fi
LIBS="$tempLIBS"
CFLAGS="$tempCFLAGS"
rm conf.libpngtest
AC_SUBST(LIBPNG_CFLAGS)
AC_SUBST(LIBPNG_VERSION)
AC_SUBST(LIBPNG_LIBS)
dnl <--- disable for no user choice part #3
else
AC_MSG_RESULT(disabled by user)
fi
dnl --->
])
dnl -- End libpng autoconf macro
dnl ----
dnl -- Begin custom arch detection autoconf macro
dnl Copyright (c) 2005 Nach, grinvader
dnl Under the GPL License
dnl When copying, include from Begin to End custom arch detection autoconf macro,
dnl including those tags, so others can easily copy it too.
dnl
dnl AM_ARCH_DETECT([ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
dnl Reads the first entry in /proc/cpuinfo or uses cpuid to grab what is needed,
dnl outputs ARCH_INFO
AC_DEFUN([AM_ARCH_DETECT],
[
ARCH_INFO=""
AC_MSG_CHECKING(for cpu info)
AC_ARG_ENABLE(cpucheck, [ --disable-cpucheck Do not try to autodetect cpu architecture ],,enable_cpucheck=yes)
if test x$enable_cpucheck != xno; then
AC_TRY_RUN([
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <ctype.h>
#define cpuid(in, a, b, c, d) asm volatile("cpuid": "=a" (a), "=b" (b), "=c" (c), "=d" (d) : "a" (in));
char *x86_flags[] =
{ "fpu", "vme", "de", "pse", "tsc", "msr", "pae", "mce",
"cx8", "apic", 0, "sep", "mtrr", "pge", "mca", "cmov",
"pat", "pse36", "pn", "clflush", 0, "dts", "acpi", "mmx",
"fxsr", "sse", "sse2", "ss", "ht", "tm", "ia64", "pbe",
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, "syscall", 0, 0, 0, 0,
0, 0, 0, "mp", "nx", 0, "mmxext", 0,
0, "fxsr_opt", 0, 0, 0, "lm", "3dnowext", "3dnow",
"recovery", "longrun", 0, "lrti", 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
"pni", 0, 0, "monitor", "ds_cpl", 0, 0, "est",
"tm2", 0, "cid", 0, 0, 0, "xtpr", 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, "rng", "rng_en", 0, 0, "ace", "ace_en",
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
"lahf_lm", "cmp_legacy", 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0,
0, 0, 0, 0, 0, 0, 0, 0 };
void add_flags(char *flags, unsigned int reg, unsigned int offset)
{
unsigned int i;
for (i = 0; i < 32; i++)
{
if ((reg & (1 << i)) && x86_flags[i+offset])
{
strcat(flags, x86_flags[i+offset]);
strcat(flags, " ");
}
}
}
int have_cpuid()
{
int have = 0x200000;
asm volatile
(
"pushfl \n\t"
"pop %%eax \n\t"
"movl %%eax,%%edx \n\t"
"xorl %%ecx,%%eax \n\t"
"push %%eax \n\t"
"popfl \n\t"
"pushfl \n\t"
"pop %%eax \n\t"
"xorl %%edx,%%eax \n\t"
: "=a" (have)
: "c" (have)
);
return(have);
}
int main(int argc, char *argv[])
{
char model_name[216], flags[216], cpu_family[216];
char vendor_id[216], model[216], *cpu = 0;
FILE *fp;
*model_name = 0;
*cpu_family = 0;
*vendor_id = 0;
*model = 0;
strcpy(flags, " ");
if ((fp = fopen("/proc/cpuinfo", "r")))
{
char line[256], key[40], arg[216];
const char *pattern = " %39[^:]: %215[ -~]"; // for sscanf
while (fgets(line, sizeof(line), fp) && sscanf(line, pattern, key, arg) == 2)
{
if (!strncmp(key, "model name", strlen("model name")) && !*model_name)
{ strcpy(model_name, arg); }
else if (!strncmp(key, "flags", strlen("flags")) && !flags[1])
{
strcat(flags, arg);
strcat(flags, " ");
}
else if (!strncmp(key, "cpu family", strlen("cpu family")) && !*cpu_family)
{ strcpy(cpu_family, arg); }
else if (!strncmp(key, "vendor_id", strlen("vendor_id")) && !*vendor_id)
{ strcpy(vendor_id, arg); }
else if (!strncmp(key, "model", strlen("model")) && !*model)
{ strcpy(model, arg); }
}
fclose(fp);
}
else if (have_cpuid())
{
unsigned int maxei, eax, ebx, ecx, edx, unused, i;
cpuid(0, unused, ebx, ecx, edx);
strncat(vendor_id, (char *)&ebx, 4);
strncat(vendor_id, (char *)&edx, 4);
strncat(vendor_id, (char *)&ecx, 4);
cpuid(1, eax, ebx, ecx, edx);
sprintf(model, "%u", (eax >> 4) & 0xf);
sprintf(cpu_family, "%u", (eax >> 8) & 0xf);
add_flags(flags, edx, 0);
add_flags(flags, ecx, 96);
cpuid(0x80000000, maxei, unused, unused, unused);
if (maxei >= 0x80000001)
{
cpuid(0x80000001, unused, unused, ecx, edx);
add_flags(flags, edx, 32);
add_flags(flags, ecx, 160);
}
//Transmeta
cpuid(0x80860000, eax, unused, unused, unused);
if (((eax & 0xffff0000) == 0x80860000) && (eax > 0x80860001))
{
cpuid(0x80860001, unused, unused, unused, edx);
add_flags(flags, edx, 64);
}
//Centaur
cpuid(0xC0000000, eax, unused, unused, unused);
if (eax >= 0xC0000001)
{
cpuid(0xC0000001, unused, unused, unused, edx);
add_flags(flags, edx, 128);
}
if (maxei >= 0x80000002)
{
for (i = 0x80000002; i <= 0x80000004; i++)
{
cpuid(i, eax, ebx, ecx, edx);
strncat(model_name, (char *)&eax, 4);
strncat(model_name, (char *)&ebx, 4);
strncat(model_name, (char *)&ecx, 4);
strncat(model_name, (char *)&edx, 4);
}
}
}
if (*cpu_family && *vendor_id)
{
if (!strcmp(vendor_id, "AuthenticAMD") || strstr(model_name, "AMD"))
{
if (strstr(flags, " mmx "))
{
#if __GNUC__ > 2
if (strstr(flags, " 3dnow "))
{
if (strstr(flags, " 3dnowext ") && (atoi(cpu_family) > 5))
{
#if __GNUC__ > 3 || __GNUC_MINOR__ > 0
if (strstr(flags, " sse "))
{
#if __GNUC__ > 3 || __GNUC_MINOR__ > 3
if (strstr(flags, " sse2 ") && strstr(flags, " lm ")) //Need two checks to protect Semprons
{
if (strstr(model_name, "Opteron")) { cpu = "opteron"; }
else { cpu = (strstr(model_name, "Athlon(tm) 64")) ? "athlon64" : "k8"; }
} //Athlon64, also athlon-fx
#endif
if (!cpu)
{
if (strstr(model_name, "Athlon(tm) 4")) { cpu = "athlon-4"; }
else { cpu = (strstr(model_name, "Athlon(tm) MP")) ? "athlon-mp" : "athlon-xp"; }
}
}
if (!cpu && (atoi(model) > 3)) { cpu = "athlon-tbird"; }
#endif
if (!cpu) { cpu = "athlon"; }
}
#if __GNUC__ > 3 || __GNUC_MINOR__ > 0
if (!cpu)
{
int model_num = atoi(model);
cpu = ((model_num == 9) || (model_num >= 13)) ? "k6-3" : "k6-2";
}
#endif
}
#endif
if (!cpu) { cpu = "k6"; }
}
}
else if (!strcmp(vendor_id, "GenuineIntel") || strstr(model_name, "Intel"))
{
#if __GNUC__ > 2
if (strstr(flags, " mmx "))
{
if (strstr(flags, " sse "))
{
if (strstr(flags, " sse2 "))
{
#if __GNUC__ > 3 || __GNUC_MINOR__ > 2
if (strstr(flags, " pni "))
{
cpu = (strstr(flags, " lm ")) ? "nocona" : "prescott";
}
#endif
if (!cpu)
{
if (!strcmp(cpu_family, "6"))
{
#if __GNUC__ > 3 || __GNUC_MINOR__ > 3
cpu = "pentium-m";
#else
cpu = "pentium3";
#endif
}
else
{
#if __GNUC__ > 3 || __GNUC_MINOR__ > 2
if (strstr(model_name, "Mobile")) { cpu = "pentium4m"; }
#endif
if (!cpu) { cpu = "pentium4"; }
}
}
}
else { cpu = "pentium3"; }
}
else { cpu = (!strcmp(cpu_family, "6")) ? "pentium2" : "pentium-mmx"; }
}
#endif
if (!cpu)
{
int family = atoi(cpu_family);
if (family > 5) { cpu = "pentiumpro"; }
else if (family == 5) { cpu = "pentium"; }
}
}
#if __GNUC__ > 2
#if __GNUC__ > 3 || __GNUC_MINOR__ > 2
else if (!strcmp(vendor_id, "CentaurHauls") && strstr(flags, " mmx "))
{
if (strstr(flags, " 3dnow "))
{
cpu = (atoi(cpu_family) > 5) ? "c3" : "winchip2";
}
#if __GNUC__ > 3 || __GNUC_MINOR__ > 3
else if (strstr(flags, " sse ")) { cpu = "c3-2"; }
#endif
if (!cpu) { cpu = "winchip-c6"; }
}
#endif
#endif
if (!cpu)
{
int family = atoi(cpu_family);
if (family > 5) { cpu = "i686"; }
else if (family == 5) { cpu = "i586"; }
else if (family == 4) { cpu = "i486"; }
else { cpu = "i386"; }
}
if ((fp = fopen("conf.archchk", "a")))
{
fprintf(fp, "%s", cpu);
fclose(fp);
return(0);
}
}
return(1);
}
],cpu_found=yes)
if test x$cpu_found = xyes; then
AC_MSG_RESULT(found)
ARCH_INFO=$(<conf.archchk)
ifelse([$1], , :, [$1])
rm conf.archchk
else
AC_MSG_RESULT(not found)
ifelse([$2], , :, [$2])
fi
AC_SUBST(ARCH_INFO)
else
AC_MSG_RESULT(disabled by user)
fi
])
dnl -- End custom arch detection autoconf macro