mirror of
https://github.com/rkd77/elinks.git
synced 2025-01-03 14:57:44 -05:00
Added SEE_CFLAGS to the Makefile.config. Use SEE_CFLAGS only when necessary.
This commit is contained in:
parent
505d02525f
commit
cf86e2e72f
@ -83,6 +83,7 @@ PYTHON_LIBS = @PYTHON_LIBS@
|
|||||||
RANLIB = @RANLIB@
|
RANLIB = @RANLIB@
|
||||||
RUBY_CFLAGS = @RUBY_CFLAGS@
|
RUBY_CFLAGS = @RUBY_CFLAGS@
|
||||||
RUBY_LIBS = @RUBY_LIBS@
|
RUBY_LIBS = @RUBY_LIBS@
|
||||||
|
SEE_CFLAGS = @SEE_CFLAGS@
|
||||||
SPARSE = @SPARSE@
|
SPARSE = @SPARSE@
|
||||||
SPIDERMONKEY_CFLAGS = @SPIDERMONKEY_CFLAGS@
|
SPIDERMONKEY_CFLAGS = @SPIDERMONKEY_CFLAGS@
|
||||||
SPIDERMONKEY_LIBS = @SPIDERMONKEY_LIBS@
|
SPIDERMONKEY_LIBS = @SPIDERMONKEY_LIBS@
|
||||||
|
@ -595,7 +595,6 @@ if test "$enable_see" = "yes"; then
|
|||||||
SEE_LIBS="`$SEE_CONFIG --libs`"
|
SEE_LIBS="`$SEE_CONFIG --libs`"
|
||||||
SEE_CFLAGS="`$SEE_CONFIG --cppflags`"
|
SEE_CFLAGS="`$SEE_CONFIG --cppflags`"
|
||||||
LIBS="$SEE_LIBS $LIBS"
|
LIBS="$SEE_LIBS $LIBS"
|
||||||
CPPFLAGS="$CPPFLAGS $SEE_CFLAGS"
|
|
||||||
EL_CONFIG(CONFIG_ECMASCRIPT_SEE, [SEE])
|
EL_CONFIG(CONFIG_ECMASCRIPT_SEE, [SEE])
|
||||||
AC_SUBST(SEE_CFLAGS)
|
AC_SUBST(SEE_CFLAGS)
|
||||||
else
|
else
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
top_builddir=../..
|
top_builddir=../..
|
||||||
include $(top_builddir)/Makefile.config
|
include $(top_builddir)/Makefile.config
|
||||||
INCLUDES += $(SPIDERMONKEY_CFLAGS)
|
INCLUDES += $(SPIDERMONKEY_CFLAGS) $(SEE_CFLAGS)
|
||||||
|
|
||||||
SUBDIRS-$(CONFIG_ECMASCRIPT_SEE) += see
|
SUBDIRS-$(CONFIG_ECMASCRIPT_SEE) += see
|
||||||
SUBDIRS-$(CONFIG_ECMASCRIPT_SMJS) += spidermonkey
|
SUBDIRS-$(CONFIG_ECMASCRIPT_SMJS) += spidermonkey
|
||||||
|
@ -1,5 +1,6 @@
|
|||||||
top_builddir=../../..
|
top_builddir=../../..
|
||||||
include $(top_builddir)/Makefile.config
|
include $(top_builddir)/Makefile.config
|
||||||
|
INCLUDES += $(SEE_CFLAGS)
|
||||||
|
|
||||||
OBJS = checktype.o document.o form.o input.o location.o navigator.o strings.o unibar.o window.o
|
OBJS = checktype.o document.o form.o input.o location.o navigator.o strings.o unibar.o window.o
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user