summaryrefslogtreecommitdiff
path: root/Makefile.config
diff options
context:
space:
mode:
authorFrançois Revel <mmu_man@netsurf-browser.org>2008-08-08 23:47:11 +0000
committerFrançois Revel <mmu_man@netsurf-browser.org>2008-08-08 23:47:11 +0000
commit437b4bddf58776ea9f44b49acf2f68311e744dce (patch)
tree5fd9cbd03d385f86e8d1466276468e42d1641a59 /Makefile.config
parent219f28e5795f617729264e16866d4fe643d126d9 (diff)
downloadnetsurf-437b4bddf58776ea9f44b49acf2f68311e744dce.tar.gz
netsurf-437b4bddf58776ea9f44b49acf2f68311e744dce.tar.bz2
- move BeOS specific config vars to separate section
- added config option for LIBICONV_PLUG, must not be used for BeOS. svn path=/trunk/netsurf/; revision=4966
Diffstat (limited to 'Makefile.config')
-rw-r--r--Makefile.config25
1 files changed, 22 insertions, 3 deletions
diff --git a/Makefile.config b/Makefile.config
index 8765610f3..dad9c0273 100644
--- a/Makefile.config
+++ b/Makefile.config
@@ -28,10 +28,7 @@ NETSURF_USE_MNG := YES
# Use libharu to enable PDF export and GTK printing support. There is no
# auto-detection available for this, as it does not have a pkg-config file
# Valid options: YES, NO
-ifneq ($(TARGET),beos)
-# not yet on BeOS
NETSURF_USE_HARU_PDF := YES
-endif
# Enable stripping the NetSurf binary
# Valid options: YES, NO
@@ -47,6 +44,10 @@ NETSURF_UA_FORMAT_STRING := "NetSurf/%d.%d (%s; %s)"
# by editing the end of gui_init2() in riscos/gui.c
NETSURF_HOMEPAGE := "http://www.netsurf-browser.org/welcome/"
+# Force using glibc internal iconv implementation instead of external libiconv
+# Valid options: YES, NO
+NETSURF_USE_LIBICONV_PLUG := YES
+
# ----------------------------------------------------------------------------
# RISC OS-specific options
# ----------------------------------------------------------------------------
@@ -97,6 +98,24 @@ ifeq ($(TARGET),gtk)
endif
# ----------------------------------------------------------------------------
+# BeOS-specific options
+# ----------------------------------------------------------------------------
+ifeq ($(TARGET),beos)
+
+ # Use James Shaw's librosprite for rendering RISC OS Sprites
+ # Valid options: YES, NO, AUTO
+ NETSURF_USE_ROSPRITE := AUTO
+
+ # Use libharu to enable PDF export and GTK printing support.
+ # Valid options: YES, NO
+ NETSURF_USE_HARU_PDF := NO
+
+ # Force using glibc internal iconv implementation instead of external libiconv
+ # Valid options: YES, NO
+ NETSURF_USE_LIBICONV_PLUG := NO
+endif
+
+# ----------------------------------------------------------------------------
# Amiga-specific options
# ----------------------------------------------------------------------------
ifeq ($(TARGET),amiga)