summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--config.h2
-rw-r--r--config.mk2
2 files changed, 2 insertions, 2 deletions
diff --git a/config.h b/config.h
index b1c2cb5..cafbaf1 100644
--- a/config.h
+++ b/config.h
@@ -34,7 +34,7 @@ static Parameter defconfig[ParameterLast] = {
[HideBackground] = { { .i = 0 }, },
[Inspector] = { { .i = 0 }, },
[Java] = { { .i = 1 }, },
- [JavaScript] = { { .i = 0 }, },
+ [JavaScript] = { { .i = 1 }, },
[KioskMode] = { { .i = 0 }, },
[LoadImages] = { { .i = 1 }, },
[MediaManualPlay] = { { .i = 1 }, },
diff --git a/config.mk b/config.mk
index a888436..0663e9d 100644
--- a/config.mk
+++ b/config.mk
@@ -23,7 +23,7 @@ LIBS = -L$(X11LIB) -lX11 $(GTKLIB) -lgthread-2.0
# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -DWEBEXTDIR=\"${LIBPREFIX}\" \
-D_DEFAULT_SOURCE -DGCR_API_SUBJECT_TO_CHANGE
-SURF_CFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS)
+SURF_CFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS) -g
SURF_LDFLAGS = $(LIBS) $(LDFLAGS)
EXTINC = `pkg-config --cflags webkit2gtk-web-extension-4.0`