You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
369 B
Plaintext
12 lines
369 B
Plaintext
#MIN_CONFIG(3.0.0)
|
|
|
|
AM_INIT_AUTOMAKE(kalternatives, 0.10)
|
|
AC_C_BIGENDIAN
|
|
AC_CHECK_KDEMAXPATHLEN
|
|
|
|
AC_CHECK_FILE(/etc/debian_version, [AC_DEFINE([DEBIAN], [], [debian]) AC_MSG_NOTICE(it is a debian)],
|
|
[AC_CHECK_FILE(/etc/mandrakelinux-release,
|
|
[AC_DEFINE([MANDRAKE], [], [mandrake]) AC_MSG_NOTICE(it is a mandrake)],
|
|
[AC_MSG_NOTICE(it is an other distribution)])])
|
|
|