From 0ea5fc66924303d1bf73ba283a383e2aadee02f2 Mon Sep 17 00:00:00 2001 From: neodarz Date: Sat, 11 Aug 2018 20:21:34 +0200 Subject: Initial commit --- .../code/nelns/acinclude.m4.diff?r1=1.13&r2=1.12 | 61 ++++++++++++++++++++++ 1 file changed, 61 insertions(+) create mode 100644 cvs/cvsweb.cgi/code/nelns/acinclude.m4.diff?r1=1.13&r2=1.12 (limited to 'cvs/cvsweb.cgi/code/nelns/acinclude.m4.diff?r1=1.13&r2=1.12') diff --git a/cvs/cvsweb.cgi/code/nelns/acinclude.m4.diff?r1=1.13&r2=1.12 b/cvs/cvsweb.cgi/code/nelns/acinclude.m4.diff?r1=1.13&r2=1.12 new file mode 100644 index 00000000..f422e54e --- /dev/null +++ b/cvs/cvsweb.cgi/code/nelns/acinclude.m4.diff?r1=1.13&r2=1.12 @@ -0,0 +1,61 @@ + + + +code/nelns/acinclude.m4 - diff - 1.13 + +
[BACK] Return to acinclude.m4 + CVS log [TXT][DIR] Up to Nevrax / code / nelns

Diff for /code/nelns/acinclude.m4 between version 1.12 and 1.13

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
version 1.12, 2002/03/29 10:19:10version 1.13, 2002/04/16 12:01:39
Line 73 
Line 73 
 dnl    Description: check the instalation of the OpenGL library and set the dnl    Description: check the instalation of the OpenGL library and set the
 dnl                 PYTHON_CFLAGS and PYTHON_LIBS variables to use it. dnl                 PYTHON_CFLAGS and PYTHON_LIBS variables to use it.
 dnl dnl
  dnl AM_PATH_CCACHE
  dnl
  dnl    Option:      none.
  dnl    Description: check the instalation of the Ccache utility.
  dnl
 dnl ========================================================================= dnl =========================================================================
  
  
Line 1045 
Line 1050 
 ]) ])
  
  
  # =========================================================================
  # AM_PATH_CCACHE : Ccache checking macros
  
  AC_DEFUN(AM_PATH_CCACHE,
  [
  
  AC_ARG_WITH( ccache,
      [  --with-ccache           use ccache for compiling.],
      [ using_ccache=$with_ccache ]
  )
  
  AC_PATH_PROG(CCACHE, ccache)
  if test "$CCACHE" -a "$using_ccache" = "yes"
  then
      CC="ccache $CC"
      CXX="ccache $CXX"
  fi
  
  ])
  
  
 dnl ========================================================================= dnl =========================================================================
 dnl End of file dnl End of file
  


+
Legend:
+
Removed from v.1.12 
changed lines
 Added in v.1.13
+
+ + + +
+
\ No newline at end of file -- cgit v1.2.1