]> git.pld-linux.org Git - projects/rc-scripts.git/blob - configure.ac
- Version: 0.4.3.0
[projects/rc-scripts.git] / configure.ac
1 dnl $Id$
2
3 AC_INIT(["rc-scripts"], [0.4.3.0], [pld-rc-scripts@lists.pld-linux.org], [rc-scripts])
4 AM_INIT_AUTOMAKE
5
6 ALL_LINGUAS="pl de"
7
8 echo -n "Finding shell scripts"
9 SHSCRIPTS=""
10 for shfile in $(find ${srcdir}/rc.d ${srcdir}/sysconfig ! -path "*/\.*/*" ! -name "*~" -type f); do
11     echo -n "."
12     if (LC_ALL=C file ${shfile} | grep -q 'shell script'); then
13         SHSCRIPTS="${SHSCRIPTS} ${shfile}"
14     fi
15 done
16 echo "done"
17
18 dnl Checks for programs.
19 AC_PROG_CC
20 AC_ISC_POSIX
21 AC_PROG_INSTALL
22 AC_PROG_LN_S
23 AC_PROG_MAKE_SET
24
25 pppdir='${sysconfdir}/ppp'
26 sysconfigdir='${sysconfdir}/sysconfig'
27 updir='${sysconfigdir}/interfaces/up.d'
28 downdir='${sysconfigdir}/interfaces/down.d'
29 networkscriptsdir='${sysconfigdir}/network-scripts'
30 rcdir='${sysconfdir}/rc.d'
31 initdir='${sysconfdir}/init'
32 docdir="${prefix}/doc/$PACKAGE-$VERSION"
33
34 dnl i18n support
35 AC_PATH_PROGS(MSGMERGE, msgmerge)
36 AC_PATH_PROGS(GMSGFMT, gmsgfmt msgfmt)
37
38 CATALOGS=
39 POTFILES=
40 for lang in $ALL_LINGUAS; do
41         CATALOGS="$CATALOGS $lang.gmo"
42         POTFILES="$POTFILES $lang.po"
43 done
44
45 POTSRC=
46 for src in $SHSCRIPTS; do
47         POTSRC="$POTSRC \$(top_srcdir)/$src"
48 done
49 AC_ARG_WITH(localedir,
50         [  --with-localedir=PATH      specify where the locale stuff should go ])
51
52 if test "x$LOCALEDIR" = "x"; then
53         if test "x$with_localedir" != "x"; then
54                 LOCALEDIR=$with_localedir
55         else
56                 LOCALEDIR='$(prefix)/share/locale'
57         fi
58 fi
59
60 localedir=$LOCALEDIR
61 gnulocaledir=$LOCALEDIR
62
63 if test "`eval echo $sysconfdir`" = "NONE/etc"; then
64         defaultdir="/usr/local/etc"
65 else
66         defaultdir="`eval echo $sysconfdir`"
67 fi
68
69 AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
70 GLIBDIR=none
71 AC_MSG_CHECKING([glib2 dir])
72 GLIBDIR="`$PKG_CONFIG --variable=libdir glib-2.0`"
73 GLIBNAME="libglib-2.0.a"
74 GCFLAGS="`$PKG_CONFIG --cflags-only-I glib-2.0`"
75 if test "x$GLIBDIR" = "x"; then
76     AC_MSG_RESULT([none])
77     AC_MSG_CHECKING([glib dir])
78     GLIBDIR="`$PKG_CONFIG --variable=libdir glib`"
79     GLIBNAME="libglib.a"
80     GCFLAGS="`$PKG_CONFIG --cflags-only-I glib`"
81 fi
82 if test "x$GLIBDIR" = "x"; then
83     GLIBDIR=/usr/lib
84 fi
85 AC_MSG_RESULT([$GLIBDIR])
86
87 DPKG_C_GCC_ATTRIBUTE([,,],supported,[int x],[,,],ATTRIB,[Define if function attributes a la GCC 2.5 and higher are available.],
88   DPKG_C_GCC_ATTRIBUTE(noreturn,noreturn,[int x],noreturn,NORETURN,[Define if nonreturning functions a la GCC 2.5 and higher are available.])
89   DPKG_C_GCC_ATTRIBUTE(const,const,[int x],const,CONST,[Define if constant functions a la GCC 2.5 and higher are available.])
90   DPKG_C_GCC_ATTRIBUTE(unused,unused,[int x],unused,UNUSED,[Define if unused variables la GCC 2.5 and higher are available.])
91   DPKG_C_GCC_ATTRIBUTE(format...,format,[char *y, ...],[format(printf,1,2)],PRINTFFORMAT,[Define if printf-format argument lists a la GCC are available.]))
92
93 AC_CHECK_TYPE(ptrdiff_t,int)
94 AC_CHECK_HEADERS([stddef.h])
95
96 dnl Output
97 AC_SUBST(BASHSCRIPTS)
98 AC_SUBST(CATALOGS)
99 AC_SUBST(POTFILES)
100 AC_SUBST(POTSRC)
101 AC_SUBST(localedir)
102 AC_SUBST(gnulocaledir)
103                         
104 AC_SUBST(pppdir)
105 AC_SUBST(networkscriptsdir)
106 AC_SUBST(sysconfigdir)
107 AC_SUBST(updir)
108 AC_SUBST(downdir)
109 AC_SUBST(rcdir)
110 AC_SUBST(initdir)
111 AC_SUBST(docdir)
112 AC_SUBST(GLIBDIR)
113 AC_SUBST(GLIBNAME)
114 AC_SUBST(GCFLAGS)
115
116 AH_BOTTOM([
117 #ifdef HAVE_STDDEF_H
118 #include <stddef.h>
119 #endif
120
121 /* Use the definitions: */
122
123 /* The maximum length of a #! interpreter displayed by dpkg-deb. */
124 #ifdef PATH_MAX
125 #define INTERPRETER_MAX PATH_MAX
126 #else
127 #define INTERPRETER_MAX 1024
128 #endif
129
130 /* GNU C attributes. */
131 #ifndef FUNCATTR
132 #ifdef HAVE_GNUC25_ATTRIB
133 #define FUNCATTR(x) __attribute__(x)
134 #else
135 #define FUNCATTR(x)
136 #endif
137 #endif
138
139 /* GNU C printf formats, or null. */
140 #ifndef ATTRPRINTF
141 #ifdef HAVE_GNUC25_PRINTFFORMAT
142 #define ATTRPRINTF(si,tc) format(printf,si,tc)
143 #else
144 #define ATTRPRINTF(si,tc)
145 #endif
146 #endif
147 #ifndef PRINTFFORMAT
148 #define PRINTFFORMAT(si,tc) FUNCATTR((ATTRPRINTF(si,tc)))
149 #endif
150
151 /* GNU C nonreturning functions, or null. */
152 #ifndef ATTRNORETURN
153 #ifdef HAVE_GNUC25_NORETURN
154 #define ATTRNORETURN noreturn
155 #else /* ! HAVE_GNUC25_NORETURN */
156 #define ATTRNORETURN
157 #endif /* HAVE_GNUC25_NORETURN */
158 #endif /* ATTRNORETURN */
159
160 #ifndef NONRETURNING
161 #define NONRETURNING FUNCATTR((ATTRNORETURN))
162 #endif /* NONRETURNING */
163
164 /* Combination of both the above. */
165 #ifndef NONRETURNPRINTFFORMAT
166 #define NONRETURNPRINTFFORMAT(si,tc) FUNCATTR((ATTRPRINTF(si,tc),ATTRNORETURN))
167 #endif
168
169 /* GNU C constant functions, or null. */
170 #ifndef ATTRCONST
171 #ifdef HAVE_GNUC25_CONST
172 #define ATTRCONST const
173 #else
174 #define ATTRCONST
175 #endif
176 #endif
177 #ifndef CONSTANT
178 #define CONSTANT FUNCATTR((ATTRCONST))
179 #endif
180
181 /* GNU C unused functions, or null. */
182 #ifndef ATTRUNUSED
183 #ifdef HAVE_GNUC25_UNUSED
184 #define ATTRUNUSED
185 #else
186 #define ATTRUNUSED
187 #endif
188 #endif
189 #ifndef UNUSED
190 #define UNUSED FUNCATTR((ATTRUNUSED))
191 #endif
192 ])
193
194 AM_CONFIG_HEADER(src/config.h)
195 AC_CONFIG_FILES([Makefile \
196         src/Makefile \
197         doc/Makefile \
198         man/Makefile \
199         man/de/Makefile \
200         man/es/Makefile \
201         man/fr/Makefile \
202         man/ja/Makefile \
203         man/ru/Makefile \
204         man/sv/Makefile \
205         ppp/Makefile \
206         isapnp/Makefile \
207         sysconfig/Makefile \
208         sysconfig/cpusets/Makefile \
209         sysconfig/hwprofiles/Makefile \
210         sysconfig/network-scripts/Makefile \
211         sysconfig/interfaces/Makefile \
212         sysconfig/interfaces/data/Makefile \
213         sysconfig/interfaces/up.d/Makefile \
214         sysconfig/interfaces/up.d/all/Makefile \
215         sysconfig/interfaces/up.d/ip/Makefile \
216         sysconfig/interfaces/up.d/ipx/Makefile \
217         sysconfig/interfaces/up.d/ppp/Makefile \
218         sysconfig/interfaces/up.d/tnl/Makefile \
219         sysconfig/interfaces/down.d/Makefile \
220         sysconfig/interfaces/down.d/all/Makefile \
221         sysconfig/interfaces/down.d/ip/Makefile \
222         sysconfig/interfaces/down.d/ipx/Makefile \
223         sysconfig/interfaces/down.d/ppp/Makefile \
224         sysconfig/interfaces/down.d/tnl/Makefile \
225         rc.d/Makefile rc.d/init.d/Makefile \
226         po/Makefile \
227         init/Makefile \
228         ])
229 AC_OUTPUT
This page took 0.068048 seconds and 4 git commands to generate.