[gq-commit] gq acinclude.m4,1.2,1.3
Status: Beta
Brought to you by:
sur5r
From: <sta...@us...> - 2003-09-28 22:32:48
|
Update of /cvsroot/gqclient/gq In directory sc8-pr-cvs1:/tmp/cvs-serv16340 Modified Files: acinclude.m4 Log Message: * Fixed for autoconf 2.57 (in order to get rid of acconfig.h): Added descriptions for the defined preprocessor macros. Index: acinclude.m4 =================================================================== RCS file: /cvsroot/gqclient/gq/acinclude.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** acinclude.m4 11 Oct 2002 13:42:31 -0000 1.2 --- acinclude.m4 28 Sep 2003 22:32:27 -0000 1.3 *************** *** 56,63 **** if test "$gq_cv_have_tm_gmtoff" = yes ; then ! AC_DEFINE(HAVE_TM_GMTOFF) ! AC_DEFINE(TM_GMTOFF, tm_gmtoff) elif test "$gq_cv_have___tm_gmtoff" = yes ; then ! AC_DEFINE(HAVE_TM_GMTOFF) AC_DEFINE(TM_GMTOFF, __tm_gmtoff) else --- 56,65 ---- if test "$gq_cv_have_tm_gmtoff" = yes ; then ! AC_DEFINE(HAVE_TM_GMTOFF,1, ! [Define if your struct tm contains tm_gmtoff or __tm_gmtoff]) ! AC_DEFINE(TM_GMTOFF, tm_gmtoff, ! [Define to the name of the tm_gmtoff member of struct tm]) elif test "$gq_cv_have___tm_gmtoff" = yes ; then ! AC_DEFINE(HAVE_TM_GMTOFF,1) AC_DEFINE(TM_GMTOFF, __tm_gmtoff) else *************** *** 71,75 **** ac_cv_var_timezone=no)]) if test $ac_cv_var_timezone = yes; then ! AC_DEFINE(HAVE_TIMEZONE) fi fi --- 73,78 ---- ac_cv_var_timezone=no)]) if test $ac_cv_var_timezone = yes; then ! AC_DEFINE(HAVE_TIMEZONE,1, ! [Define if your libc has a global timezone variable]) fi fi |