writing reading and printing functions

This commit is contained in:
2011-02-26 09:26:16 +00:00
parent 5b1a61f4c8
commit 31ae7440a5
12 changed files with 866 additions and 280 deletions

42
qse/configure vendored
View File

@ -15004,37 +15004,26 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
#dnl overrides the default CFLAGS setting
#if test "$ac_test_CFLAGS" = "set"
#then
# CFLAGS=$ac_save_CFLAGS
#else
# if test "$GCC" = "yes"
# then
# CFLAGS="-O2"
# else
# CFLAGS=
# fi
#fi
if test "$ac_test_CFLAGS" != "set"
then
if test "$GCC" = "yes"
then
CFLAGS="$CFLAGS -Wall"
fi
fi
#if test "$ac_test_CXXFLAGS" = "set"
#then
# CXXFLAGS=$ac_save_CXXFLAGS
#else
# if test "$GCC" = "yes"
# then
# CXXFLAGS="-O2"
# else
# CXXFLAGS=
# fi
#fi
if test "$ac_test_CXXFLAGS" != "set"
then
if test "$GCC" = "yes"
then
CXXFLAGS="$CXXFLAGS -Wall"
fi
fi
CFLAGS="$CFLAGS -DQSE_HAVE_CONFIG_H"
OBJCFLAGS="$OBJCFLAGS -DQSE_HAVE_CONFIG_H"
CXXFLAGS="$CXXFLAGS -DQSE_HAVE_CONFIG_H"
CFLAGS="$CFLAGS -D_LARGEFILE64_SOURCE"
OBJCFLAGS="$OBJCFLAGS -D_LARGEFILE64_SOURCE"
CXXFLAGS="$CXXFLAGS -D_LARGEFILE64_SOURCE"
case "$host" in
@ -16624,13 +16613,11 @@ fi
if test "$enable_debug_is" = "yes"
then
CFLAGS="$CFLAGS -g -D_DEBUG -UNDEBUG -DQSE_BUILD_DEBUG"
OBJCFLAGS="$OBJCFLAGS -g -D_DEBUG -UNDEBUG -DQSE_BUILD_DEBUG"
CXXFLAGS="$CXXFLAGS -g -D_DEBUG -UNDEBUG -DQSE_BUILD_DEBUG"
BUILD_MODE="debug"
else
CFLAGS="$CFLAGS -DNDEBUG -U_DEBUG -DQSE_BUILD_RELEASE"
OBJCFLAGS="$OBJCFLAGS -DNDEBUG -U_DEBUG -DQSE_BUILD_RELEASE"
CXXFLAGS="$CXXFLAGS -DNDEBUG -U_DEBUG -DQSE_BUILD_RELEASE"
BUILD_MODE="release"
@ -16664,7 +16651,6 @@ fi
if test "$enable_reentrant_is" = "yes"
then
CFLAGS="$CFLAGS -D_REENTRANT -D_THREAD_SAFE"
OBJCFLAGS="$OBJCFLAGS -D_REENTRANT -D_THREAD_SAFE"
CXXFLAGS="$CXXFLAGS -D_REENTRANT -D_THREAD_SAFE"
fi