summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 21:41:41 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1998-10-21 21:41:41 +0000
commit05d7379a3517a34ae595b5375c71973a0041d7a3 (patch)
treeaee8298fe46c18f6ef1068d08caeb626aa90d466
parent85b225865e2c2ec11f6474527ea380d09fb8abf8 (diff)
Autoconf sucks - can't redefine BORDER_WIDTH to another value in config.h...
Removed --enable-windows-style option. git-svn-id: file:///fltk/svn/fltk/trunk@47 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--README1
-rw-r--r--configh.in6
-rw-r--r--configure.in8
3 files changed, 5 insertions, 10 deletions
diff --git a/README b/README
index be44883f6..d6eff6db5 100644
--- a/README
+++ b/README
@@ -127,7 +127,6 @@ BUILDING AND INSTALLING FLTK UNDER UNIX
--enable-debug - Enable debugging code & symbols
--enable-shared - Enable generation of shared libraries
- --enable-windows-style - Enable the Microsoft Windows "look-n-feel"
--bindir=/path - Set the location for executables
[default = /usr/local/bin]
diff --git a/configh.in b/configh.in
index 94a2eac3d..0da0f94e1 100644
--- a/configh.in
+++ b/configh.in
@@ -1,5 +1,5 @@
/*
- * "$Id: configh.in,v 1.5 1998/10/21 17:57:41 mike Exp $"
+ * "$Id: configh.in,v 1.6 1998/10/21 21:41:41 mike Exp $"
*
* Configuration file for the Fast Light Tool Kit (FLTK).
* @configure_input@
@@ -34,7 +34,7 @@
* at runtime by redefining the boxtypes using Fl::set_boxtype().
*/
-#define BORDER_WIDTH @BORDER_WIDTH@
+#define BORDER_WIDTH 3
/*
* HAVE_GL:
@@ -139,5 +139,5 @@
#define HAVE_LIBJPEG 0
/*
- * End of "$Id: configh.in,v 1.5 1998/10/21 17:57:41 mike Exp $".
+ * End of "$Id: configh.in,v 1.6 1998/10/21 21:41:41 mike Exp $".
*/
diff --git a/configure.in b/configure.in
index cb5291ecb..045098d17 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl# -*- sh -*-
dnl# the "configure" script is made from this by running GNU "autoconf"
dnl#
-dnl# "$Id: configure.in,v 1.7 1998/10/21 20:56:42 mike Exp $"
+dnl# "$Id: configure.in,v 1.8 1998/10/21 21:41:41 mike Exp $"
dnl#
dnl# for the Fast Light Tool Kit (FLTK).
dnl#
@@ -66,9 +66,6 @@ if eval "test x$enable_shared = xyes"; then
;;
esac
fi])
-AC_ARG_ENABLE(winstyle, [ --enable-windows-style turn on windows look-n-feel [default=no]],if eval "test x$enable_winstyle = xyes"; then
- BORDER_WIDTH=2
-fi)
if test -n "$CFLAGS"; then
CFLAGS="$DEBUGFLAG $CFLAGS"
@@ -138,7 +135,6 @@ fi
MAKEDEPEND="\$(CXX) -M"
-AC_SUBST(BORDER_WIDTH)
AC_SUBST(LIBNAME)
AC_SUBST(LIBCOMMAND)
AC_SUBST(MAKEDEPEND)
@@ -146,5 +142,5 @@ AC_CONFIG_HEADER(config.h:configh.in)
AC_OUTPUT(makeinclude)
dnl#
-dnl# End of "$Id: configure.in,v 1.7 1998/10/21 20:56:42 mike Exp $".
+dnl# End of "$Id: configure.in,v 1.8 1998/10/21 21:41:41 mike Exp $".
dnl#