buildsys  Check-in [3a8b331cff]

Overview
Comment:Fix installing using build-aux/install-sh
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 3a8b331cffbb7ec79c016e46b9e45f65bc6c52bdff2c345c7f29ebf3685b11e3
User & Date: js on 2021-01-16 16:10:37
Other Links: manifest | tags
Context
2021-05-01
03:26
Create potential include subdirectories check-in: 00d6e0e99a user: js tags: trunk
2021-01-16
16:10
Fix installing using build-aux/install-sh check-in: 3a8b331cff user: js tags: trunk
2021-01-13
17:31
Add support for HP-UX (Itanium) check-in: 867bf6b44c user: js tags: trunk
Changes

Modified build-aux/m4/buildsys.m4 from [48cec72385] to [8a8480cbc5].

31
32
33
34
35
36
37







38
39
40
41
42
43
44
		case "$host_os" in
		darwin*)
			AC_SUBST(BUILD_AND_HOST_ARE_DARWIN, yes)
			;;
		esac
		;;
	esac








	AC_CONFIG_COMMANDS_PRE([
		AS_IF([test x"$GCC" = x"yes"],
			[AC_SUBST(DEP_CFLAGS, '-MD -MF $${out%.o}.dep')])
		AS_IF([test x"$GXX" = x"yes"],
			[AC_SUBST(DEP_CXXFLAGS, '-MD -MF $${out%.o}.dep')])
		AS_IF([test x"$GOBJC" = x"yes"],







>
>
>
>
>
>
>







31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
		case "$host_os" in
		darwin*)
			AC_SUBST(BUILD_AND_HOST_ARE_DARWIN, yes)
			;;
		esac
		;;
	esac

	AC_PROG_INSTALL
	case "$INSTALL" in
	./build-aux/install-sh*)
		INSTALL="$PWD/$INSTALL"
		;;
	esac

	AC_CONFIG_COMMANDS_PRE([
		AS_IF([test x"$GCC" = x"yes"],
			[AC_SUBST(DEP_CFLAGS, '-MD -MF $${out%.o}.dep')])
		AS_IF([test x"$GXX" = x"yes"],
			[AC_SUBST(DEP_CXXFLAGS, '-MD -MF $${out%.o}.dep')])
		AS_IF([test x"$GOBJC" = x"yes"],

Modified configure.ac from [d0014a6b30] to [3bb5764707].

21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
done

BUILDSYS_INIT

dnl If your package uses C, you want a C compiler and a C preprocessor
AC_PROG_CC
AC_PROG_CPP
AC_PROG_INSTALL

dnl The buildsys might require ln -s to install libraries.
dnl Uncomment if you are compiling a library.
dnl AC_PROG_LN_S

dnl If you want to build static libraries (for example build part of your
dnl project as a static library and link it to the final program later so you







<







21
22
23
24
25
26
27

28
29
30
31
32
33
34
done

BUILDSYS_INIT

dnl If your package uses C, you want a C compiler and a C preprocessor
AC_PROG_CC
AC_PROG_CPP


dnl The buildsys might require ln -s to install libraries.
dnl Uncomment if you are compiling a library.
dnl AC_PROG_LN_S

dnl If you want to build static libraries (for example build part of your
dnl project as a static library and link it to the final program later so you