More workingness, now accepts locally-stored resources!

git-svn-id: svn://svn.code.sf.net/p/magicseteditor/code/trunk@1158 0fc631ac-6414-0410-93d0-97cfa31319b6
This commit is contained in:
coppro
2008-08-21 04:06:50 +00:00
parent d13b721b41
commit ec63e3b18b
9 changed files with 155 additions and 33 deletions
Vendored
+106 -10
View File
@@ -1,6 +1,6 @@
#! /bin/sh
# Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.61 for magicseteditor 0.3.4.
# Generated by GNU Autoconf 2.61 for magicseteditor 0.3.7b.
#
# Report bugs to <twanvl@users.sourceforge.net>.
#
@@ -574,8 +574,8 @@ SHELL=${CONFIG_SHELL-/bin/sh}
# Identity of this package.
PACKAGE_NAME='magicseteditor'
PACKAGE_TARNAME='magicseteditor'
PACKAGE_VERSION='0.3.4'
PACKAGE_STRING='magicseteditor 0.3.4'
PACKAGE_VERSION='0.3.7b'
PACKAGE_STRING='magicseteditor 0.3.7b'
PACKAGE_BUGREPORT='twanvl@users.sourceforge.net'
ac_unique_file="src/main.cpp"
@@ -1226,7 +1226,7 @@ if test "$ac_init_help" = "long"; then
# Omit some internal or obsolete options to make the list less imposing.
# This message is too long to be a string in the A/UX 3.1 sh.
cat <<_ACEOF
\`configure' configures magicseteditor 0.3.4 to adapt to many kinds of systems.
\`configure' configures magicseteditor 0.3.7b to adapt to many kinds of systems.
Usage: $0 [OPTION]... [VAR=VALUE]...
@@ -1292,7 +1292,7 @@ fi
if test -n "$ac_init_help"; then
case $ac_init_help in
short | recursive ) echo "Configuration of magicseteditor 0.3.4:";;
short | recursive ) echo "Configuration of magicseteditor 0.3.7b:";;
esac
cat <<\_ACEOF
@@ -1387,7 +1387,7 @@ fi
test -n "$ac_init_help" && exit $ac_status
if $ac_init_version; then
cat <<\_ACEOF
magicseteditor configure 0.3.4
magicseteditor configure 0.3.7b
generated by GNU Autoconf 2.61
Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001,
@@ -1401,7 +1401,7 @@ cat >config.log <<_ACEOF
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by magicseteditor $as_me 0.3.4, which was
It was created by magicseteditor $as_me 0.3.7b, which was
generated by GNU Autoconf 2.61. Invocation command line was
$ $0 $@
@@ -2096,7 +2096,7 @@ fi
# Define the identity of the package.
PACKAGE='magicseteditor'
VERSION='0.3.4'
VERSION='0.3.7b'
cat >>confdefs.h <<_ACEOF
@@ -5604,6 +5604,102 @@ fi
done
{ echo "$as_me:$LINENO: checking whether the compiler provides atomic builtins" >&5
echo $ECHO_N "checking whether the compiler provides atomic builtins... $ECHO_C" >&6; }
if test "${ap_cv_atomic_builtins+set}" = set; then
echo $ECHO_N "(cached) $ECHO_C" >&6
else
if test "$cross_compiling" = yes; then
ap_cv_atomic_builtins=no
else
cat >conftest.$ac_ext <<_ACEOF
/* confdefs.h. */
_ACEOF
cat confdefs.h >>conftest.$ac_ext
cat >>conftest.$ac_ext <<_ACEOF
/* end confdefs.h. */
int main()
{
unsigned long val = 1010, tmp, *mem = &val;
if (__sync_fetch_and_add(&val, 1010) != 1010 || val != 2020)
return 1;
tmp = val;
if (__sync_fetch_and_sub(mem, 1010) != tmp || val != 1010)
return 1;
if (__sync_sub_and_fetch(&val, 1010) != 0 || val != 0)
return 1;
tmp = 3030;
if (__sync_val_compare_and_swap(mem, 0, tmp) != 0 || val != tmp)
return 1;
if (__sync_lock_test_and_set(&val, 4040) != 3030)
return 1;
mem = &tmp;
if (__sync_val_compare_and_swap(&mem, &tmp, &val) != &tmp)
return 1;
__sync_synchronize();
if (mem != &val)
return 1;
return 0;
}
_ACEOF
rm -f conftest$ac_exeext
if { (ac_try="$ac_link"
case "(($ac_try" in
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
*) ac_try_echo=$ac_try;;
esac
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
(eval "$ac_link") 2>&5
ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&5
(exit $ac_status); } && { ac_try='./conftest$ac_exeext'
{ (case "(($ac_try" in
*\"* | *\`* | *\\*) ac_try_echo=\$ac_try;;
*) ac_try_echo=$ac_try;;
esac
eval "echo \"\$as_me:$LINENO: $ac_try_echo\"") >&5
(eval "$ac_try") 2>&5
ac_status=$?
echo "$as_me:$LINENO: \$? = $ac_status" >&5
(exit $ac_status); }; }; then
ap_cv_atomic_builtins=yes
else
echo "$as_me: program exited with status $ac_status" >&5
echo "$as_me: failed program was:" >&5
sed 's/^/| /' conftest.$ac_ext >&5
( exit $ac_status )
ap_cv_atomic_builtins=no
fi
rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext
fi
fi
{ echo "$as_me:$LINENO: result: $ap_cv_atomic_builtins" >&5
echo "${ECHO_T}$ap_cv_atomic_builtins" >&6; }
if test "$ap_cv_atomic_builtins" = "yes"; then
cat >>confdefs.h <<\_ACEOF
#define HAVE_GCC_ATOMIC_BUILTINS 1
_ACEOF
fi
ac_config_files="$ac_config_files Makefile"
cat >confcache <<\_ACEOF
@@ -6023,7 +6119,7 @@ exec 6>&1
# report actual input values of CONFIG_FILES etc. instead of their
# values after options handling.
ac_log="
This file was extended by magicseteditor $as_me 0.3.4, which was
This file was extended by magicseteditor $as_me 0.3.7b, which was
generated by GNU Autoconf 2.61. Invocation command line was
CONFIG_FILES = $CONFIG_FILES
@@ -6076,7 +6172,7 @@ Report bugs to <bug-autoconf@gnu.org>."
_ACEOF
cat >>$CONFIG_STATUS <<_ACEOF
ac_cs_version="\\
magicseteditor config.status 0.3.4
magicseteditor config.status 0.3.7b
configured by $0, generated by GNU Autoconf 2.61,
with options \\"`echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`\\"