aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-09-28 17:29:59 +0000
committerIOhannes m zmölnig <zmoelnig@users.sourceforge.net>2011-09-28 17:29:59 +0000
commitf58e51bf9f37aef6d04d4316a0bf16436164d2a9 (patch)
treef9838be467207258e6f349f7e08c0c9128cf6b45
parentb7594213dc071c81e0e5013f3ec8ef17f9023dfb (diff)
forgot configure.ac
svn path=/trunk/externals/zexy/; revision=15380
-rw-r--r--configure.ac179
1 files changed, 179 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
new file mode 100644
index 0000000..3f3f4c0
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,179 @@
+dnl Process this file with autoconf to produce a configure script.
+
+AC_INIT([zexy], [2.2.4], [zmoelnig@iem.at], [zexy], [http://get.puredata.info/zexy])
+AM_INIT_AUTOMAKE([1.10 foreign])
+
+AC_CONFIG_HEADERS([config.h])
+AC_CONFIG_FILES([Makefile src/Makefile abs/Makefile reference/Makefile])
+AC_PROG_LIBTOOL()
+AC_CONFIG_MACRO_DIR([m4])
+
+AC_CONFIG_SRCDIR([src/zexy.c])
+
+IEM_OPERATING_SYSTEM
+ARCH=$(uname -m)
+KERN=$(uname -s)
+
+
+dnl Checks for programs.
+AC_PROG_CC
+
+AC_SUBST(STK)
+AC_SUBST(CFLAGS)
+AC_SUBST(CPPFLAGS)
+AC_SUBST(DEFS)
+AC_SUBST(LFLAGS)
+AC_SUBST(EXTENSION)
+AC_SUBST(LD)
+AC_SUBST(STRIP)
+AC_SUBST(STRIPFLAGS)
+AC_SUBST(LIBRARY_VERSION)
+AC_SUBST(BUILDLIBRARY)
+AC_SUBST(REFERENCEPATH)
+AC_SUBST(PDLIBDIR)
+AC_SUBST(INCLUDES)
+
+AC_ARG_WITH(pdversion,[ --with-pdversion=<ver> enforce a certain pd-version (e.g. 0.37)])
+AC_ARG_WITH(version, [ --with-version=<ver> enforce a certain zexy-version (e.g. 2.0)])
+AC_ARG_WITH(extension,[ --with-extension=<ext> enforce a certain extension for the dynamic library (e.g. dll)])
+AC_ARG_WITH(pd, [ --with-pd=</path/to/pd> where to look for pd-headers and and -libs])
+AC_ARG_ENABLE(library,[ --disable-library split the library into single externals])
+AM_CONDITIONAL([LIBRARY], [test "x${enable_library}" != "xno"])
+
+
+if test "x${libdir}" = "x\${exec_prefix}/lib"; then
+ libdir='${exec_prefix}/lib/pd/extra'
+fi
+
+
+if test "x$with_pd" != "x"; then
+ if test -d "${with_pd}"; then
+ PDPATH=${with_pd}
+ fi
+
+ if test -d "${PDPATH}/src"; then
+ AC_MSG_RESULT([adding ${PDPATH}/src to INCLUDES])
+ INCLUDES="-I${PDPATH}/src ${INCLUDES}"
+
+ AC_MSG_RESULT([adding ${PDPATH}/src to LDFLAGS])
+ LDFLAGS="-L${PDPATH}/src ${LDFLAGS}"
+ else
+ if test -d "${PDPATH}"; then
+ AC_MSG_RESULT([adding ${PDPATH} to INCLUDES])
+ INCLUDES="-I${PDPATH} ${INCLUDES}"
+ fi
+ fi
+ if test -d "${PDPATH}/bin"; then
+ AC_MSG_RESULT([adding ${PDPATH}/bin to LDFLAGS])
+ LDFLAGS="-L${PDPATH}/bin ${LDFLAGS}"
+ else
+ if test -d "${PDPATH}"; then
+ AC_MSG_RESULT([adding ${PDPATH} to LDFLAGS])
+ LDFLAGS="-L${PDPATH} ${LDFLAGS}"
+ fi
+ 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:
+AC_CHECK_LIB(c, main)
+AC_CHECK_LIB(crtdll, fclose)
+
+AC_CHECK_LIB(coldname, lseek)
+AC_CHECK_LIB(kernel32, main)
+AC_CHECK_LIB(user32, main)
+AC_CHECK_LIB(gdi32, main)
+
+dnl Replace `main' with a function in -lm:
+AC_CHECK_LIB(m, main)
+dnl Replace `main' with a function in -lpthread:
+dnl AC_CHECK_LIB(pthread, main)
+dnl Replace `main' with a function in -lstk:
+dnl AC_CHECK_LIB(stk, main, STK=yes)
+
+AC_CHECK_LIB(pd, nullfn)
+
+AC_CHECK_LIB(regex, regcomp)
+
+
+dnl Checks for header files.
+AC_HEADER_STDC
+AC_CHECK_HEADERS(stdlib.h stdio.h string.h math.h time.h sys/time.h regex.h alloca.h)
+
+dnl Checks for typedefs, structures, and compiler characteristics.
+AC_HEADER_TIME
+
+dnl Checks for library functions.
+AC_FUNC_MMAP
+AC_CHECK_FUNCS(select socket strerror)
+
+IEM_CHECK_FAT(ARCH_FLAG)
+AC_SUBST(ARCH_FLAG)
+
+dnl check for "-mms-bitfields" cflag
+dnl why is there no generic compiler-check for a given flag ?
+dnl it would make things so easy: AC_CHECK_FLAG([-mms-bitfields],,)
+AC_CHECK_CFLAGS([-mms-bitfields])
+
+IEM_CHECK_SIMD
+IEM_CHECK_LPT
+
+AC_MSG_CHECKING([extension])
+if test "x$with_extension" != "x"
+then
+ EXTENSION=$with_extension
+else
+ case "$KERN" in
+ Darwin)
+ EXTENSION=pd_drawin
+ ;;
+ Linux)
+ EXTENSION=pd_linux
+ ;;
+ IRIX64)
+ EXTENSION=pd_irix6
+ ;;
+ IRIX32)
+ EXTENSION=pd_irix5
+ ;;
+ IRIX64)
+ EXTENSION=pd_irix6
+ ;;
+ *CYGWIN*)
+ EXTENSION=dll
+ ;;
+ *MINGW*)
+ EXTENSION=dll
+ ;;
+ *)
+ EXTENSION=pd_linux
+ ;;
+ esac
+fi
+AC_MSG_RESULT([$EXTENSION])
+
+
+AC_CHECK_HEADERS([pd/m_pd.h m_pd.h], ,
+ AC_ERROR([m_pd.h is desperately needed!
+ install pd and/or use
+ "--with-pd=</path/to/pd/>" or
+ "--includedir=</path/to/pd/src/>"]))
+
+AC_OUTPUT()