mingwrap -> mingcc

Dimitrie O. Paun dpaun at rogers.com
Wed Dec 18 00:38:41 CST 2002


Hi,

I know this is a real off beat request: rename mingwrap to mingcc.
It is even so much stranger as I named the thing mingwrap. But to
be honest, I never liked the name, I think it is misleading.

In good Unix tradition, C compilers should be named *cc. As such,
mingcc seems a lot more appropriate. This thing is brand new
(in fact, it's working only in my tree at the moment), so I think
we can still rename it.

If you think this is acceptable, please do:

patch -p0 < mingcc.diff
cp tools/mingwrap.c tools/mingcc.c
cvs rm -f tools/mingwrap.c
cvs add -m tools/mingcc.c
cvs ci tools -m "Rename mingwrap to mingcc."

ChangeLog
  Rename mingwrap to mingcc.

Index: tools/Makefile.in
===================================================================
RCS file: /var/cvs/wine/tools/Makefile.in,v
retrieving revision 1.29
diff -u -r1.29 Makefile.in
--- tools/Makefile.in	15 Dec 2002 01:16:08 -0000	1.29
+++ tools/Makefile.in	18 Dec 2002 06:17:21 -0000
@@ -9,14 +9,14 @@
 	bin2res \
 	fnt2bdf \
 	makedep \
-	mingwrap \
+	mingcc \
 	winewrap
 
 C_SRCS = \
 	bin2res.c \
 	fnt2bdf.c \
 	makedep.c \
-	mingwrap.c \
+	mingcc.c \
 	winewrap.c
 
 SUBDIRS = \
@@ -48,8 +48,8 @@
 bin2res: bin2res.o
 	$(CC) $(CFLAGS) -o bin2res bin2res.o
 
-mingwrap: mingwrap.o
-	$(CC) $(CFLAGS) -o mingwrap mingwrap.o
+mingcc: mingcc.o
+	$(CC) $(CFLAGS) -o mingcc mingcc.o
 
 winewrap: winewrap.o
 	$(CC) $(CFLAGS) -o winewrap winewrap.o
@@ -57,11 +57,11 @@
 install::
 	$(MKINSTALLDIRS) $(bindir) $(mandir)/man$(prog_manext)
 	$(INSTALL_SCRIPT) $(SRCDIR)/winemaker $(bindir)/winemaker
-	$(INSTALL_PROGRAM) mingwrap $(bindir)/mingwrap
+	$(INSTALL_PROGRAM) mingcc $(bindir)/mingcc
 	$(INSTALL_PROGRAM) winewrap $(bindir)/winewrap
 	$(INSTALL_DATA) $(SRCDIR)/winemaker.man $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
 
 uninstall::
-	$(RM) $(bindir)/winemaker $(bindir)/mingwrap $(bindir)/winewrap $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
+	$(RM) $(bindir)/winemaker $(bindir)/mingcc $(bindir)/winewrap $(mandir)/man$(prog_manext)/winemaker.$(prog_manext)
 
 ### Dependencies:


-- 
Dimi.




More information about the wine-patches mailing list