Skip to content

Commit

Permalink
Merge pull request #3 from jbrandeb/for-upstream
Browse files Browse the repository at this point in the history
For upstream
  • Loading branch information
jbrandeb authored Jul 20, 2021
2 parents a0f7fe7 + 9ee181f commit 60c2178
Show file tree
Hide file tree
Showing 17 changed files with 267 additions and 16,257 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ Makefile
/stamp-h1
/src/netperf
/src/netserver
*~
.*.swp
netperf-*.tar*
32 changes: 32 additions & 0 deletions config.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,28 @@
/* Use MumbleBSD's sysctl interface to measure CPU util. */
#undef USE_SYSCTL

/* Enable extensions on AIX 3, Interix. */
#ifndef _ALL_SOURCE
# undef _ALL_SOURCE
#endif
/* Enable GNU extensions on systems that have them. */
#ifndef _GNU_SOURCE
# undef _GNU_SOURCE
#endif
/* Enable threading extensions on Solaris. */
#ifndef _POSIX_PTHREAD_SEMANTICS
# undef _POSIX_PTHREAD_SEMANTICS
#endif
/* Enable extensions on HP NonStop. */
#ifndef _TANDEM_SOURCE
# undef _TANDEM_SOURCE
#endif
/* Enable general extensions on Solaris. */
#ifndef __EXTENSIONS__
# undef __EXTENSIONS__
#endif


/* Version number of package */
#undef VERSION

Expand Down Expand Up @@ -397,6 +419,16 @@
/* Define for large files, on AIX-style hosts. */
#undef _LARGE_FILES

/* Define to 1 if on MINIX. */
#undef _MINIX

/* Define to 2 if the system does not provide POSIX.1 features except with
this defined. */
#undef _POSIX_1_SOURCE

/* Define to 1 if you need to in order for `stat' and other things to work. */
#undef _POSIX_SOURCE

/* Define to empty if `const' does not conform to ANSI C. */
#undef const

Expand Down
1 change: 1 addition & 0 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ AC_CONFIG_SRCDIR([src/hist.h])
AM_INIT_AUTOMAKE([dist-zip])
AM_CONFIG_HEADER(config.h)
# AC_CONFIG_HEADER(config.h)
AC_USE_SYSTEM_EXTENSIONS

AC_CONFIG_LIBOBJ_DIR(src/missing)

Expand Down
7 changes: 7 additions & 0 deletions doc/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# these files are all generated
netperf.html
netperf.info
netperf.pdf
netperf.ps
netperf.txt
netperf.xml
Loading

0 comments on commit 60c2178

Please sign in to comment.