Diff for /rpl/configure.ac between versions 1.2 and 1.3

version 1.2, 2011/10/02 14:14:29 version 1.3, 2011/10/03 15:57:51
Line 90  fi Line 90  fi
 dnl Checks for Fortran 77 compiler  dnl Checks for Fortran 77 compiler
 AC_PROG_F77(gfortran)  AC_PROG_F77(gfortran)
   
 if test "$F77" != gfortran -a "$F77" != gfortran-4.4; then  
     AC_MSG_ERROR([Cannot find gfortran! You have to install it.])  
 fi  
   
 dnl Check for Fortran 9* compiler  dnl Check for Fortran 9* compiler
 AC_PROG_FC(gfortran)  AC_PROG_FC(gfortran)
   
 if test "$FC" != gfortran -a "$FC" != gfortran-4.4; then  if test x"$F77" == x; then
       AC_MSG_ERROR([Cannot find gfortran! You have to install it.])
   fi
   
   if test x"$FC" == x; then
     AC_MSG_ERROR([Cannot find gfortran! You have to install it.])      AC_MSG_ERROR([Cannot find gfortran! You have to install it.])
 fi  fi
   
Line 164  fi Line 164  fi
   
 LDFLAGS="$LDFLAGS $ABI"  LDFLAGS="$LDFLAGS $ABI"
   
   AC_ARG_WITH(rpltools,
   [  --with-rpltools         specify rpltools path used for cross compilation],[
   if test "$with_rpltools" = "no" -o "$with_rpltools" = yes; then
       AC_MSG_ERROR([You have to specify rpltools path !])
   else
       RPLTOOLS=$with_rpltools
   fi],[
       RPLTOOLS=\$\(top_builddir\)
       ]
   )
   
   AC_SUBST(RPLTOOLS)
   
 dnl RPL/CAS support  dnl RPL/CAS support
 AC_ARG_WITH(rplcas,  AC_ARG_ENABLE(rplcas,
 [  --with-rplcas           compile rplcas (default=no)],[  [  --enable-rplcas         compile rplcas (default=no)],[
 if test "$with-rplcas" = "no"; then  if test "$enableval" = "no"; then
     RPLCAS=-URPLCAS      RPLCAS=-URPLCAS
     LIBRPLCAS=      LIBRPLCAS=
 else  else
Line 207  fi],[ Line 220  fi],[
 AC_ARG_ENABLE(sysv-ipcs,  AC_ARG_ENABLE(sysv-ipcs,
 [  --enable-sysv-ipcs      use SystemV IPC functions [[default=guessed]]], [  [  --enable-sysv-ipcs      use SystemV IPC functions [[default=guessed]]], [
 if test "$enableval" = "no"; then  if test "$enableval" = "no"; then
     IPCS_SYSV=no      IPCS_SYSV=-UIPCS_SYSV
       POSIX_IPCS=no
 else  else
     IPCS_SYSV=yes      IPCS_SYSV=-DIPCS_SYSV
       POSIX_IPCS=yes
 fi],  fi],
 REG=$LDFLAGS  REG=$LDFLAGS
   POSIX_IPCS=guessed
 LDFLAGS=-lrt  LDFLAGS=-lrt
 [AC_MSG_CHECKING([for POSIX semaphores and shared objects])  [AC_MSG_CHECKING([for POSIX semaphores and shared objects])
 AC_RUN_IFELSE(  AC_RUN_IFELSE(
Line 234  fd = shm_open(sem , O_CREAT | O_RDWR, S_ Line 250  fd = shm_open(sem , O_CREAT | O_RDWR, S_
 LDFLAGS=$REG  LDFLAGS=$REG
 )  )
   
 if test "$IPCS_SYSV" = "-UIPCS_SYSV"; then  if test "$IPCS_SYSV" = "-UIPCS_SYSV" -a "$POSIX_IPCS" = "guessed"; then
 REG=$LDFLAGS  REG=$LDFLAGS
 LDFLAGS=-pthread  LDFLAGS=-pthread
 AC_MSG_CHECKING([for POSIX anonymous semaphores])  AC_MSG_CHECKING([for POSIX anonymous semaphores])
Line 1011  fi Line 1027  fi
   
 AC_SUBST(GNUPLOT_COMPILATION)  AC_SUBST(GNUPLOT_COMPILATION)
   
 HOST=$host  HOST=$target
 AC_SUBST(HOST)  AC_SUBST(HOST)
   
 my_save_cflags="$CFLAGS"  my_save_cflags="$CFLAGS"

Removed from v.1.2  
changed lines
  Added in v.1.3


CVSweb interface <joel.bertrand@systella.fr>