mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Add checks for efltk
Small modification in pkg.m4 so returned variables does not have ending spaces s/DEBUG/DEBUG_PCRE in pcre.c so it does not gets included when ede is compiled with debug flags
This commit is contained in:
parent
01268a951b
commit
dec8dc3c4e
10
Jamconfig.in
10
Jamconfig.in
@ -32,6 +32,8 @@ MV ?= mv ;
|
|||||||
MKDIRS ?= "mkdir -p" ;
|
MKDIRS ?= "mkdir -p" ;
|
||||||
LINKCMD ?= "ln -s" ;
|
LINKCMD ?= "ln -s" ;
|
||||||
|
|
||||||
|
EDE_VERSION ?= "@EDE_VERSION@" ;
|
||||||
|
|
||||||
# directories used by build system
|
# directories used by build system
|
||||||
PREFIX ?= "$(prefix)" ;
|
PREFIX ?= "$(prefix)" ;
|
||||||
EDEBINDIR ?= "$(bindir)" ;
|
EDEBINDIR ?= "$(bindir)" ;
|
||||||
@ -39,9 +41,7 @@ EDECONFIGDIR ?= "$(datadir)/config" ;
|
|||||||
EDEICONDIR ?= "$(datadir)/icons" ;
|
EDEICONDIR ?= "$(datadir)/icons" ;
|
||||||
EDEDESKTOPDIR ?= "$(datadir)/desktop" ;
|
EDEDESKTOPDIR ?= "$(datadir)/desktop" ;
|
||||||
EDEMIMEDIR ?= "$(datadir)/mime" ;
|
EDEMIMEDIR ?= "$(datadir)/mime" ;
|
||||||
EDEDOCDIR ?= "$(docdir)/ede-2.0.0" ;
|
EDEDOCDIR ?= "$(docdir)/ede-$(EDE_VERSION)" ;
|
||||||
|
|
||||||
EDE_VERSION ?= "@EDE_VERSION@" ;
|
|
||||||
|
|
||||||
OPTIMFLAGS ?= @EDE_OPTIM_FLAGS@ ;
|
OPTIMFLAGS ?= @EDE_OPTIM_FLAGS@ ;
|
||||||
DEBUGFLAGS ?= @EDE_DEBUG_FLAGS@ ;
|
DEBUGFLAGS ?= @EDE_DEBUG_FLAGS@ ;
|
||||||
@ -75,8 +75,8 @@ COMPOSITEINCLUDE ?= @COMPOSITE_CFLAGS@ ;
|
|||||||
COMPOSITELIB ?= @COMPOSITE_LIBS@ ;
|
COMPOSITELIB ?= @COMPOSITE_LIBS@ ;
|
||||||
|
|
||||||
# HAL
|
# HAL
|
||||||
HALINCLUDE ?= @HAL_CFLAGS@
|
HALINCLUDE ?= @HAL_CFLAGS@ ;
|
||||||
HALLIB ?= @HAL_LIBS@
|
HALLIB ?= @HAL_LIBS@ ;
|
||||||
|
|
||||||
# do not touch this
|
# do not touch this
|
||||||
JAMCONFIG_READ = "yes" ;
|
JAMCONFIG_READ = "yes" ;
|
||||||
|
27
configure.in
27
configure.in
@ -23,7 +23,7 @@ dnl PACKAGE_VERSION is filled from AC_INIT
|
|||||||
EDE_VERSION=$PACKAGE_VERSION
|
EDE_VERSION=$PACKAGE_VERSION
|
||||||
|
|
||||||
if test "$prefix" = NONE; then
|
if test "$prefix" = NONE; then
|
||||||
EDE_INSTALL_DIR="/usr/local"
|
EDE_INSTALL_DIR="/opt/ede"
|
||||||
else
|
else
|
||||||
EDE_INSTALL_DIR="$prefix"
|
EDE_INSTALL_DIR="$prefix"
|
||||||
fi
|
fi
|
||||||
@ -38,7 +38,7 @@ AC_ARG_ENABLE(debug, AC_HELP_STRING([--enable-debug], [turn on debugging support
|
|||||||
AC_ARG_ENABLE(profile, AC_HELP_STRING([--enable-profile], [turn on profiling support (default=no)]),, enable_profile=no)
|
AC_ARG_ENABLE(profile, AC_HELP_STRING([--enable-profile], [turn on profiling support (default=no)]),, enable_profile=no)
|
||||||
AC_ARG_ENABLE(shape, AC_HELP_STRING([--enable-shape], [enable XShape extension (default=yes)]),, enable_shape=yes)
|
AC_ARG_ENABLE(shape, AC_HELP_STRING([--enable-shape], [enable XShape extension (default=yes)]),, enable_shape=yes)
|
||||||
AC_ARG_ENABLE(composite, AC_HELP_STRING([--enable-composite], [enable XComposite extension (default=yes)]),, enable_composite=yes)
|
AC_ARG_ENABLE(composite, AC_HELP_STRING([--enable-composite], [enable XComposite extension (default=yes)]),, enable_composite=yes)
|
||||||
AC_ARG_ENABLE(hal, AC_HELP_STRING([--enable-hal], [enable HAL usage (default=yes)]),, enable_hal=yes)
|
AC_ARG_ENABLE(hal, AC_HELP_STRING([--enable-hal], [enable HAL support (default=yes)]),, enable_hal=yes)
|
||||||
|
|
||||||
AC_PROG_CXX
|
AC_PROG_CXX
|
||||||
AC_PROG_CPP
|
AC_PROG_CPP
|
||||||
@ -127,6 +127,26 @@ else
|
|||||||
AC_MSG_ERROR([You don't have FLTK installed. To compile EDE, you will need it.])
|
AC_MSG_ERROR([You don't have FLTK installed. To compile EDE, you will need it.])
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
AC_PATH_PROG(EFLTK_CONFIG, efltk-config)
|
||||||
|
if test -n "$EFLTK_CONFIG"; then
|
||||||
|
efltk_version=`$EFLTK_CONFIG --version`
|
||||||
|
|
||||||
|
AC_MSG_CHECKING([for eFLTK version >= 2.0.4])
|
||||||
|
|
||||||
|
case "$efltk_version" in ["2.0."[456789]])
|
||||||
|
AC_MSG_RESULT(yes)
|
||||||
|
;;
|
||||||
|
*)
|
||||||
|
AC_MSG_ERROR([Looks like you have an older eFLTK version ($efltk_version). Required is >= 2.0.4])
|
||||||
|
esac
|
||||||
|
|
||||||
|
EFLTK_CFLAGS=`$EFLTK_CONFIG --cxxflags`
|
||||||
|
EFLTK_LIBS_NOIMAGES=`$EFLTK_CONFIG --ldflags`
|
||||||
|
EFLTK_LIBS=`$EFLTK_CONFIG --use-images --ldflags`
|
||||||
|
else
|
||||||
|
AC_MSG_ERROR([You don't have eFLTK installed. To compile EDE, you will need it.])
|
||||||
|
fi
|
||||||
|
|
||||||
EDE_INIT_JAM
|
EDE_INIT_JAM
|
||||||
|
|
||||||
AC_SUBST(EDE_VERSION)
|
AC_SUBST(EDE_VERSION)
|
||||||
@ -135,6 +155,9 @@ AC_SUBST(EDE_DEBUG_FLAGS)
|
|||||||
AC_SUBST(FLTK_CFLAGS)
|
AC_SUBST(FLTK_CFLAGS)
|
||||||
AC_SUBST(FLTK_LIBS)
|
AC_SUBST(FLTK_LIBS)
|
||||||
AC_SUBST(FLTK_LIBS_NOIMAGES)
|
AC_SUBST(FLTK_LIBS_NOIMAGES)
|
||||||
|
AC_SUBST(EFLTK_CFLAGS)
|
||||||
|
AC_SUBST(EFLTK_LIBS_NOIMAGES)
|
||||||
|
AC_SUBST(EFLTK_LIBS)
|
||||||
|
|
||||||
AC_OUTPUT([
|
AC_OUTPUT([
|
||||||
Jamconfig
|
Jamconfig
|
||||||
|
@ -1,3 +1,6 @@
|
|||||||
|
dnl
|
||||||
|
dnl A small modification to remove ending spaces (sz)
|
||||||
|
dnl
|
||||||
|
|
||||||
dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
|
dnl PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
|
||||||
dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
|
dnl defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
|
||||||
@ -41,6 +44,10 @@ AC_DEFUN(PKG_CHECK_MODULES, [
|
|||||||
ifelse([$4], ,echo $$1_PKG_ERRORS,)
|
ifelse([$4], ,echo $$1_PKG_ERRORS,)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
dnl remove ending spaces so jam variables could be accessed nicely
|
||||||
|
$1_CFLAGS=`echo $$1_CFLAGS | sed 's/[ ]*$//g'`
|
||||||
|
$1_LIBS=`echo $$1_LIBS | sed 's/[ ]*$//g'`
|
||||||
|
|
||||||
AC_SUBST($1_CFLAGS)
|
AC_SUBST($1_CFLAGS)
|
||||||
AC_SUBST($1_LIBS)
|
AC_SUBST($1_LIBS)
|
||||||
else
|
else
|
||||||
|
@ -539,7 +539,7 @@ return i + 1;
|
|||||||
/* The code for doing this is held in a separate file that is also included in
|
/* The code for doing this is held in a separate file that is also included in
|
||||||
pcretest.c. It defines a function called print_internals(). */
|
pcretest.c. It defines a function called print_internals(). */
|
||||||
|
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG_PCRE
|
||||||
#include "printint.c"
|
#include "printint.c"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -5611,7 +5611,9 @@ if ((re->options & PCRE_REQCHSET) != 0)
|
|||||||
else printf("Req char = \\x%02x%s\n", ch, caseless);
|
else printf("Req char = \\x%02x%s\n", ch, caseless);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef DEBUG_PCRE
|
||||||
print_internals(re, stdout);
|
print_internals(re, stdout);
|
||||||
|
#endif
|
||||||
|
|
||||||
/* This check is done here in the debugging case so that the code that
|
/* This check is done here in the debugging case so that the code that
|
||||||
was compiled can be seen. */
|
was compiled can be seen. */
|
||||||
|
Loading…
Reference in New Issue
Block a user