aboutsummaryrefslogtreecommitdiff
path: root/gprof
diff options
context:
space:
mode:
authorStan Cox <scox@redhat.com>1998-07-16 18:05:22 +0000
committerStan Cox <scox@redhat.com>1998-07-16 18:05:22 +0000
commit47f7fb8bb793549c197e8000e6797cc869fe7de1 (patch)
tree0db1a1e3bec470ddb682a8ae9580bef5d25c5cbf /gprof
parent5b0b3ba6f5006be68305c65fef97b9a18f3af136 (diff)
downloadgdb-47f7fb8bb793549c197e8000e6797cc869fe7de1.zip
gdb-47f7fb8bb793549c197e8000e6797cc869fe7de1.tar.gz
gdb-47f7fb8bb793549c197e8000e6797cc869fe7de1.tar.bz2
(BSD44_FORMAT): Define for cygwin32, win32, mingw32
Diffstat (limited to 'gprof')
-rw-r--r--gprof/ChangeLog5
-rwxr-xr-xgprof/configure3
-rw-r--r--gprof/configure.in3
3 files changed, 9 insertions, 2 deletions
diff --git a/gprof/ChangeLog b/gprof/ChangeLog
index 3961a80..dc8f3e9 100644
--- a/gprof/ChangeLog
+++ b/gprof/ChangeLog
@@ -1,3 +1,8 @@
+Fri Jul 10 17:29:49 1998 Stan Cox <scox@equinox.cygnus.com>
+
+ * configure.in (BSD44_FORMAT): Define for cygwin32, win32, mingw32
+ * configure: Rebuild.
+
Fri Jun 12 13:40:05 1998 Tom Tromey <tromey@cygnus.com>
* po/Make-in (all-yes): If maintainer mode, depend on .pot file.
diff --git a/gprof/configure b/gprof/configure
index 507771c..3ba8ba4 100755
--- a/gprof/configure
+++ b/gprof/configure
@@ -3320,7 +3320,8 @@ fi
case "${target}" in
-*-*-bsd4.4* | *-*-netbsd* | *-*-freebsd* | *-*-openbsd*)
+*-*-bsd4.4* | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* \
+| *-*-cygwin32 | *-*-mingw32 | *-*-win32 )
cat >> confdefs.h <<\EOF
#define BSD44_FORMAT 1
EOF
diff --git a/gprof/configure.in b/gprof/configure.in
index 979fdbc..de8c134 100644
--- a/gprof/configure.in
+++ b/gprof/configure.in
@@ -26,7 +26,8 @@ dnl We need to set BSD44_FORMAT on a host which uses the additional
dnl header fields. This is an attempt to do that. I can't think of a
dnl good feature test for this.
case "${target}" in
-*-*-bsd4.4* | *-*-netbsd* | *-*-freebsd* | *-*-openbsd*)
+*-*-bsd4.4* | *-*-netbsd* | *-*-freebsd* | *-*-openbsd* \
+| *-*-cygwin32 | *-*-mingw32 | *-*-win32 )
AC_DEFINE(BSD44_FORMAT)
;;
esac