[BACK]Return to configure.in CVS log [TXT][DIR] Up to [local] / OpenXM / src / asir-doc

Diff for /OpenXM/src/asir-doc/configure.in between version 1.1 and 1.3

version 1.1, 2004/06/30 12:13:05 version 1.3, 2007/09/29 05:29:10
Line 1 
Line 1 
 dnl  $OpenXM$  dnl  $OpenXM: OpenXM/src/asir-doc/configure.in,v 1.2 2007/09/29 05:17:08 takayama Exp $
 dnl  If you change this file, do not forget to run autoconf and rm .configure_done  dnl  If you change this file, do not forget to run autoconf and rm .configure_done
   
   
 AC_INIT(extract_func.c)  AC_INIT(extract_func.c)
 AC_PROG_CC  AC_PROG_CC
   
   AC_TRY_RUN([#include "stdlib.h"
               main() {
                 int r;
                 r=system("ptex -kanji=euc -version");
                 printf("ptex status=%d\n",r);
                 if (r == 0) exit(0); else exit(-1);
              }],
    AC_SUBST(PTEX,["ptex -kanji=euc"]),
    AC_SUBST(PTEX,["ptex"]),
    AC_SUBST(PTEX,["ptex"])
   )
   
 AC_OUTPUT(Makefile)  AC_OUTPUT(Makefile)
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.3

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>