*** empty log message ***

This commit is contained in:
hyung-hwan 2005-08-08 10:37:43 +00:00
parent cb1f305074
commit 13035b0f17
2 changed files with 8 additions and 8 deletions

8
ase/configure vendored
View File

@ -850,7 +850,7 @@ if test -n "$ac_init_help"; then
Optional Features:
--disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no)
--enable-FEATURE[=ARG] include FEATURE [ARG=yes]
--enable-char choose a default charater type (wchar/mchar)
--enable-wchar user wchar_t a default charater type
--enable-reentrant defined _REENTRANT
Some influential environment variables:
@ -10815,11 +10815,11 @@ _ACEOF
# Check whether --enable-char or --disable-char was given.
if test "${enable_char+set}" = set; then
enableval="$enable_char"
char_is=$enableval
wchar_is=$enableval
else
char_is=wchar
wchar_is=yes
fi;
if test "$char_is" = "wchar"
if test "$wchar_is" = "yes"
then
cat >>confdefs.h <<\_ACEOF

View File

@ -1,6 +1,6 @@
AC_PREREQ(2.53)
AC_INIT([xpkit], [deb-0.1.0])
AC_REVISION([$Revision: 1.46 $])
AC_REVISION([$Revision: 1.47 $])
AC_CONFIG_HEADER([xp/config.h])
# Checks for programs.
@ -60,9 +60,9 @@ AC_CHECK_SIZEOF(long double)
#AC_CHECK_FUNCS([memset])
AC_ARG_ENABLE(char,
[--enable-char choose a default charater type (wchar/mchar)],
char_is=$enableval,char_is=wchar)
if test "$char_is" = "wchar"
[--enable-wchar user wchar_t a default charater type],
wchar_is=$enableval,wchar_is=yes)
if test "$wchar_is" = "yes"
then
AC_DEFINE([XP_CHAR_IS_WCHAR],[],[char is wchar])
else