Browse Source

Fixing run_autotools.sh script + adding missing file

Yann Weber 7 years ago
parent
commit
c0a48562e8
3 changed files with 135 additions and 12 deletions
  1. 59
    0
      config/config.h.in
  2. 65
    0
      config/config.h.in~
  3. 11
    12
      run_autotools.sh

+ 59
- 0
config/config.h.in View File

@@ -0,0 +1,59 @@
1
+/* config/config.h.in.  Generated from configure.in by autoheader.  */
2
+
3
+/* Define to 1 if you have the `bzero' function. */
4
+#undef HAVE_BZERO
5
+
6
+/* Define to 1 if you have the <inttypes.h> header file. */
7
+#undef HAVE_INTTYPES_H
8
+
9
+/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
10
+   to 0 otherwise. */
11
+#undef HAVE_MALLOC
12
+
13
+/* Define to 1 if you have the <memory.h> header file. */
14
+#undef HAVE_MEMORY_H
15
+
16
+/* Define to 1 if you have the <stdint.h> header file. */
17
+#undef HAVE_STDINT_H
18
+
19
+/* Define to 1 if you have the <stdlib.h> header file. */
20
+#undef HAVE_STDLIB_H
21
+
22
+/* Define to 1 if you have the <strings.h> header file. */
23
+#undef HAVE_STRINGS_H
24
+
25
+/* Define to 1 if you have the <string.h> header file. */
26
+#undef HAVE_STRING_H
27
+
28
+/* Define to 1 if you have the <sys/stat.h> header file. */
29
+#undef HAVE_SYS_STAT_H
30
+
31
+/* Define to 1 if you have the <sys/types.h> header file. */
32
+#undef HAVE_SYS_TYPES_H
33
+
34
+/* Define to 1 if you have the <unistd.h> header file. */
35
+#undef HAVE_UNISTD_H
36
+
37
+/* Define to the address where bug reports for this package should be sent. */
38
+#undef PACKAGE_BUGREPORT
39
+
40
+/* Define to the full name of this package. */
41
+#undef PACKAGE_NAME
42
+
43
+/* Define to the full name and version of this package. */
44
+#undef PACKAGE_STRING
45
+
46
+/* Define to the one symbol short name of this package. */
47
+#undef PACKAGE_TARNAME
48
+
49
+/* Define to the home page for this package. */
50
+#undef PACKAGE_URL
51
+
52
+/* Define to the version of this package. */
53
+#undef PACKAGE_VERSION
54
+
55
+/* Define to 1 if you have the ANSI C header files. */
56
+#undef STDC_HEADERS
57
+
58
+/* Define to rpl_malloc if the replacement function should be used. */
59
+#undef malloc

+ 65
- 0
config/config.h.in~ View File

@@ -0,0 +1,65 @@
1
+/* config/config.h.in.  Generated from configure.in by autoheader.  */
2
+
3
+/* Define to 1 if you have the `bzero' function. */
4
+#undef HAVE_BZERO
5
+
6
+/* Define to 1 if you have the <inttypes.h> header file. */
7
+#undef HAVE_INTTYPES_H
8
+
9
+/* Define to 1 if your system has a GNU libc compatible `malloc' function, and
10
+   to 0 otherwise. */
11
+#undef HAVE_MALLOC
12
+
13
+/* Define to 1 if you have the <memory.h> header file. */
14
+#undef HAVE_MEMORY_H
15
+
16
+/* Define to 1 if you have the <stdint.h> header file. */
17
+#undef HAVE_STDINT_H
18
+
19
+/* Define to 1 if you have the <stdlib.h> header file. */
20
+#undef HAVE_STDLIB_H
21
+
22
+/* Define to 1 if you have the <strings.h> header file. */
23
+#undef HAVE_STRINGS_H
24
+
25
+/* Define to 1 if you have the <string.h> header file. */
26
+#undef HAVE_STRING_H
27
+
28
+/* Define to 1 if you have the <sys/stat.h> header file. */
29
+#undef HAVE_SYS_STAT_H
30
+
31
+/* Define to 1 if you have the <sys/types.h> header file. */
32
+#undef HAVE_SYS_TYPES_H
33
+
34
+/* Define to 1 if you have the <unistd.h> header file. */
35
+#undef HAVE_UNISTD_H
36
+
37
+/* Name of package */
38
+#undef PACKAGE
39
+
40
+/* Define to the address where bug reports for this package should be sent. */
41
+#undef PACKAGE_BUGREPORT
42
+
43
+/* Define to the full name of this package. */
44
+#undef PACKAGE_NAME
45
+
46
+/* Define to the full name and version of this package. */
47
+#undef PACKAGE_STRING
48
+
49
+/* Define to the one symbol short name of this package. */
50
+#undef PACKAGE_TARNAME
51
+
52
+/* Define to the home page for this package. */
53
+#undef PACKAGE_URL
54
+
55
+/* Define to the version of this package. */
56
+#undef PACKAGE_VERSION
57
+
58
+/* Define to 1 if you have the ANSI C header files. */
59
+#undef STDC_HEADERS
60
+
61
+/* Version number of package */
62
+#undef VERSION
63
+
64
+/* Define to rpl_malloc if the replacement function should be used. */
65
+#undef malloc

+ 11
- 12
run_autotools.sh View File

@@ -1,22 +1,21 @@
1
-#!/bin/dash
2
-echo "cleaning directory"
3
-rm depcomp install-sh missing Makefile.in aclocal.m4 configure src/Makefile.in config/config.h.in 2>/dev/null
1
+#!/bin/bash
2
+
4 3
 
5 4
 if [ $# -eq 1 ]
6 5
 then
6
+	echo "cleaning directory"
7
+	rm depcomp install-sh missing Makefile.in aclocal.m4 configure src/Makefile.in config/config.h config/stamp-h1 2>/dev/null
8
+	rm -R autom4te.cache/
9
+	rm config.status
10
+	rm config.log
11
+	rm -R src/.deps
12
+	rm Makefile
13
+	rm src/Makefile
7 14
 	exit
8 15
 fi
9 16
 
10 17
 echo "Running autotools"
11 18
 autoheader
12
-automake --foreign -a -c
13 19
 aclocal
14 20
 autoconf
15
-echo "cleaning directory"
16
-rm -R autom4te.cache/
17
-rm config.status
18
-rm config.log
19
-rm -R src/.deps
20
-rm Makefile
21
-rm src/Makefile
22
-
21
+automake --foreign -a -c

Loading…
Cancel
Save