[PD-cvs] externals/zexy/src configure.ac,1.21,1.22

IOhannes m zmölnig zmoelnig at users.sourceforge.net
Mon Oct 2 17:24:50 CEST 2006


Update of /cvsroot/pure-data/externals/zexy/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29209

Modified Files:
	configure.ac 
Log Message:
removed redundant tests.
hopefully a bit more stable in detecting w32-setups


Index: configure.ac
===================================================================
RCS file: /cvsroot/pure-data/externals/zexy/src/configure.ac,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** configure.ac	28 Sep 2006 10:01:01 -0000	1.21
--- configure.ac	2 Oct 2006 15:24:48 -0000	1.22
***************
*** 52,55 ****
--- 52,79 ----
  
  
+ if test "x$with_pd" != "x"; then
+  if test -d "${with_pd}/src"; then
+   INCLUDES="-I${with_pd}/src ${INCLUDES}"
+  fi
+  if test -d "${with_pd}/bin"; then
+   LDFLAGS="-L${with_pd}/bin ${LDFLAGS}"
+  fi
+ fi
+ 
+ if test $includedir
+ then
+  for id in $includedir
+  do
+   if test -d $id; then INCLUDES="-I$id $INCLUDES"; fi
+  done
+ fi
+ if test $libdir
+ then
+  for id in $libdir
+  do
+   if test -d $id; then LDFLAGS="-L$id $LDFLAGS"; fi
+  done
+ fi
+ 
  dnl Checks for libraries.
  dnl Replace `main' with a function in -lc:
***************
*** 80,118 ****
  fi
  
- if test "x$with_pd" != "x"; then
-  if test -d "${with_pd}/src"; then
-   INCLUDES="-I${with_pd}/src ${INCLUDES}"
-  fi
-  if test -d "${with_pd}/bin"; then
-   LFLAGS="-L${with_pd}/bin ${LFLAGS}"
-  fi
- fi
- 
- if test $includedir
- then
-  for id in $includedir
-  do
-   if test -d $id; then INCLUDES="-I$id $INCLUDES"; fi
-  done
- fi
- if test $libdir
- then
-  for id in $libdir
-  do
-   if test -d $id; then LFLAGS="-L$id $LFLAGS"; fi
-  done
- fi
- 
- if test $includedir
- then
-  for id in $includedir
-  do
-    if test -d $id
-    then 
-     INCLUDES="-I$id $INCLUDES"
-    fi
-  done
- fi
- 
  AC_CHECK_LIB(pd, nullfn)
  
--- 104,107 ----
***************
*** 311,328 ****
  then
    LD=${CC}
!   LDFLAGS="-shared pd.dll"
    EXT=dll
- else
-   PDLIBDIR="/lib/pd"
- dnl this is handled by AC_CHECK_LIB above
  fi
  
  AC_CHECK_LDFLAGS([-shared pd.dll])
  
- 
- 
- 
- 
- 
  if test `uname -s` = IRIX64; 
  then
--- 300,309 ----
  then
    LD=${CC}
! #  LDFLAGS="-shared pd.dll"
    EXT=dll
  fi
  
  AC_CHECK_LDFLAGS([-shared pd.dll])
  
  if test `uname -s` = IRIX64; 
  then
***************
*** 412,417 ****
  
  LFLAGS=${LDFLAGS}
- 
  AC_OUTPUT(Make.config)
  
  #rm -f conftest.*
--- 393,399 ----
  
  LFLAGS=${LDFLAGS}
  AC_OUTPUT(Make.config)
  
+ touch zexyconf.h
+ 
  #rm -f conftest.*





More information about the Pd-cvs mailing list