Unused OPTIONS variable in configure.in

François Gouget fgouget at codeweavers.com
Fri May 25 12:38:13 CDT 2001


   I noticed that OPTIONS is not used anymore in 'configure.in'. I
believe it may have been used to store the --enable-* stuff at one time
but AFAIU this is now stored in 'config.h'. So I propose to remove it
altogether. Or is it set as a side effect of some standard autoconf
macro on some exotic system?
   It's still used to store -D_REENTRANT in Make.rules.in and maybe this
could be cleaned up to. But I did not feel like messing too much with
all the define/include/flags variables :-)

Changelog:

 * configure.in,
   Make.rules.in

   Remove OPTIONS from configure.in


-- 
François Gouget
fgouget at codeweavers.com
-------------- next part --------------
Index: configure.in
===================================================================
RCS file: /home/wine/wine/configure.in,v
retrieving revision 1.201
diff -u -r1.201 configure.in
--- configure.in	2001/05/16 20:56:05	1.201
+++ configure.in	2001/05/24 22:02:47
@@ -34,8 +34,6 @@
 AC_ARG_WITH(reentrant-x,
 [  --without-reentrant-x   compile for use with non-reentrant X libraries])
 
-AC_SUBST(OPTIONS)
-
 if test "$DEBUG_MSGS" = "no"
 then
     AC_DEFINE(NO_DEBUG_MSGS)
Index: Make.rules.in
===================================================================
RCS file: /home/wine/wine/Make.rules.in,v
retrieving revision 1.85
diff -u -r1.85 Make.rules.in
--- Make.rules.in	2001/04/16 19:36:12	1.85
+++ Make.rules.in	2001/05/24 22:02:30
@@ -25,7 +25,7 @@
 CC        = @CC@
 CPP       = @CPP@
 CFLAGS    = @CFLAGS@
-OPTIONS   = @OPTIONS@ -D_REENTRANT
+OPTIONS   = -D_REENTRANT
 X_CFLAGS  = @X_CFLAGS@
 X_LIBS    = @X_LIBS@
 XLIB      = @X_PRE_LIBS@ @XLIB@ @X_EXTRA_LIBS@


More information about the wine-patches mailing list