Skip to content

Commit d4eb2a3

Browse files
committed
Disable unused configure tests
1 parent d9b8c37 commit d4eb2a3

File tree

4 files changed

+28
-28
lines changed

4 files changed

+28
-28
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ endif()
1818

1919
set(CMAKE_BUILD_TYPE Debug)
2020

21-
set(VERSION 1.0.1)
21+
set(VERSION 1.0.2~GIT)
2222

2323
add_definitions(-DPACKAGE_VERSION=\\"${VERSION}\\" -D_XOPEN_SOURCE=600)
2424
#add_definitions(-Wc++-compat -Wall -Wextra -Wconversion -Wpointer-arith -Wfloat-equal -Wshadow -Wwrite-strings -I.)

achlog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ def main():
105105
(options, args) = parse()
106106

107107
if options.version :
108-
print ("achlog 1.0.1\n"
108+
print ("achlog 1.0.2~GIT\n"
109109
"\n"
110110
"Copyright (c) 2008-2012, Georgia Tech Research Corporation\n"
111111
"This is free software; see the source for copying conditions. There is NO\n"

achpipe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ def main():
220220
options = parse()
221221

222222
if options.version :
223-
print ("achpipe 1.0.1\n"
223+
print ("achpipe 1.0.2~GIT\n"
224224
"\n"
225225
"Copyright (c) 2008-2012, Georgia Tech Research Corporation\n"
226226
"This is free software; see the source for copying conditions. There is NO\n"

configure.ac

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.65])
5-
AC_INIT([ach], [1.0.1], [[email protected]])
5+
AC_INIT([ach], [1.0.2~GIT], [[email protected]])
66
AM_INIT_AUTOMAKE([-Wall])
77
AC_CONFIG_SRCDIR([src/ach.c])
88
AC_CONFIG_HEADERS([config.h])
@@ -19,27 +19,27 @@ AC_C_INLINE
1919
AC_C_CONST
2020

2121
# Checks for header files.
22-
AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h stdint.h stdlib.h string.h sys/socket.h syslog.h unistd.h time.h])
22+
dnl AC_CHECK_HEADERS([arpa/inet.h fcntl.h inttypes.h stdint.h stdlib.h string.h sys/socket.h syslog.h unistd.h time.h])
2323

2424
# Checks for typedefs, structures, and compiler characteristics.
25-
AC_HEADER_STDBOOL
26-
AC_TYPE_INT32_T
27-
AC_TYPE_MODE_T
28-
AC_TYPE_OFF_T
29-
AC_TYPE_PID_T
30-
AC_TYPE_SIZE_T
31-
AC_TYPE_SSIZE_T
32-
AC_TYPE_UINT32_T
33-
AC_TYPE_UINT64_T
34-
AC_TYPE_UINT8_T
35-
36-
AC_CHECK_SIZEOF(void *)
37-
AC_CHECK_SIZEOF(uint64_t)
38-
AC_CHECK_SIZEOF(unsigned long)
39-
AC_CHECK_SIZEOF(unsigned long long)
25+
dnl AC_HEADER_STDBOOL
26+
dnl AC_TYPE_INT32_T
27+
dnl AC_TYPE_MODE_T
28+
dnl AC_TYPE_OFF_T
29+
dnl AC_TYPE_PID_T
30+
dnl AC_TYPE_SIZE_T
31+
dnl AC_TYPE_SSIZE_T
32+
dnl AC_TYPE_UINT32_T
33+
dnl AC_TYPE_UINT64_T
34+
dnl AC_TYPE_UINT8_T
35+
36+
dnl AC_CHECK_SIZEOF(void *)
37+
dnl AC_CHECK_SIZEOF(uint64_t)
38+
dnl AC_CHECK_SIZEOF(unsigned long)
39+
dnl AC_CHECK_SIZEOF(unsigned long long)
4040

4141
# Check 32/64 safe format specifiers
42-
AC_CHECK_DECLS([PRIuPTR,PRIu64,PRIx64])
42+
dnl AC_CHECK_DECLS([PRIuPTR,PRIu64,PRIx64])
4343
AC_CHECK_DECL([PRIuPTR],
4444
[],
4545
[AC_DEFINE([PRIuPTR], ["ul"], [Assume this is unsigned long])])
@@ -51,14 +51,14 @@ AC_CHECK_DECL([CLOCK_REALTIME],
5151
[[#include <time.h>]])
5252

5353
# check pthread decls
54-
AC_CHECK_DECL([PTHREAD_MUTEX_ERRORCHECK_NP],
55-
[], [],
56-
[#include<pthread.h>])
54+
dnl AC_CHECK_DECL([PTHREAD_MUTEX_ERRORCHECK_NP],
55+
dnl [], [],
56+
dnl [#include<pthread.h>])
5757

58-
AC_CHECK_DECL( [PTHREAD_PRIO_INHERIT],
59-
[], [], [#include<pthread.h>])
58+
dnl AC_CHECK_DECL( [PTHREAD_PRIO_INHERIT],
59+
dnl [], [], [#include<pthread.h>])
6060

61-
AC_CHECK_DECL([_POSIX_THREAD_PROCESS_SHARED])
61+
dnl AC_CHECK_DECL([_POSIX_THREAD_PROCESS_SHARED])
6262

6363
## Checks for library functions.
6464

@@ -70,7 +70,7 @@ AC_CHECK_DECL([_POSIX_THREAD_PROCESS_SHARED])
7070
# AC_FUNC_REALLOC
7171
# AC_FUNC_STRTOD
7272

73-
AC_CHECK_FUNCS([ftruncate isascii memmove memset munmap socket strcasecmp strchr strdup strerror strtol])
73+
dnl AC_CHECK_FUNCS([ftruncate isascii memmove memset munmap socket strcasecmp strchr strdup strerror strtol])
7474
AC_SEARCH_LIBS([pthread_create],[pthread])
7575
AC_SEARCH_LIBS([clock_gettime],[rt])
7676

0 commit comments

Comments
 (0)