aboutsummaryrefslogtreecommitdiffstats
path: root/macros/psiconv.m4
diff options
context:
space:
mode:
authorJP Rosevear <jpr@src.gnome.org>2004-10-02 00:50:41 +0800
committerJP Rosevear <jpr@src.gnome.org>2004-10-02 00:50:41 +0800
commitacb88c209ef296564123666cdc18c787a0f91082 (patch)
treee14476f6aad71d7fd4365f557704f84e1f56c7bd /macros/psiconv.m4
parent8820b3da918a837632cc44dbd589aa3eae2d74e4 (diff)
downloadgsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.gz
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.bz2
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.lz
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.xz
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.tar.zst
gsoc2013-evolution-acb88c209ef296564123666cdc18c787a0f91082.zip
Remove macros dir, we haven't needed it in ages.
svn path=/trunk/; revision=27448
Diffstat (limited to 'macros/psiconv.m4')
-rw-r--r--macros/psiconv.m453
1 files changed, 0 insertions, 53 deletions
diff --git a/macros/psiconv.m4 b/macros/psiconv.m4
deleted file mode 100644
index eaf56f43ac..0000000000
--- a/macros/psiconv.m4
+++ /dev/null
@@ -1,53 +0,0 @@
-dnl
-dnl PSICONV_INIT
-dnl
-
-AC_DEFUN([PSICONV_INIT],[
- AC_SUBST(PSICONV_LIBS)
- AC_SUBST(PSICONV_CFLAGS)
-
- AC_ARG_WITH(psiconv-includes,
- [ --with-psiconv-includes Specify location of Psiconv headers],[
- psiconv_cflags="-I$withval"
- ])
-
- AC_ARG_WITH(psiconv-libs,
- [ --with-psiconv-libs Specify location of Psiconv libs],[
- psiconv_libs="-L$withval"
- ])
-
- AC_ARG_WITH(psiconv,
- [ --with-psiconv Enable/disable Psiconv support],
- if test x$withval = xyes; then
- want_psiconv=yes
- else
- if test "x$withval" = xno; then
- want_psiconv=no
- else
- want_psiconv=yes
- fi
- fi,
- want_psiconv=yes)
-
-
- if test "$want_psiconv" = "yes"; then
- ac_save_CFLAGS="$CFLAGS"
- ac_save_LIBS="$LIBS"
- CFLAGS="$CFLAGS $psiconv_cflags"
- LIBS="$LIBS $psiconv_libs"
- AC_CHECK_LIB(psiconv,psiconv_parse,want_psiconv=yes,want_psiconv=no)
- CFLAGS="$ac_save_CFLAGS"
- LIBS="$ac_save_LIBS"
- fi
-
- if test "$want_psiconv" = "yes"; then
- PSICONV_LIBS="${psiconv_libs} -lpsiconv"
- PSICONV_CFLAGS="$psiconv_cflags"
- with_psiconv=true
- else
- PSICONV_LIBS=""
- PSICONV_CFLAGS=""
- with_psiconv=false
- fi
- AM_CONDITIONAL(WITH_PSICONV,$with_psiconv)
-])