*** empty log message ***

This commit is contained in:
hyung-hwan 2005-08-11 07:36:33 +00:00
parent 1c2f620459
commit 5e129c54e4
2 changed files with 18 additions and 17 deletions

17
ase/configure vendored
View File

@ -850,8 +850,9 @@ if test -n "$ac_init_help"; then
Optional Features: Optional Features:
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-wchar user wchar_t a default charater type --enable-wchar use wchar_t a default charater type when enabled
--enable-reentrant defined _REENTRANT (default. yes)
--enable-reentrant define _REENTRANT (default. yes)
Some influential environment variables: Some influential environment variables:
CXX C++ compiler command CXX C++ compiler command
@ -10815,11 +10816,11 @@ _ACEOF
# Check whether --enable-wchar or --disable-wchar was given. # Check whether --enable-wchar or --disable-wchar was given.
if test "${enable_wchar+set}" = set; then if test "${enable_wchar+set}" = set; then
enableval="$enable_wchar" enableval="$enable_wchar"
wchar_is=$enableval enable_wchar_is=$enableval
else else
wchar_is=yes enable_wchar_is=yes
fi; fi;
if test "$wchar_is" = "yes" if test "$enable_wchar_is" = "yes"
then then
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
@ -10837,11 +10838,11 @@ fi
# Check whether --enable-reentrant or --disable-reentrant was given. # Check whether --enable-reentrant or --disable-reentrant was given.
if test "${enable_reentrant+set}" = set; then if test "${enable_reentrant+set}" = set; then
enableval="$enable_reentrant" enableval="$enable_reentrant"
reentrant_is=$enableval enable_reentrant_is=$enableval
else else
reentrant_is=yes enable_reentrant_is=yes
fi; fi;
if test "$reentrant_is" = "yes" if test "$enable_reentrant_is" = "yes"
then then
CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE" CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"
fi fi

View File

@ -1,6 +1,6 @@
AC_PREREQ(2.53) AC_PREREQ(2.53)
AC_INIT([xpkit], [deb-0.1.0]) AC_INIT([xpkit], [deb-0.1.0])
AC_REVISION([$Revision: 1.48 $]) AC_REVISION([$Revision: 1.49 $])
AC_CONFIG_HEADER([xp/config.h]) AC_CONFIG_HEADER([xp/config.h])
# Checks for programs. # Checks for programs.
@ -59,20 +59,20 @@ AC_CHECK_SIZEOF(long double)
#AC_FUNC_REALLOC #AC_FUNC_REALLOC
#AC_CHECK_FUNCS([memset]) #AC_CHECK_FUNCS([memset])
AC_ARG_ENABLE(wchar, AC_ARG_ENABLE([wchar], [AC_HELP_STRING([--enable-wchar],
[--enable-wchar user wchar_t a default charater type], [use wchar_t a default charater type when enabled (default. yes)])],
wchar_is=$enableval,wchar_is=yes) enable_wchar_is=$enableval,enable_wchar_is=yes)
if test "$wchar_is" = "yes" if test "$enable_wchar_is" = "yes"
then then
AC_DEFINE([XP_CHAR_IS_WCHAR],[],[char is wchar]) AC_DEFINE([XP_CHAR_IS_WCHAR],[],[char is wchar])
else else
AC_DEFINE([XP_CHAR_IS_MCHAR],[],[char is mchar]) AC_DEFINE([XP_CHAR_IS_MCHAR],[],[char is mchar])
fi fi
AC_ARG_ENABLE(reentrant, AC_ARG_ENABLE([reentrant], [AC_HELP_STRING([--enable-reentrant],
[--enable-reentrant defined _REENTRANT], [define _REENTRANT (default. yes)])],
reentrant_is=$enableval,reentrant_is=yes) enable_reentrant_is=$enableval,enable_reentrant_is=yes)
if test "$reentrant_is" = "yes" if test "$enable_reentrant_is" = "yes"
then then
[CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"] [CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"]
fi fi