~ubuntu-branches/ubuntu/intrepid/amsn/intrepid

« back to all changes in this revision

Viewing changes to configure.ac

  • Committer: Bazaar Package Importer
  • Author(s): Laurent Bigonville
  • Date: 2008-01-10 04:59:52 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20080110045952-qc023vcuh3t40omr
Tags: 0.97+final-0ubuntu1
* Fake sync with debian due to version issue (LP: #179008)
  - Use Tcl8.5 and antialiased text (LP: #157839)
* Modify Maintainer value to match the DebianMaintainerField
  specification.
* debian/rules: .desktop file already moved in the correct path

Show diffs side-by-side

added added

removed removed

Lines of Context:
2
2
dnl Process this file with autoconf to produce a configure script.
3
3
 
4
4
AC_INIT(amsn)
5
 
AC_CONFIG_HEADER(${srcdir}/utils/linux/capture/config.h)
 
5
AC_CONFIG_HEADER(utils/linux/capture/config.h)
6
6
 
7
7
 
8
8
APPNAME=amsn
9
 
APPVERSION=0.97RC1
 
9
APPVERSION=0.97
10
10
APPRELEASE=1
11
 
APPSTABLE=no
 
11
APPSTABLE=yes
12
12
 
13
13
AC_SUBST(APPVERSION)
14
14
AC_SUBST(APPNAME)
68
68
                TK_INC_SPEC="-I../../Frameworks/Tk.framework/Headers -DUSE_TK_STUBS"
69
69
                TK_STUB_LIB_SPEC="-L../../Frameworks/Tk.framework -ltkstub8.4\${TK_DBGX}"
70
70
                ;;
 
71
        SunOS)
 
72
                FOUND_OS=solaris
 
73
                ;;
71
74
        *)
72
75
                AC_MSG_CHECKING(if amsn will build on `uname -s`)
73
76
                AC_MSG_RESULT(maybe)
409
412
   AC_MSG_RESULT("Could not find X11 devel package, traydock will not be compiled")
410
413
fi
411
414
 
 
415
if test "$FOUND_OS" == "solaris"; then
 
416
        # If possible, build webcam support.  Otherwise, default to
 
417
        # Linux for other goodies.
 
418
        AC_CHECK_HEADERS(sys/videodev2.h,FOUND_OS=solaris,FOUND_OS=linux)
 
419
fi
 
420
 
412
421
#---------------------------------------------------------------------------------------------
413
422
 
414
423
dnl ---------------------------------------------------------------------