7c7bf88263
git-svn-id: https://geany.svn.sourceforge.net/svnroot/geany/trunk@6010 ea778897-0a13-0410-b9d1-a72fbfd435f5
18 lines
455 B
Plaintext
18 lines
455 B
Plaintext
dnl GEANY_CHECK_THE_FORCE
|
|
dnl just for a laugh (it has absolutely no effect)
|
|
AC_DEFUN([GEANY_CHECK_THE_FORCE],
|
|
[
|
|
AC_ARG_ENABLE([the-force],
|
|
[AS_HELP_STRING([--enable-the-force],
|
|
[enable if you are Luke Skywalker and the force is with you [default=no]])],
|
|
[be_luke="$enableval"],
|
|
[be_luke="no"])
|
|
|
|
AC_MSG_CHECKING([whether the force is with you])
|
|
if test "x$be_luke" = "xyes"; then
|
|
AC_MSG_RESULT([yes])
|
|
else
|
|
AC_MSG_RESULT([no])
|
|
fi
|
|
])
|