File: configure.in

package info (click to toggle)
multisync 0.82-5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 17,240 kB
  • ctags: 5,497
  • sloc: ansic: 36,431; sh: 17,141; yacc: 1,377; makefile: 858
file content (57 lines) | stat: -rw-r--r-- 1,540 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
dnl Process this file with autoconf to produce a configure script.

AC_INIT(configure.in)
AM_INIT_AUTOMAKE(opie_sync, 0.82)
AM_MAINTAINER_MODE
AM_CONFIG_HEADER(config.h)

AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC
AC_HEADER_STDC

pkg_modules="libgnomeui-2.0 gtk+-2.0 glib-2.0"
PKG_CHECK_MODULES(PACKAGE, [$pkg_modules])
AC_SUBST(PACKAGE_CFLAGS)
AC_SUBST(PACKAGE_LIBS)

dnl Add extra flags if in debug mode
AC_ARG_ENABLE(debug,
  [--enable-debug
   Enable debugging - useful only for developers and testers],
  DBG_FLAGS="yes",
  DBG_FLAGS="no",
)
AM_CONDITIONAL(OPIE_DBG_FLAGS, test "$DBG_FLAGS" = "yes")

CPPFLAGS="${GTK_CFLAGS} ${GNOME_INCLUDEDIR} ${ORBIT_CFLAGS} ${BONOBO_CFLAGS}"

dnl GETTEXT_PACKAGE=opie_sync
dnl AC_SUBST(GETTEXT_PACKAGE)
dnl AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE")

dnl Add the languages which your application supports here.
dnl ALL_LINGUAS=""
dnl AM_GLIB_GNU_GETTEXT

AC_PROG_LIBTOOL

dnl  opie_sync required libraries
AC_CHECK_LIB(curl,curl_global_init,,AC_MSG_ERROR(You must have libcurl installed.))
AC_CHECK_LIB(expat,XML_ParserCreate,,AC_MSG_ERROR(You must have libexpat installed.))
AC_CHECK_LIB(crypto,MD5_Init,,AC_MSG_ERROR(You must have OpenSSL libcrypto installed.))

dnl Info for the RPM
MULTISYNC_TOP="../.."
AC_SUBST(VERSION)
AC_SUBST(prefix)
MULTISYNC_VERSION=`grep "#define VERSION" ${MULTISYNC_TOP}/config.h | sed -e 's/#define VERSION //g' | sed -e 's/\"//g'`
AC_SUBST(MULTISYNC_VERSION)

AC_OUTPUT([
Makefile
src/Makefile
po/Makefile.in
${MULTISYNC_TOP}/specs/multisync-opie.spec
])