diff GEMBASSY-1.0.3/m4/general.m4 @ 2:8947fca5f715 draft default tip

Uploaded
author ktnyt
date Fri, 26 Jun 2015 05:21:44 -0400
parents 84a17b3fad1f
children
line wrap: on
line diff
--- a/GEMBASSY-1.0.3/m4/general.m4	Fri Jun 26 05:20:29 2015 -0400
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,32 +0,0 @@
-AC_DEFUN([CHECK_GENERAL],
-#
-# Handle general setup e.g. documentation directory
-#
-[AC_MSG_CHECKING(if docroot is given)
-AC_ARG_WITH([docroot],
-    [AS_HELP_STRING([--with-docroot=DIR],
-        [root directory path of documentation (defaults to none)])],
-[if test "$withval" != no ; then
-  AC_MSG_RESULT(yes)
-  CPPFLAGS="$CPPFLAGS -DDOC_ROOT=\\\"$withval\\\""
-fi], [
-AC_MSG_RESULT(no)
-])
-]
-
-
-# GCC profiling
-[AC_MSG_CHECKING(if gcc profiling is selected)
-AC_ARG_WITH([gccprofile],
-    [AS_HELP_STRING([--with-gccprofile], [selects profiling])],
-[if test "$withval" != no ; then
-  AC_MSG_RESULT(yes)
-  CFLAGS="$CFLAGS -g -pg"
-  LDFLAGS="$LDFLAGS -pg"
-fi], [
-AC_MSG_RESULT(no)
-])
-
-]
-)
-