* Makefile.in: Add define to CXXFLAGS.
This commit is contained in:
parent
9b02812029
commit
e05f3227be
|
@ -1,3 +1,7 @@
|
||||||
|
2001-12-11 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
|
* Makefile.in: Add define to CXXFLAGS.
|
||||||
|
|
||||||
2001-12-03 Christopher Faylor <cgf@redhat.com>
|
2001-12-03 Christopher Faylor <cgf@redhat.com>
|
||||||
|
|
||||||
* cygcheck.cc (usage): Add -c description.
|
* cygcheck.cc (usage): Add -c description.
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
# Makefile for Cygwin utilities
|
# Makefile for Cygwin utilities
|
||||||
# Copyright 1996, 1997, 1998, 1999, 2000 Cygnus Solutions.
|
# Copyright 1996, 1997, 1998, 1999, 2000, 2001 Red Hat, Inc.
|
||||||
|
|
||||||
# This file is part of Cygwin.
|
# This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -31,7 +31,7 @@ CXX:=@CXX@
|
||||||
CXX_FOR_TARGET:=$(CXX)
|
CXX_FOR_TARGET:=$(CXX)
|
||||||
|
|
||||||
CFLAGS:=@CFLAGS@
|
CFLAGS:=@CFLAGS@
|
||||||
CXXFLAGS:=@CXXFLAGS@ -fno-exceptions -fno-rtti
|
CXXFLAGS:=@CXXFLAGS@ -fno-exceptions -fno-rtti -DHAVE_DECL_GETOPT=0
|
||||||
|
|
||||||
include $(srcdir)/../Makefile.common
|
include $(srcdir)/../Makefile.common
|
||||||
|
|
||||||
|
|
|
@ -759,7 +759,7 @@ dump_sysinfo ()
|
||||||
time_t now;
|
time_t now;
|
||||||
char *found_cygwin_dll;
|
char *found_cygwin_dll;
|
||||||
|
|
||||||
printf ("\nCygnus Win95/NT Configuration Diagnostics\n");
|
printf ("\nCygwin Win95/NT Configuration Diagnostics\n");
|
||||||
time (&now);
|
time (&now);
|
||||||
printf ("Current System Time: %s\n", ctime (&now));
|
printf ("Current System Time: %s\n", ctime (&now));
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
/* pathconv.cc -- convert pathnames between Windows and Unix format
|
/* cygpath.cc -- convert pathnames between Windows and Unix format
|
||||||
Copyright 1998, 1999, 2000 Cygnus Solutions.
|
Copyright 1998, 1999, 2000, 2001 Red Hat, Inc.
|
||||||
Written by Ian Lance Taylor <ian@cygnus.com>.
|
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
@ -294,8 +293,8 @@ main (int argc, char **argv)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case 'v':
|
case 'v':
|
||||||
printf ("Cygwin pathconv version 1.0\n");
|
printf ("Cygwin path conversion version 1.1\n");
|
||||||
printf ("Copyright 1998,1999,2000 Cygnus Solutions\n");
|
printf ("Copyright 1998,1999,2000,2001 Red Hat, Inc.\n");
|
||||||
exit (0);
|
exit (0);
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* module_info.cc
|
/* module_info.cc
|
||||||
|
|
||||||
Copyright 1999 Cygnus Solutions.
|
Copyright 1999,2000,2001 Red Hat, Inc.
|
||||||
|
|
||||||
Written by Egor Duda <deo@logos-m.ru>
|
Written by Egor Duda <deo@logos-m.ru>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* parse_pe.cc
|
/* parse_pe.cc
|
||||||
|
|
||||||
Copyright 1999 Cygnus Solutions.
|
Copyright 1999,2000,2001 Red Hat, Inc.
|
||||||
|
|
||||||
Written by Egor Duda <deo@logos-m.ru>
|
Written by Egor Duda <deo@logos-m.ru>
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* ps.cc
|
/* ps.cc
|
||||||
|
|
||||||
Copyright 1996, 1997, 1998, 1999, 2000 Cygnus Solutions.
|
Copyright 1996, 1997, 1998, 1999, 2000, 2001 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/* umount.cc
|
/* umount.cc
|
||||||
|
|
||||||
Copyright 1996, 1998, 1999 Cygnus Solutions.
|
Copyright 1996, 1998, 1999, 2000, 2001 Red Hat, Inc.
|
||||||
|
|
||||||
This file is part of Cygwin.
|
This file is part of Cygwin.
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue