aboutsummaryrefslogtreecommitdiffstats
path: root/libical/configure.in
diff options
context:
space:
mode:
authornobody <nobody@localhost>2001-04-16 17:30:54 +0800
committernobody <nobody@localhost>2001-04-16 17:30:54 +0800
commit1fa7f6b29a7d7fab8395c2070c2f3522091788ee (patch)
treeaaa46c1cf6c9a87e8f291ef7673bd9463803e8c9 /libical/configure.in
parent75a16468d369f58587f27ab4655fbe1c1091fc95 (diff)
downloadgsoc2013-evolution-GDM2_2_2_1.tar
gsoc2013-evolution-GDM2_2_2_1.tar.gz
gsoc2013-evolution-GDM2_2_2_1.tar.bz2
gsoc2013-evolution-GDM2_2_2_1.tar.lz
gsoc2013-evolution-GDM2_2_2_1.tar.xz
gsoc2013-evolution-GDM2_2_2_1.tar.zst
gsoc2013-evolution-GDM2_2_2_1.zip
This commit was manufactured by cvs2svn to create tag 'GDM2_2_2_1'.GDM2_2_2_1
svn path=/tags/GDM2_2_2_1/; revision=9346
Diffstat (limited to 'libical/configure.in')
-rw-r--r--libical/configure.in85
1 files changed, 0 insertions, 85 deletions
diff --git a/libical/configure.in b/libical/configure.in
deleted file mode 100644
index 80b35a660e..0000000000
--- a/libical/configure.in
+++ /dev/null
@@ -1,85 +0,0 @@
-dnl Process this file with autoconf to produce a configure script.
-AC_INIT(src)
-AM_INIT_AUTOMAKE(libical,0.22c)
-
-AM_CONFIG_HEADER(config.h)
-
-dnl Initialize maintainer mode
-AM_MAINTAINER_MODE
-
-dnl Checks for programs.
-AC_PROG_YACC
-AC_PROG_CC
-AM_PROG_LEX
-AC_PROG_LN_S
-AC_PROG_INSTALL
-
-dnl Initialize libtool
-AM_PROG_LIBTOOL
-
-AC_SUBST(AR)
-
-AC_CHECK_PROGS(AR, ar aal, ar)
-AC_CHECK_PROGS(PERL, perl5 perl)
-
-AC_DEFINE(ICAL_ERRORS_ARE_FATAL,1)
-AC_DEFINE(ICAL_SAFESAVES,1)
-AC_DEFINE(ICAL_UNIX_NEWLINE,1)
-
-dnl Checks for libraries.
-dnl Replace `main' with a function in -lical:
-dnl AC_CHECK_LIB(ical, main)
-
-dnl Checks for header files.
-AC_HEADER_STDC
-AC_CHECK_HEADERS(time.h sys/types.h assert.h)
-
-dnl Checks for typedefs, structures, and compiler characteristics.
-AC_C_CONST
-AC_TYPE_SIZE_T
-AC_STRUCT_TM
-
-AC_CACHE_CHECK(for timezone variable, ac_cv_var_timezone,
- AC_TRY_COMPILE([
-#include <time.h>
- ], [
- timezone = 1;
- ], ac_cv_var_timezone=yes, ac_cv_var_timezone=no))
-if test $ac_cv_var_timezone = yes; then
- AC_DEFINE(HAVE_TIMEZONE)
-else
- AC_CACHE_CHECK(for tm_gmtoff in struct tm, ac_cv_struct_tm_gmtoff,
- AC_TRY_COMPILE([
-#include <time.h>
- ], [
- struct tm tm;
- tm.tm_gmtoff = 1;
- ], ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no
-))
- if test $ac_cv_struct_tm_gmtoff = yes; then
- AC_DEFINE(HAVE_TM_GMTOFF)
- else
- AC_ERROR(unable to find a way to determine timezone)
- fi
-fi
-
-
-
-dnl Checks for library functions.
-AC_CHECK_FUNCS(strdup)
-
-dnl Check for perl
-AC_CHECK_PROGS(PERL, perl5 perl)
-
-AC_OUTPUT([
-Makefile
-design-data/Makefile
-doc/Makefile
-scripts/Makefile
-src/Makefile
-src/libical/Makefile
-src/libical/icalversion.h
-src/libicalvcal/Makefile
-test-data/Makefile
-])
-