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
|