Browse code

version 1.17.2

Remove unused files.

Ge Tan authored on 31/05/2018 12:47:49
Showing 1 changed files
1 1
deleted file mode 100644
... ...
@@ -1,35 +0,0 @@
1
-AC_PREREQ([2.65])
2
-
3
-AC_INIT("CNEr")
4
-
5
-## Checks for libraries
6
-
7
-
8
-## Checks for headers
9
-AC_CHECK_HEADERS([arpa/inet.h netinet/in.h signal.h stdio.h stdlib.h 
10
-                  stdarg.h string.h ctype.h sys/types.h sys/stat.h 
11
-                  strings.h fcntl.h assert.h setjmp.h sys/time.h math.h 
12
-                  errno.h unistd.h libgen.h pthread.h sys/socket.h 
13
-                  netdb.h utime.h limits.h pwd.h termios.h 
14
-                  sys/wait.h regex.h dirent.h sys/file.h])
15
-
16
-## Checks for typedefs, structures, and compiler characteristics.
17
-AC_HEADER_STDBOOL
18
-AC_C_INLINE
19
-AC_TYPE_OFF_T
20
-AC_TYPE_PID_T
21
-AC_TYPE_SIZE_T
22
-AC_TYPE_SSIZE_T
23
-AC_TYPE_UID_T
24
-
25
-## Checks for library functions.
26
-AC_FUNC_FORK
27
-AC_FUNC_MALLOC
28
-AC_FUNC_MKTIME
29
-AC_FUNC_REALLOC
30
-AC_FUNC_STRTOD
31
-AC_CHECK_FUNCS([bzero dup2 getcwd gethostbyname gettimeofday memmove 
32
-                memset mkdir regcomp select socket sqrt strcasecmp strchr 
33
-                strcspn strdup strerror strrchr strspn strstr uname])
34
-
35
-AC_OUTPUT(src/Makevars)
Browse code

try to fix the compilation error on windows

Ge Tan authored on 11/03/2014 16:34:55
Showing 1 changed files
... ...
@@ -10,7 +10,7 @@ AC_CHECK_HEADERS([arpa/inet.h netinet/in.h signal.h stdio.h stdlib.h
10 10
                   stdarg.h string.h ctype.h sys/types.h sys/stat.h 
11 11
                   strings.h fcntl.h assert.h setjmp.h sys/time.h math.h 
12 12
                   errno.h unistd.h libgen.h pthread.h sys/socket.h 
13
-                  netdb.h utime.h limits.h sys/utsname.h pwd.h termios.h 
13
+                  netdb.h utime.h limits.h pwd.h termios.h 
14 14
                   sys/wait.h regex.h dirent.h sys/file.h])
15 15
 
16 16
 ## Checks for typedefs, structures, and compiler characteristics.
Browse code

initial version from github

Ge Tan authored on 25/02/2014 21:11:54
Showing 1 changed files
1 1
new file mode 100644
... ...
@@ -0,0 +1,35 @@
1
+AC_PREREQ([2.65])
2
+
3
+AC_INIT("CNEr")
4
+
5
+## Checks for libraries
6
+
7
+
8
+## Checks for headers
9
+AC_CHECK_HEADERS([arpa/inet.h netinet/in.h signal.h stdio.h stdlib.h 
10
+                  stdarg.h string.h ctype.h sys/types.h sys/stat.h 
11
+                  strings.h fcntl.h assert.h setjmp.h sys/time.h math.h 
12
+                  errno.h unistd.h libgen.h pthread.h sys/socket.h 
13
+                  netdb.h utime.h limits.h sys/utsname.h pwd.h termios.h 
14
+                  sys/wait.h regex.h dirent.h sys/file.h])
15
+
16
+## Checks for typedefs, structures, and compiler characteristics.
17
+AC_HEADER_STDBOOL
18
+AC_C_INLINE
19
+AC_TYPE_OFF_T
20
+AC_TYPE_PID_T
21
+AC_TYPE_SIZE_T
22
+AC_TYPE_SSIZE_T
23
+AC_TYPE_UID_T
24
+
25
+## Checks for library functions.
26
+AC_FUNC_FORK
27
+AC_FUNC_MALLOC
28
+AC_FUNC_MKTIME
29
+AC_FUNC_REALLOC
30
+AC_FUNC_STRTOD
31
+AC_CHECK_FUNCS([bzero dup2 getcwd gethostbyname gettimeofday memmove 
32
+                memset mkdir regcomp select socket sqrt strcasecmp strchr 
33
+                strcspn strdup strerror strrchr strspn strstr uname])
34
+
35
+AC_OUTPUT(src/Makevars)